diff options
author | Karl Berry <karl@freefriends.org> | 2009-04-29 16:57:26 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2009-04-29 16:57:26 +0000 |
commit | 68c78fcaa8dd2d487f7f1c31baf1fc4b1c26c1ce (patch) | |
tree | 0c5e851eda099278ddca6631be20c3a1fdbfeeab /Build/source | |
parent | 2cc67eb326799ed7919ef14ddba3308d89047b21 (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')
-rwxr-xr-x | Build/source/Build | 10 | ||||
-rw-r--r-- | Build/source/ChangeLog | 5 |
2 files changed, 14 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=} diff --git a/Build/source/ChangeLog b/Build/source/ChangeLog index c970c0e8300..997a11c3f2e 100644 --- a/Build/source/ChangeLog +++ b/Build/source/ChangeLog @@ -1,3 +1,8 @@ +2009-04-29 Karl Berry <karl@tug.org> + + * Build (MACOSX_DEPLOYMENT_TARGET): set to 10.3 on powerpc-darwin + (but not i386-darwin). + 2009-04-11 Karl Berry <karl@tug.org> * Makefile.am (world): do the run-texlinks target in texk/tetex |