diff options
author | Gavin Andresen <gavinandresen@gmail.com> | 2014-02-25 21:35:48 -0500 |
---|---|---|
committer | Gavin Andresen <gavinandresen@gmail.com> | 2014-02-25 21:36:31 -0500 |
commit | 26e4b52712faf8e60814f7f6030b6dded1df8038 (patch) | |
tree | 97697ef530e5938e440e3fac655591c940979324 /share | |
parent | 12f5787d4545aa4ea8b7b58dc21319d574023b1f (diff) |
Require OSX 10.6, 64-bit
Drop support for 32-bit or pre-10.6 Macs.
Also, some of the OSX build docs hadn't been updated since the
autotools change.
Diffstat (limited to 'share')
-rw-r--r-- | share/qt/Info.plist.in | 8 | ||||
-rwxr-xr-x | share/qt/clean_mac_info_plist.py | 29 |
2 files changed, 8 insertions, 29 deletions
diff --git a/share/qt/Info.plist.in b/share/qt/Info.plist.in index b1c2dcb462..4ed1f1be50 100644 --- a/share/qt/Info.plist.in +++ b/share/qt/Info.plist.in @@ -2,6 +2,14 @@ <!DOCTYPE plist SYSTEM "file://localhost/System/Library/DTDs/PropertyList.dtd"> <plist version="0.9"> <dict> + <key>LSMinimumSystemVersion</key> + <string>10.6.0</string> + + <key>LSArchitecturePriority</key> + <array> + <string>x86_64</string> + </array> + <key>CFBundleIconFile</key> <string>bitcoin.icns</string> diff --git a/share/qt/clean_mac_info_plist.py b/share/qt/clean_mac_info_plist.py deleted file mode 100755 index df677f50b7..0000000000 --- a/share/qt/clean_mac_info_plist.py +++ /dev/null @@ -1,29 +0,0 @@ -#!/usr/bin/env python -# Jonas Schnelli, 2013 -# make sure the Bitcoin-Qt.app contains the right plist (including the right version) -# fix made because of serval bugs in Qt mac deployment (https://bugreports.qt-project.org/browse/QTBUG-21267) - -from string import Template -from datetime import date - -bitcoinDir = "./"; - -inFile = bitcoinDir+"/share/qt/Info.plist" -outFile = "Bitcoin-Qt.app/Contents/Info.plist" -version = "unknown"; - -fileForGrabbingVersion = bitcoinDir+"bitcoin-qt.pro" -for line in open(fileForGrabbingVersion): - lineArr = line.replace(" ", "").split("="); - if lineArr[0].startswith("VERSION"): - version = lineArr[1].replace("\n", ""); - -fIn = open(inFile, "r") -fileContent = fIn.read() -s = Template(fileContent) -newFileContent = s.substitute(VERSION=version,YEAR=date.today().year) - -fOut = open(outFile, "w"); -fOut.write(newFileContent); - -print "Info.plist fresh created"
\ No newline at end of file |