diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2001-08-03 15:36:23 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2001-08-03 15:36:23 (GMT) |
commit | 3988358b4d70c01660b068deb72bd0818ad85333 (patch) | |
tree | fb7d9e4617829dacda128e593b95c8727ec96777 /Mac | |
parent | 03b33effc77784d1ac7039c654ea5f1800f76f00 (diff) | |
download | cpython-3988358b4d70c01660b068deb72bd0818ad85333.zip cpython-3988358b4d70c01660b068deb72bd0818ad85333.tar.gz cpython-3988358b4d70c01660b068deb72bd0818ad85333.tar.bz2 |
If we use frameworks we should include CoreServices/CoreServices.h, not the
old-style CoreFoundation.h.
Diffstat (limited to 'Mac')
-rw-r--r-- | Mac/Modules/cf/CFmodule.c | 2 | ||||
-rw-r--r-- | Mac/Modules/cf/cfsupport.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Mac/Modules/cf/CFmodule.c b/Mac/Modules/cf/CFmodule.c index 68e863f..51b85fc 100644 --- a/Mac/Modules/cf/CFmodule.c +++ b/Mac/Modules/cf/CFmodule.c @@ -24,7 +24,7 @@ #include <CFString.h> #include <CFURL.h> #else -#include <CoreFoundation.h> +#include <CoreServices/CoreServices.h> #endif /* For now we declare them forward here. They'll go to mactoolbox later */ diff --git a/Mac/Modules/cf/cfsupport.py b/Mac/Modules/cf/cfsupport.py index 5da71d5..95a26f6 100644 --- a/Mac/Modules/cf/cfsupport.py +++ b/Mac/Modules/cf/cfsupport.py @@ -50,7 +50,7 @@ includestuff = includestuff + """ #include <CFString.h> #include <CFURL.h> #else -#include <CoreFoundation.h> +#include <CoreServices/CoreServices.h> #endif /* For now we declare them forward here. They'll go to mactoolbox later */ |