aboutsummaryrefslogtreecommitdiff
path: root/macosx
diff options
context:
space:
mode:
authorAnders F Bjorklund <afb@users.sourceforge.net>2013-08-02 15:58:44 +0200
committerLasse Collin <lasse.collin@tukaani.org>2013-08-03 13:15:32 +0300
commitbe0100d01ca6a75899d051bee00acf17e6dc0c15 (patch)
treedb8673d49340a0cec45df9682bdfee6ab5f65481 /macosx
parentmove configurables into variables (diff)
downloadxz-be0100d01ca6a75899d051bee00acf17e6dc0c15.tar.xz
macosx: set minimum to leopard
Diffstat (limited to 'macosx')
-rwxr-xr-xmacosx/build.sh13
1 files changed, 8 insertions, 5 deletions
diff --git a/macosx/build.sh b/macosx/build.sh
index 203874e4..3417bfb0 100755
--- a/macosx/build.sh
+++ b/macosx/build.sh
@@ -13,14 +13,17 @@ mkdir -p Resources
# Abort immediately if something goes wrong.
set -e
-GCC="gcc-4.0"
-SDK="/Developer/SDKs/MacOSX10.4u.sdk"
-MDT="10.4"
-GTT=i686-apple-darwin8
+GCC="gcc-4.2"
+SDK="/Developer/SDKs/MacOSX10.5.sdk"
+MDT="10.5"
+GTT=i686-apple-darwin9
ARCHES1="-arch ppc -arch ppc64 -arch i386 -arch x86_64"
ARCHES2="-arch ppc -arch i386"
-PKGFORMAT="10.4" # dir
+PKGFORMAT="10.5" # xar
+
+# avoid "unknown required load command: 0x80000022" from linking on Snow Leopard
+uname -r | grep ^1 >/dev/null && LDFLAGS="$LDFLAGS -Wl,-no_compact_linkedit"
# Clean up if it was already configured.
[ -f Makefile ] && make distclean