Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit cccd1e7

Browse files
committed
Remove the configure option for disabling the reference cycle GC.
1 parent c6a525e commit cccd1e7

2 files changed

Lines changed: 1 addition & 42 deletions

File tree

configure

Lines changed: 1 addition & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#! /bin/sh
2-
# From configure.in Revision: 1.325 .
2+
# From configure.in Revision: 1.327 .
33
# Guess values for system-dependent variables and create Makefiles.
44
# Generated by GNU Autoconf 2.53.
55
#
@@ -843,7 +843,6 @@ Optional Packages:
843843
--with(out)-threads=DIRECTORY disable/enable thread support
844844
--with(out)-thread=DIRECTORY deprecated; use --with(out)-threads
845845
--with-pth use GNU pth threading libraries
846-
--with(out)-cycle-gc disable/enable garbage collection
847846
--with(out)-universal-newlines disable/enable foreign newlines
848847
--with(out)-doc-strings disable/enable documentation strings
849848
--with(out)-pymalloc disable/enable specialized mallocs
@@ -11055,30 +11054,6 @@ if test "$ipv6" = "yes" -a "$ipv6lib" != "none"; then
1105511054
fi
1105611055
fi
1105711056
11058-
# Check for GC support
11059-
echo "$as_me:$LINENO: checking for --with-cycle-gc" >&5
11060-
echo $ECHO_N "checking for --with-cycle-gc... $ECHO_C" >&6
11061-
11062-
# Check whether --with-cycle-gc or --without-cycle-gc was given.
11063-
if test "${with_cycle_gc+set}" = set; then
11064-
withval="$with_cycle_gc"
11065-
11066-
fi;
11067-
11068-
if test -z "$with_cycle_gc"
11069-
then with_cycle_gc="yes"
11070-
fi
11071-
if test "$with_cycle_gc" != "no"
11072-
then
11073-
11074-
cat >>confdefs.h <<\_ACEOF
11075-
#define WITH_CYCLE_GC 1
11076-
_ACEOF
11077-
11078-
fi
11079-
echo "$as_me:$LINENO: result: $with_cycle_gc" >&5
11080-
echo "${ECHO_T}$with_cycle_gc" >&6
11081-
1108211057
# Check for universal newline support
1108311058
echo "$as_me:$LINENO: checking for --with-universal-newline" >&5
1108411059
echo $ECHO_N "checking for --with-universal-newline... $ECHO_C" >&6
@@ -11441,7 +11416,6 @@ echo "${ECHO_T}MACHDEP_OBJS" >&6
1144111416
1144211417
1144311418
11444-
1144511419
1144611420
1144711421
for ac_func in alarm chown chroot clock confstr ctermid ctermid_r execv \

configure.in

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1453,21 +1453,6 @@ if test "$ipv6" = "yes" -a "$ipv6lib" != "none"; then
14531453
fi
14541454
fi
14551455

1456-
# Check for GC support
1457-
AC_MSG_CHECKING(for --with-cycle-gc)
1458-
AC_ARG_WITH(cycle-gc,
1459-
[ --with(out)-cycle-gc disable/enable garbage collection])
1460-
1461-
if test -z "$with_cycle_gc"
1462-
then with_cycle_gc="yes"
1463-
fi
1464-
if test "$with_cycle_gc" != "no"
1465-
then
1466-
AC_DEFINE(WITH_CYCLE_GC, 1,
1467-
[Define if you want to compile in cycle garbage collection.])
1468-
fi
1469-
AC_MSG_RESULT($with_cycle_gc)
1470-
14711456
# Check for universal newline support
14721457
AC_MSG_CHECKING(for --with-universal-newline)
14731458
AC_ARG_WITH(universal-newlines,

0 commit comments

Comments
 (0)