diff options
author | Jonathan Kew <jfkthame@googlemail.com> | 2007-07-27 19:33:40 +0000 |
---|---|---|
committer | Jonathan Kew <jfkthame@googlemail.com> | 2007-07-27 19:33:40 +0000 |
commit | 9bdf5feb967c1236adb385c428f0533d47bdc418 (patch) | |
tree | 45ff3d95ccea3b4c7cfab99dadbc31c17b42dc1e /Build/source/libs | |
parent | bdba3f35302c893676527d9fac8956d439a86884 (diff) |
change libs order to ensure zlib is built before teckit
git-svn-id: svn://tug.org/texlive/trunk@4667 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/libs')
-rwxr-xr-x | Build/source/libs/configure | 9 | ||||
-rw-r--r-- | Build/source/libs/configure.in | 7 |
2 files changed, 7 insertions, 9 deletions
diff --git a/Build/source/libs/configure b/Build/source/libs/configure index f5ad9dca33a..71520737351 100755 --- a/Build/source/libs/configure +++ b/Build/source/libs/configure @@ -3149,11 +3149,6 @@ if test "x$needs_icu" != xno && test "$using_system_icu" != yes; then subdirs="$subdirs icu-xetex" fi -if test "x$needs_teckit" != xno; then - subdirs="$subdirs teckit" - -fi - if test "x$needs_pnglib" != xno && test "$using_system_pnglib" != yes; then ac_config_files="$ac_config_files libpng/Makefile" @@ -3166,6 +3161,10 @@ if test "x$needs_obsdcompat" != xno; then subdirs="$subdirs obsdcompat" fi +if test "x$needs_teckit" != xno; then + subdirs="$subdirs teckit" + +fi # create md5 directory when building outside the srcdir: if test -d $srcdir/md5; then diff --git a/Build/source/libs/configure.in b/Build/source/libs/configure.in index f6371675eca..63fdaccd7d2 100644 --- a/Build/source/libs/configure.in +++ b/Build/source/libs/configure.in @@ -56,10 +56,6 @@ if test "x$needs_icu" != xno && test "$using_system_icu" != yes; then ac_configure_args="$ac_configure_args --enable-static" AC_CONFIG_SUBDIRS([icu-xetex]) fi -if test "x$needs_teckit" != xno; then - AC_CONFIG_SUBDIRS([teckit]) -fi - if test "x$needs_pnglib" != xno && test "$using_system_pnglib" != yes; then KPSE_CONFIG_FILES([libpng/Makefile]) fi @@ -69,6 +65,9 @@ fi if test "x$needs_obsdcompat" != xno; then AC_CONFIG_SUBDIRS([obsdcompat]) fi +if test "x$needs_teckit" != xno; then + AC_CONFIG_SUBDIRS([teckit]) +fi # create md5 directory when building outside the srcdir: if test -d $srcdir/md5; then |