Commit 42034874 authored by Felix Paul Kühne's avatar Felix Paul Kühne

Mac Port: disable 64bit mode on 10.5 and make it the preferred mode on 10.6

This will fix a bunch of crashes related to the buggy 10.5 64bit runtime.
parent a3974988
...@@ -1349,6 +1349,23 @@ ...@@ -1349,6 +1349,23 @@
</array> </array>
<key>CFBundleVersion</key> <key>CFBundleVersion</key>
<string>@VERSION@</string> <string>@VERSION@</string>
<key>LSArchitecturePriority</key>
<array>
<string>x86_64</string>
<string>i386</string>
<string>ppc</string>
</array>
<key>LSMinimumSystemVersionByArchitecture</key>
<dict>
<key>i386</key>
<string>10.5.0</string>
<key>x86_64</key>
<string>10.6.0</string>
<key>ppc</key>
<string>10.5.0</string>
<key>ppc64</key>
<string>10.5.0</string>
</dict>
<key>NSAppleScriptEnabled</key> <key>NSAppleScriptEnabled</key>
<string>YES</string> <string>YES</string>
<key>NSMainNibFile</key> <key>NSMainNibFile</key>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment