diff options
author | Tim Peters <tim.peters@gmail.com> | 2002-07-07 03:59:34 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2002-07-07 03:59:34 (GMT) |
commit | 943382c8e5009da895679798e1e740a0661fbf7e (patch) | |
tree | 8dba4a12cba89a30c2dad53ba8f11eef6d740321 /RISCOS | |
parent | 12f4f35f6e675bbe7435069ab7516a48e82f27a9 (diff) | |
download | cpython-943382c8e5009da895679798e1e740a0661fbf7e.zip cpython-943382c8e5009da895679798e1e740a0661fbf7e.tar.gz cpython-943382c8e5009da895679798e1e740a0661fbf7e.tar.bz2 |
Removed WITH_CYCLE_GC #ifdef-ery. Holes:
+ I'm not sure what to do about configure.in. Left it alone.
+ Ditto pyexpat.c. Fred or Martin will know what to do.
Diffstat (limited to 'RISCOS')
-rw-r--r-- | RISCOS/Modules/config.c | 2 | ||||
-rw-r--r-- | RISCOS/pyconfig.h | 3 |
2 files changed, 0 insertions, 5 deletions
diff --git a/RISCOS/Modules/config.c b/RISCOS/Modules/config.c index 03f6e3c..54fbc79 100644 --- a/RISCOS/Modules/config.c +++ b/RISCOS/Modules/config.c @@ -65,10 +65,8 @@ struct _inittab _PyImport_Inittab[] = { {"sys", NULL}, {"exceptions", NULL}, -#ifdef WITH_CYCLE_GC /* This lives in gcmodule.c */ {"gc", initgc}, -#endif /* Sentinel */ {0, 0} diff --git a/RISCOS/pyconfig.h b/RISCOS/pyconfig.h index a8cc8c7..e7c3484 100644 --- a/RISCOS/pyconfig.h +++ b/RISCOS/pyconfig.h @@ -236,9 +236,6 @@ 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 to emulate SGI (IRIX 4) dynamic linking. This is rumoured to work on VAX (Ultrix), Sun3 (SunOS 3.4), Sequent Symmetry (Dynix), and Atari ST. |