diff options
author | Andoni Morales Alastruey <ylatuya@gmail.com> | 2012-11-16 12:45:03 +0100 |
---|---|---|
committer | Andoni Morales Alastruey <ylatuya@gmail.com> | 2012-11-19 14:13:06 +0100 |
commit | 71f8a4e05e26dce6dded6a8693ea0200ac3a38c0 (patch) | |
tree | 2514dae74f47bb5c7880788367553a1c96b3d35d | |
parent | 2e7ed5924419c7f5889b00db4b344611a9ed4212 (diff) |
Use Snow Leopard as the minimum required version
We don't support Leopard anymore and otherwise osxvideosik
will use the hackish path for the main run loop integration
-rw-r--r-- | config/darwin.config | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/darwin.config b/config/darwin.config index d0733b52..cbadf700 100644 --- a/config/darwin.config +++ b/config/darwin.config @@ -62,7 +62,7 @@ sdk_root = '/Developer/SDKs/MacOSX%s.sdk' % sdk_version if not os.path.exists(sdk_root): sdk_root = '/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX%s.sdk' % sdk_version -min_osx_sdk_version = min_osx_sdk_version or '10.5' +min_osx_sdk_version = min_osx_sdk_version or '10.6' sdk='-mmacosx-version-min=%s -isysroot %s' % (min_osx_sdk_version, sdk_root) for f in ['CFLAGS', 'CCASFLAGS', 'CXXFLAGS', 'OBJCFLAGS', 'LDFLAGS']: |