summaryrefslogtreecommitdiffstats
path: root/Mac/Python
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>2001-08-07 12:33:32 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>2001-08-07 12:33:32 (GMT)
commit59c14e225498456d93924cc6b94c3366a2f65101 (patch)
tree1106fcd64b2b570f70e7a4542383c162d4534b72 /Mac/Python
parent230e5789e59c387629542cbdce0cf50d5877bb43 (diff)
downloadcpython-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.c8
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