comparison configure @ 108176:e6f59a2ba110

Hopefully fix bug#6065. * configure.in (OTHER_OBJ): Always include vm-limit.o on Cygwin. Elsewhere, maybe include it. * src/Makefile.in (vmlimitobj) [!SYSTEM_MALLOC]: New variable. (OTHER_OBJ): Define as a separate variable, for clarity. * configure: Regenerate.
author Glenn Morris <rgm@gnu.org>
date Fri, 30 Apr 2010 09:37:01 -0700
parents d85e87455963
children 804e9ced8374
comparison
equal deleted inserted replaced
108175:c9cc3dd13301 108176:e6f59a2ba110
26168 26168
26169 OTHER_OBJ="\$(gmallocobj) \$(rallocobj)" 26169 OTHER_OBJ="\$(gmallocobj) \$(rallocobj)"
26170 if test "$opsys" = "cygwin"; then 26170 if test "$opsys" = "cygwin"; then
26171 CYGWIN_OBJ="sheap.o" 26171 CYGWIN_OBJ="sheap.o"
26172 ## Cygwin differs because of its unexec(). 26172 ## Cygwin differs because of its unexec().
26173 OTHER_OBJ="$OTHER_OBJ lastfile.o" 26173 OTHER_OBJ="$OTHER_OBJ lastfile.o vm-limit.o"
26174 else 26174 else
26175 CYGWIN_OBJ= 26175 CYGWIN_OBJ=
26176 OTHER_OBJ="lastfile.o $OTHER_OBJ" 26176 OTHER_OBJ="lastfile.o $OTHER_OBJ \$(vmlimitobj)"
26177 fi 26177 fi
26178 26178
26179 26179
26180 26180
26181 26181