[Python-checkins] CVS: python/dist/src/Mac/Python macgetcompiler.c,1.15,1.16

Jack Jansen jackjansen@users.sourceforge.net
Tue, 07 Aug 2001 05:33:29 -0700


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

Modified Files:
	macgetcompiler.c 
Log Message:
Bit the bullet and enabled garbage collection (finally).
Also updated pyconfig.h to the current state of pyconfig.h.in.

Index: macgetcompiler.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Mac/Python/macgetcompiler.c,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -d -r1.15 -r1.16
*** macgetcompiler.c	2001/07/27 09:22:03	1.15
--- macgetcompiler.c	2001/08/07 12:33:27	1.16
***************
*** 58,62 ****
  #endif
  
! #define COMPILER " [CW" TARGET_API HASGUSI HASTHREAD"]"
  #endif
  
--- 58,68 ----
  #endif
  
! #ifdef WITH_CYCLE_GC
! #define HASGC " GC"
! #else
! #define HASGC ""
! #endif
! 
! #define COMPILER " [CW" TARGET_API HASGUSI HASTHREAD HASGC"]"
  #endif