[Python-checkins] python/dist/src configure.in,1.327,1.328

nascheme@users.sourceforge.net nascheme@users.sourceforge.net
Mon, 08 Jul 2002 07:46:57 -0700


Update of /cvsroot/python/python/dist/src
In directory usw-pr-cvs1:/tmp/cvs-serv7936

Modified Files:
	configure.in 
Log Message:
Remove the configure option for disabling the reference cycle GC.


Index: configure.in
===================================================================
RCS file: /cvsroot/python/python/dist/src/configure.in,v
retrieving revision 1.327
retrieving revision 1.328
diff -C2 -d -r1.327 -r1.328
*** configure.in	25 Jun 2002 05:53:48 -0000	1.327
--- configure.in	8 Jul 2002 14:46:55 -0000	1.328
***************
*** 1454,1472 ****
  fi
  
- # Check for GC support
- AC_MSG_CHECKING(for --with-cycle-gc)
- AC_ARG_WITH(cycle-gc,
- [  --with(out)-cycle-gc            disable/enable garbage collection])
- 
- if test -z "$with_cycle_gc"
- then with_cycle_gc="yes"
- fi
- if test "$with_cycle_gc" != "no"
- then
-     AC_DEFINE(WITH_CYCLE_GC, 1, 
-      [Define if you want to compile in cycle garbage collection.])
- fi
- AC_MSG_RESULT($with_cycle_gc)
- 
  # Check for universal newline support
  AC_MSG_CHECKING(for --with-universal-newline)
--- 1454,1457 ----