[Python-checkins] python/dist/src/Mac/Python macgetcompiler.c,1.17,1.18

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


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

Modified Files:
	macgetcompiler.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: macgetcompiler.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Mac/Python/macgetcompiler.c,v
retrieving revision 1.17
retrieving revision 1.18
diff -C2 -d -r1.17 -r1.18
*** macgetcompiler.c	11 Apr 2002 20:46:16 -0000	1.17
--- macgetcompiler.c	7 Jul 2002 20:54:44 -0000	1.18
***************
*** 37,64 ****
  #ifdef __MWERKS__
  #ifdef USE_GUSI2
- #define HASGUSI " GUSI2"
- #else
  #define HASGUSI ""
  #endif
  
  #ifdef WITH_THREAD
- #define HASTHREAD " THREADS"
- #else
  #define HASTHREAD ""
  #endif
  
  #if TARGET_API_MAC_CARBON
! #define TARGET_API " CARBON"
  #else
  #define TARGET_API " PPC"
  #endif
  
! #ifdef WITH_CYCLE_GC
! #define HASGC " GC"
! #else
! #define HASGC ""
! #endif
! 
! #define COMPILER " [CW" TARGET_API HASGUSI HASTHREAD HASGC"]"
  #endif
  
--- 37,58 ----
  #ifdef __MWERKS__
  #ifdef USE_GUSI2
  #define HASGUSI ""
+ #else
+ #define HASGUSI " WITHOUT_GUSI2"
  #endif
  
  #ifdef WITH_THREAD
  #define HASTHREAD ""
+ #else
+ #define HASTHREAD " WITHOUT_THREAD"
  #endif
  
  #if TARGET_API_MAC_CARBON
! #define TARGET_API ""
  #else
  #define TARGET_API " PPC"
  #endif
  
! #define COMPILER " [CW" TARGET_API HASGUSI HASTHREAD"]"
  #endif