From: Ronald Oussoren <ronaldoussoren@mac.com>
Date: Tue, 12 Aug 2008 12:41:45 +0000 (+0000)
Subject: Another fix for 4-way universal builds, use the right #ifndef guard
X-Git-Tag: v2.6b3~96
X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=aa8efbf08469c3667ed22362c0e10b83ae124c0b;p=python

Another fix for 4-way universal builds, use the right #ifndef guard
to detect the OSX 10.5 SDK.
---

diff --git a/Mac/Modules/MacOS.c b/Mac/Modules/MacOS.c
index 07a3434bd8..272fe8d55d 100644
--- a/Mac/Modules/MacOS.c
+++ b/Mac/Modules/MacOS.c
@@ -30,7 +30,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 #include <Carbon/Carbon.h>
 #include <ApplicationServices/ApplicationServices.h>
 
-#ifndef HAVE_MACOS105_SDK
+#ifndef HAVE_OSX105_SDK
 typedef SInt16	FSIORefNum;
 #endif
 
diff --git a/Mac/Modules/file/_Filemodule.c b/Mac/Modules/file/_Filemodule.c
index a314e5bc9a..22e12ecbb7 100644
--- a/Mac/Modules/file/_Filemodule.c
+++ b/Mac/Modules/file/_Filemodule.c
@@ -7,7 +7,7 @@
 
 #include "pymactoolbox.h"
 
-#ifndef HAVE_MACOS105_SDK
+#ifndef HAVE_OSX105_SDK
 typedef SInt16	FSIORefNum;
 #endif