[Python-checkins] r65653 - in python/trunk/Mac/Modules: MacOS.c file/_Filemodule.c

ronald.oussoren python-checkins at python.org
Tue Aug 12 14:41:45 CEST 2008


Author: ronald.oussoren
Date: Tue Aug 12 14:41:45 2008
New Revision: 65653

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


Modified:
   python/trunk/Mac/Modules/MacOS.c
   python/trunk/Mac/Modules/file/_Filemodule.c

Modified: python/trunk/Mac/Modules/MacOS.c
==============================================================================
--- python/trunk/Mac/Modules/MacOS.c	(original)
+++ python/trunk/Mac/Modules/MacOS.c	Tue Aug 12 14:41:45 2008
@@ -30,7 +30,7 @@
 #include <Carbon/Carbon.h>
 #include <ApplicationServices/ApplicationServices.h>
 
-#ifndef HAVE_MACOS105_SDK
+#ifndef HAVE_OSX105_SDK
 typedef SInt16	FSIORefNum;
 #endif
 

Modified: python/trunk/Mac/Modules/file/_Filemodule.c
==============================================================================
--- python/trunk/Mac/Modules/file/_Filemodule.c	(original)
+++ python/trunk/Mac/Modules/file/_Filemodule.c	Tue Aug 12 14:41:45 2008
@@ -7,7 +7,7 @@
 
 #include "pymactoolbox.h"
 
-#ifndef HAVE_MACOS105_SDK
+#ifndef HAVE_OSX105_SDK
 typedef SInt16	FSIORefNum;
 #endif
 


More information about the Python-checkins mailing list