summaryrefslogtreecommitdiff
path: root/Build/source/Build
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2009-04-29 16:57:26 +0000
committerKarl Berry <karl@freefriends.org>2009-04-29 16:57:26 +0000
commit68c78fcaa8dd2d487f7f1c31baf1fc4b1c26c1ce (patch)
tree0c5e851eda099278ddca6631be20c3a1fdbfeeab /Build/source/Build
parent2cc67eb326799ed7919ef14ddba3308d89047b21 (diff)
default MACOSX_DEPLOYMENT_TARGET for powerpc-darwin
git-svn-id: svn://tug.org/texlive/trunk@12867 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/Build')
-rwxr-xr-xBuild/source/Build10
1 files changed, 9 insertions, 1 deletions
diff --git a/Build/source/Build b/Build/source/Build
index cf8147e8aaa..4cf529b41f8 100755
--- a/Build/source/Build
+++ b/Build/source/Build
@@ -38,6 +38,14 @@ else
rm -rf $TL_WORKDIR $TL_INSTALL_DEST
fi
+# For MacOSX PowerPC, we want to keep working on 10.3.
+# For MacOSX Intel, though, the earliest system is 10.4.
+if sh build-aux/config.guess | grep powerpc.*darwin >/dev/null \
+ && test -z "$MACOSX_DEPLOYMENT_TARGET"; then
+ MACOSX_DEPLOYMENT_TARGET=10.3
+ export MACOSX_DEPLOYMENT_TARGET
+fi
+
: ${TL_BUILD_ENV=}
if test "x$1" = x--debug || test "x$1" = x-g; then
TL_BUILD_ENV="CFLAGS=-g CXXFLAGS=-g OBJCFLAGS=-g $TL_BUILD_ENV"
@@ -67,7 +75,7 @@ cd $TL_WORKDIR || exit 1
: ${TL_CONF_MAC_FONTS=--with-old-mac-fonts}
# skip xindy by default, it requires clisp (see utils/README).
-: ${TL_CONF_XINDY=--without-xindy}
+: ${TL_CONF_XINDY=--disable-xindy}
# allow adding arbitrary other configure args.
: ${TL_CONFIGURE_ARGS=}