[Python-checkins] python/dist/src/PC config.c,1.34,1.35 pyconfig.h,1.11,1.12

tim_one@users.sourceforge.net tim_one@users.sourceforge.net
Sat, 06 Jul 2002 20:59:36 -0700


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

Modified Files:
	config.c pyconfig.h 
Log Message:
Removed WITH_CYCLE_GC #ifdef-ery.  Holes:

+ I'm not sure what to do about configure.in.  Left it alone.

+ Ditto pyexpat.c.  Fred or Martin will know what to do.


Index: config.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/PC/config.c,v
retrieving revision 1.34
retrieving revision 1.35
diff -C2 -d -r1.34 -r1.35
*** config.c	16 Jun 2002 01:34:49 -0000	1.34
--- config.c	7 Jul 2002 03:59:34 -0000	1.35
***************
*** 13,19 ****
  extern void initcmath(void);
  extern void initerrno(void);
- #ifdef WITH_CYCLE_GC
  extern void initgc(void);
- #endif
  #ifndef MS_WIN64
  extern void initimageop(void);
--- 13,17 ----
***************
*** 64,70 ****
          {"cmath", initcmath},
          {"errno", initerrno},
- #ifdef WITH_CYCLE_GC
          {"gc", initgc},
- #endif
  #ifndef MS_WIN64
          {"imageop", initimageop},
--- 62,66 ----

Index: pyconfig.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/PC/pyconfig.h,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** pyconfig.h	30 Jun 2002 15:26:10 -0000	1.11
--- pyconfig.h	7 Jul 2002 03:59:34 -0000	1.12
***************
*** 500,506 ****
  #endif
  
- /* Define if you want cycle garbage collection */
- #define WITH_CYCLE_GC 1
- 
  /* Use Python's own small-block memory-allocator. */
  #define WITH_PYMALLOC 1
--- 500,503 ----