diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2002-12-13 15:20:53 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2002-12-13 15:20:53 (GMT) |
commit | 747c3d3f0242022c46213bcd90fb8c1a527be7b6 (patch) | |
tree | 5e971c84df5ba732d29a8593ac642078cea7cb3f /Modules/_localemodule.c | |
parent | fcbe5e55f5864147c36a96c0ee77317e6ebe5390 (diff) | |
download | cpython-747c3d3f0242022c46213bcd90fb8c1a527be7b6.zip cpython-747c3d3f0242022c46213bcd90fb8c1a527be7b6.tar.gz cpython-747c3d3f0242022c46213bcd90fb8c1a527be7b6.tar.bz2 |
We need macglue on MacPython-OS9 too.
Diffstat (limited to 'Modules/_localemodule.c')
-rw-r--r-- | Modules/_localemodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_localemodule.c b/Modules/_localemodule.c index 4b654d5..d535ee8 100644 --- a/Modules/_localemodule.c +++ b/Modules/_localemodule.c @@ -30,7 +30,7 @@ This software comes with no warranty. Use at your own risk. #include <windows.h> #endif -#if __APPLE__ +#if defined(__APPLE__) || defined(__MWERKS__) #include "macglue.h" #endif |