Commit 4fdf420e authored by Neil Schemenauer's avatar Neil Schemenauer

Always compile gcmodule.

parent 99f3c5a5
...@@ -159,7 +159,8 @@ PYTHON= python$(EXE) ...@@ -159,7 +159,8 @@ PYTHON= python$(EXE)
MODULE_OBJS= \ MODULE_OBJS= \
Modules/config.o \ Modules/config.o \
Modules/getpath.o \ Modules/getpath.o \
Modules/main.o Modules/main.o \
Modules/gcmodule.o
# Used of signalmodule.o is not available # Used of signalmodule.o is not available
SIGNAL_OBJS= @SIGNAL_OBJS@ SIGNAL_OBJS= @SIGNAL_OBJS@
......
...@@ -1121,8 +1121,6 @@ if test "$ipv6" = "yes" -a "$ipv6lib" != "none"; then ...@@ -1121,8 +1121,6 @@ if test "$ipv6" = "yes" -a "$ipv6lib" != "none"; then
fi fi
# Check for GC support # Check for GC support
AC_SUBST(USE_GC_MODULE)
USE_GC_MODULE=""
AC_MSG_CHECKING(for --with-cycle-gc) AC_MSG_CHECKING(for --with-cycle-gc)
AC_ARG_WITH(cycle-gc, AC_ARG_WITH(cycle-gc,
[ --with(out)-cycle-gc disable/enable garbage collection]) [ --with(out)-cycle-gc disable/enable garbage collection])
...@@ -1130,10 +1128,8 @@ AC_ARG_WITH(cycle-gc, ...@@ -1130,10 +1128,8 @@ AC_ARG_WITH(cycle-gc,
if test -z "$with_cycle_gc" if test -z "$with_cycle_gc"
then with_cycle_gc="yes" then with_cycle_gc="yes"
fi fi
if test "$with_cycle_gc" = "no" if test "$with_cycle_gc" != "no"
then then
USE_GC_MODULE="#"
else
AC_DEFINE(WITH_CYCLE_GC) AC_DEFINE(WITH_CYCLE_GC)
fi fi
AC_MSG_RESULT($with_cycle_gc) AC_MSG_RESULT($with_cycle_gc)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment