diff options
author | Just van Rossum <just@letterror.com> | 2001-12-13 13:40:04 +0000 |
---|---|---|
committer | Just van Rossum <just@letterror.com> | 2001-12-13 13:40:04 +0000 |
commit | 4f6c05857fba17d3c2f65bd2438a8d1cebdae43a (patch) | |
tree | 2adc0d804976f8ba1757817cec0a8fe7979a8fab | |
parent | 663dd7986131fb2673ea0d11e4b2f3f30e9fd612 (diff) | |
download | cpython-git-4f6c05857fba17d3c2f65bd2438a8d1cebdae43a.tar.gz |
include the proper header for Mach-O
-rwxr-xr-x | Mac/Modules/cg/_CGmodule.c | 2 | ||||
-rwxr-xr-x | Mac/Modules/cg/cgsupport.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Mac/Modules/cg/_CGmodule.c b/Mac/Modules/cg/_CGmodule.c index 6523e715cd..729162b91b 100755 --- a/Mac/Modules/cg/_CGmodule.c +++ b/Mac/Modules/cg/_CGmodule.c @@ -20,7 +20,7 @@ #include <Quickdraw.h> #include <CGContext.h> #else -#include <CoreGraphics/CoreGraphics.h> +#include <ApplicationServices/ApplicationServices.h> #endif #if !TARGET_API_MAC_OSX diff --git a/Mac/Modules/cg/cgsupport.py b/Mac/Modules/cg/cgsupport.py index 4ec56e4550..e0931e5476 100755 --- a/Mac/Modules/cg/cgsupport.py +++ b/Mac/Modules/cg/cgsupport.py @@ -25,7 +25,7 @@ includestuff = includestuff + """ #include <Quickdraw.h> #include <CGContext.h> #else -#include <CoreGraphics/CoreGraphics.h> +#include <ApplicationServices/ApplicationServices.h> #endif #if !TARGET_API_MAC_OSX |