diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2002-04-11 20:46:23 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2002-04-11 20:46:23 (GMT) |
commit | 8ab04b4d65586829887822a78d038a33ee7a69fd (patch) | |
tree | f276fd46f065664b962b12a2e51d78a44fa86c14 /Mac/Python | |
parent | 9b745f6665da02c4349e8a4e592dc42d6524b8d1 (diff) | |
download | cpython-8ab04b4d65586829887822a78d038a33ee7a69fd.zip cpython-8ab04b4d65586829887822a78d038a33ee7a69fd.tar.gz cpython-8ab04b4d65586829887822a78d038a33ee7a69fd.tar.bz2 |
Got rid of ifdefs for long-obsolete GUSI versions.
Diffstat (limited to 'Mac/Python')
-rw-r--r-- | Mac/Python/macgetcompiler.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Mac/Python/macgetcompiler.c b/Mac/Python/macgetcompiler.c index eb9c3c4..46c0bf3 100644 --- a/Mac/Python/macgetcompiler.c +++ b/Mac/Python/macgetcompiler.c @@ -35,15 +35,11 @@ PERFORMANCE OF THIS SOFTWARE. #include "Python.h" #ifdef __MWERKS__ -#ifdef USE_GUSI1 -#define HASGUSI " GUSI1" -#else #ifdef USE_GUSI2 #define HASGUSI " GUSI2" #else #define HASGUSI "" #endif -#endif #ifdef WITH_THREAD #define HASTHREAD " THREADS" |