[Python-checkins] python/dist/src/Mac/Modules macconfig.c,1.31,1.32

jackjansen@users.sourceforge.net jackjansen@users.sourceforge.net
Sun, 07 Jul 2002 13:54:46 -0700


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

Modified Files:
	macconfig.c 
Log Message:
- Got rid if WITH_CYCLE_GC
- Cleaned up Python banner string, so the normal build for MacPython 2.3
  will have a short banner.


Index: macconfig.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Mac/Modules/macconfig.c,v
retrieving revision 1.31
retrieving revision 1.32
diff -C2 -d -r1.31 -r1.32
*** macconfig.c	20 Jun 2002 22:56:17 -0000	1.31
--- macconfig.c	7 Jul 2002 20:54:44 -0000	1.32
***************
*** 164,170 ****
  extern void initpyexpat();
  #endif
- #ifdef WITH_CYCLE_GC
  extern void initgc();
- #endif
  
  extern void initcPickle();
--- 164,168 ----
***************
*** 296,302 ****
  	{"pyexpat", initpyexpat},
  #endif
- #ifdef WITH_CYCLE_GC
  	{"gc", initgc},
- #endif
  	{"cPickle",	initcPickle},
  	{"cStringIO",	initcStringIO},
--- 294,298 ----