diff options
author | Karl Berry <karl@freefriends.org> | 2018-02-10 23:30:32 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2018-02-10 23:30:32 +0000 |
commit | f91571975a42a3cc2eb1875ceeccdb4f25c8a32c (patch) | |
tree | 5d4834e4111b0c49c47b019d860f613266980da0 /Build/source/utils/configure | |
parent | 6e760293ed5b28dda13d89aed6668de70aeab94b (diff) |
new utility package axodraw2 (executable axohelp)
git-svn-id: svn://tug.org/texlive/trunk@46590 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/utils/configure')
-rwxr-xr-x | Build/source/utils/configure | 28 |
1 files changed, 27 insertions, 1 deletions
diff --git a/Build/source/utils/configure b/Build/source/utils/configure index f16b1ffe777..b7ea4c70d41 100755 --- a/Build/source/utils/configure +++ b/Build/source/utils/configure @@ -695,6 +695,7 @@ enable_multiplatform enable_cxx_runtime_hack enable_libtool_hack enable_autosp +enable_axodraw2 enable_devnag enable_lacheck enable_m_tx @@ -1483,6 +1484,7 @@ Optional Features: --enable-cxx-runtime-hack link C++ runtime statically --enable-libtool-hack ignore libtool dependency_libs --disable-autosp do not build the autosp package + --disable-axodraw2 do not build the axodraw2 package --disable-devnag do not build the devnag package --disable-lacheck do not build the lacheck package --disable-m-tx do not build the m-tx package @@ -3362,7 +3364,8 @@ esac ;; esac ## utils/autosp/ac/withenable.ac: configure.ac fragment for TeX Live subdir -## configure options and TL libraries required for vlna +## $Id$ +## configure options and TL libraries required for autosp. # Check whether --enable-autosp was given. if test "${enable_autosp+set}" = set; then : enableval=$enable_autosp; @@ -3379,6 +3382,25 @@ $as_echo "$as_me: Assuming \`--enable-autosp=$enable_autosp'" >&6;} ;; esac +## utils/autosp/ac/withenable.ac: configure.ac fragment for TeX Live subdir +## $Id$ +## configure options and TL libraries for axodraw2. +# Check whether --enable-axodraw2 was given. +if test "${enable_axodraw2+set}" = set; then : + enableval=$enable_axodraw2; +fi +case $enable_axodraw2 in #( + yes|no) : + ;; #( + *) : + + enable_axodraw2=$enable_all_pkgs + { $as_echo "$as_me:${as_lineno-$LINENO}: Assuming \`--enable-axodraw2=$enable_axodraw2'" >&5 +$as_echo "$as_me: Assuming \`--enable-axodraw2=$enable_axodraw2'" >&6;} + ac_configure_args="$ac_configure_args '--enable-axodraw2=$enable_axodraw2'" + ;; +esac + ## utils/devnag/ac/withenable.ac: configure.ac fragment for the TeX Live subdirectory utils/devnag/ ## configure options and TL libraries required for devnag # Check whether --enable-devnag was given. @@ -6424,6 +6446,10 @@ if test -x $srcdir/autosp/configure; then test "x$enable_autosp" = xyes && MAKE_SUBDIRS="$MAKE_SUBDIRS autosp" CONF_SUBDIRS="$CONF_SUBDIRS autosp" fi +if test -x $srcdir/axodraw2/configure; then + test "x$enable_axodraw2" = xyes && MAKE_SUBDIRS="$MAKE_SUBDIRS axodraw2" + CONF_SUBDIRS="$CONF_SUBDIRS axodraw2" +fi if test -x $srcdir/devnag/configure; then test "x$enable_devnag" = xyes && MAKE_SUBDIRS="$MAKE_SUBDIRS devnag" CONF_SUBDIRS="$CONF_SUBDIRS devnag" |