diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2011-03-16 15:53:05 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2011-03-16 15:53:05 +0000 |
commit | e97ef8dfa62909a029519adecf4bf8b35f4559be (patch) | |
tree | 2c2590af0fc1acdee07de798684e8d60334ce753 /Build/source/utils/configure | |
parent | 805e477c290637b9736e144f3dbd262757506090 (diff) |
integrate biber
git-svn-id: svn://tug.org/texlive/trunk@21733 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/utils/configure')
-rwxr-xr-x | Build/source/utils/configure | 34 |
1 files changed, 33 insertions, 1 deletions
diff --git a/Build/source/utils/configure b/Build/source/utils/configure index 3d59e702c58..3bb5d3da237 100755 --- a/Build/source/utils/configure +++ b/Build/source/utils/configure @@ -670,6 +670,7 @@ enable_native_texlive_build enable_multiplatform enable_cxx_runtime_hack enable_libtool_hack +enable_biber enable_chktex enable_dialog enable_ps2eps @@ -810,7 +811,8 @@ CFLAGS LDFLAGS LIBS CPPFLAGS' -ac_subdirs_all='chktex +ac_subdirs_all='biber +chktex dialog ps2eps psutils @@ -1447,6 +1449,7 @@ Optional Features: lib/PLATFORM --enable-cxx-runtime-hack link C++ runtime statically --enable-libtool-hack ignore libtool dependency_libs + --disable-biber do not build the biber package --disable-chktex do not build the chktex package --disable-dialog do not build the dialog package --disable-ps2eps do not build the ps2eps package @@ -3148,6 +3151,25 @@ $as_echo "$as_me: Assuming \`--with-x'" >&6;} $as_echo "$as_me: WIN32 -> \`--without-x'" >&6;} ac_configure_args="$ac_configure_args '--without-x'" ;; esac +## utils/biber/ac/withenable.ac: configure.ac fragment for the TeX Live subdirectory utils/biber/ +## configure options and TL libraries required for biber +# Check whether --enable-biber was given. +if test "${enable_biber+set}" = set; then : + enableval=$enable_biber; +fi +case $enable_biber in #( + yes|no) : + ;; #( + *) : + + enable_biber=$enable_all_pkgs + { $as_echo "$as_me:${as_lineno-$LINENO}: Assuming \`--enable-biber=$enable_biber'" >&5 +$as_echo "$as_me: Assuming \`--enable-biber=$enable_biber'" >&6;} + ac_configure_args="$ac_configure_args '--enable-biber=$enable_biber'" + ;; +esac + + ## utils/chktex/ac/withenable.ac: configure.ac fragment for the TeX Live subdirectory utils/chktex/ ## configure options and TL libraries required for chktex # Check whether --enable-chktex was given. @@ -5690,6 +5712,16 @@ DIST_SUBUTILS= +if test -x $srcdir/biber/configure; then + test "x$enable_biber" = xno || SUBUTILS="$SUBUTILS biber" + DIST_SUBUTILS="$DIST_SUBUTILS biber" + if false; then + subdirs="$subdirs biber" + + fi +fi + + if test -x $srcdir/chktex/configure; then test "x$enable_chktex" = xno || SUBUTILS="$SUBUTILS chktex" DIST_SUBUTILS="$DIST_SUBUTILS chktex" |