diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2001-08-07 12:33:32 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2001-08-07 12:33:32 (GMT) |
commit | 59c14e225498456d93924cc6b94c3366a2f65101 (patch) | |
tree | 1106fcd64b2b570f70e7a4542383c162d4534b72 /Mac/Python | |
parent | 230e5789e59c387629542cbdce0cf50d5877bb43 (diff) | |
download | cpython-59c14e225498456d93924cc6b94c3366a2f65101.zip cpython-59c14e225498456d93924cc6b94c3366a2f65101.tar.gz cpython-59c14e225498456d93924cc6b94c3366a2f65101.tar.bz2 |
Bit the bullet and enabled garbage collection (finally).
Also updated pyconfig.h to the current state of pyconfig.h.in.
Diffstat (limited to 'Mac/Python')
-rw-r--r-- | Mac/Python/macgetcompiler.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/Mac/Python/macgetcompiler.c b/Mac/Python/macgetcompiler.c index e3d24b7..eb9c3c4 100644 --- a/Mac/Python/macgetcompiler.c +++ b/Mac/Python/macgetcompiler.c @@ -57,7 +57,13 @@ PERFORMANCE OF THIS SOFTWARE. #define TARGET_API " PPC" #endif -#define COMPILER " [CW" TARGET_API HASGUSI HASTHREAD"]" +#ifdef WITH_CYCLE_GC +#define HASGC " GC" +#else +#define HASGC "" +#endif + +#define COMPILER " [CW" TARGET_API HASGUSI HASTHREAD HASGC"]" #endif #ifdef MPW |