diff options
author | Rhody Lugo <rhodylugo@me.com> | 2015-01-08 02:56:27 -0430 |
---|---|---|
committer | Rhody Lugo <rhodylugo@me.com> | 2015-01-08 02:56:27 -0430 |
commit | d046bd88ad84f99789fbc7e544e8c8b929f14faf (patch) | |
tree | de355736a00ffe5a6ae641c70b523427b21b9911 /platform/osx/detect.py | |
parent | 78f4b937034c8bc24c2a871b1fc08ecbe39d0e5e (diff) | |
download | redot-engine-d046bd88ad84f99789fbc7e544e8c8b929f14faf.tar.gz |
OS X: Add keyboard layout detection and fix build
Diffstat (limited to 'platform/osx/detect.py')
-rw-r--r-- | platform/osx/detect.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/osx/detect.py b/platform/osx/detect.py index 1b32838525..141a876657 100644 --- a/platform/osx/detect.py +++ b/platform/osx/detect.py @@ -78,7 +78,7 @@ def configure(env): env.Append(LIBS=['pthread']) #env.Append(CPPFLAGS=['-F/Developer/SDKs/MacOSX10.4u.sdk/System/Library/Frameworks', '-isysroot', '/Developer/SDKs/MacOSX10.4u.sdk', '-mmacosx-version-min=10.4']) #env.Append(LINKFLAGS=['-mmacosx-version-min=10.4', '-isysroot', '/Developer/SDKs/MacOSX10.4u.sdk', '-Wl,-syslibroot,/Developer/SDKs/MacOSX10.4u.sdk']) - env.Append(LINKFLAGS=['-framework', 'Cocoa', '-framework', 'OpenGL', '-framework', 'AGL', '-framework', 'AudioUnit','-lz']) + env.Append(LINKFLAGS=['-framework', 'Cocoa', '-framework', 'Carbon', '-framework', 'OpenGL', '-framework', 'AGL', '-framework', 'AudioUnit','-lz']) if (env["CXX"]=="clang++"): env.Append(CPPFLAGS=['-DTYPED_METHOD_BIND']) |