From 654134ffdb706fbcc0a68dd261e0b81b97f5f53f Mon Sep 17 00:00:00 2001 From: jules Date: Fri, 15 Jun 2012 17:27:58 +0100 Subject: [PATCH] Introjucer: removed old OSX 10.4 target option. --- .../Source/Project Saving/jucer_ProjectExport_XCode.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/extras/Introjucer/Source/Project Saving/jucer_ProjectExport_XCode.h b/extras/Introjucer/Source/Project Saving/jucer_ProjectExport_XCode.h index d631b2d6a9..7ba30f8a52 100644 --- a/extras/Introjucer/Source/Project Saving/jucer_ProjectExport_XCode.h +++ b/extras/Introjucer/Source/Project Saving/jucer_ProjectExport_XCode.h @@ -219,8 +219,8 @@ protected: if (getMacCompatibilityVersion().isEmpty()) getMacCompatibilityVersionValue() = osxVersionDefault; - const char* osxVersions[] = { "Use Default", osxVersion10_4, osxVersion10_5, osxVersion10_6, osxVersion10_7, 0 }; - const char* osxVersionValues[] = { osxVersionDefault, osxVersion10_4, osxVersion10_5, osxVersion10_6, osxVersion10_7, 0 }; + const char* osxVersions[] = { "Use Default", osxVersion10_5, osxVersion10_6, osxVersion10_7, 0 }; + const char* osxVersionValues[] = { osxVersionDefault, osxVersion10_5, osxVersion10_6, osxVersion10_7, 0 }; props.add (new ChoicePropertyComponent (getMacSDKVersionValue(), "OSX Base SDK Version", StringArray (osxVersions), Array (osxVersionValues)), @@ -672,7 +672,7 @@ private: const String sdk (config.getMacSDKVersion()); const String sdkCompat (config.getMacCompatibilityVersion()); - if (sdk == osxVersion10_5) s.add ("SDKROOT = macosx10.5"); + if (sdk == osxVersion10_5) s.add ("SDKROOT = macosx10.5"); else if (sdk == osxVersion10_6) s.add ("SDKROOT = macosx10.6"); else if (sdk == osxVersion10_7) s.add ("SDKROOT = macosx10.7");