File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -159,7 +159,8 @@ PYTHON= python$(EXE)
159159MODULE_OBJS= \
160160 Modules/config.o \
161161 Modules/getpath.o \
162- Modules/main.o
162+ Modules/main.o \
163+ Modules/gcmodule.o
163164
164165# Used of signalmodule.o is not available
165166SIGNAL_OBJS= @SIGNAL_OBJS@
Original file line number Diff line number Diff line change @@ -1121,19 +1121,15 @@ if test "$ipv6" = "yes" -a "$ipv6lib" != "none"; then
11211121fi
11221122
11231123# Check for GC support
1124- AC_SUBST(USE_GC_MODULE)
1125- USE_GC_MODULE=""
11261124AC_MSG_CHECKING(for --with-cycle-gc)
11271125AC_ARG_WITH(cycle-gc,
11281126[ --with(out)-cycle-gc disable/enable garbage collection])
11291127
11301128if test -z "$with_cycle_gc"
11311129then with_cycle_gc="yes"
11321130fi
1133- if test "$with_cycle_gc" = "no"
1131+ if test "$with_cycle_gc" ! = "no"
11341132then
1135- USE_GC_MODULE="#"
1136- else
11371133 AC_DEFINE(WITH_CYCLE_GC)
11381134fi
11391135AC_MSG_RESULT($with_cycle_gc)
You can’t perform that action at this time.
0 commit comments