one supplied by Python itself. (see Include/unicodectype.h). */
#undef WANT_WCTYPE_FUNCTIONS
-/* Define if you want to compile in cycle garbage collection */
-#define WITH_CYCLE_GC 1
-
/* Define if you want cross-platform newline support for reading */
#define WITH_UNIVERSAL_NEWLINES
#ifdef USE_PYEXPAT
extern void initpyexpat();
#endif
-#ifdef WITH_CYCLE_GC
extern void initgc();
-#endif
extern void initcPickle();
extern void initcStringIO();
#ifdef USE_PYEXPAT
{"pyexpat", initpyexpat},
#endif
-#ifdef WITH_CYCLE_GC
{"gc", initgc},
-#endif
{"cPickle", initcPickle},
{"cStringIO", initcStringIO},
{"_locale", init_locale},
#ifdef __MWERKS__
#ifdef USE_GUSI2
-#define HASGUSI " GUSI2"
-#else
#define HASGUSI ""
+#else
+#define HASGUSI " WITHOUT_GUSI2"
#endif
#ifdef WITH_THREAD
-#define HASTHREAD " THREADS"
-#else
#define HASTHREAD ""
+#else
+#define HASTHREAD " WITHOUT_THREAD"
#endif
#if TARGET_API_MAC_CARBON
-#define TARGET_API " CARBON"
+#define TARGET_API ""
#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"]"
+#define COMPILER " [CW" TARGET_API HASGUSI HASTHREAD"]"
#endif
#ifdef MPW