diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2013-08-06 12:39:49 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2013-08-06 12:39:49 +0000 |
commit | be2f62b1c99597ad47dde539964c3a4a3b5cf773 (patch) | |
tree | a18554b899589412522eea3340658b8bcca05a89 /Build/source/utils/configure | |
parent | f231a5d58023c8f1319480643976f01b3b8797d3 (diff) |
Recover texk/dvipdfm-x@31034 (essentially dvipdfmx and xdvipdfmx from branch-2013)
as texk/dvipdf-x.
Not built by default, only used to analyze various problems
git-svn-id: svn://tug.org/texlive/trunk@31364 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/utils/configure')
-rwxr-xr-x | Build/source/utils/configure | 58 |
1 files changed, 57 insertions, 1 deletions
diff --git a/Build/source/utils/configure b/Build/source/utils/configure index 28bd2e567e3..3d1e052fd74 100755 --- a/Build/source/utils/configure +++ b/Build/source/utils/configure @@ -761,6 +761,9 @@ enable_dtl enable_dvi2tty enable_dvidvi enable_dviljk +enable_dvipdf_x +enable_dvipdf +enable_xdvipdf enable_dvipdfm_x enable_dvipdfmx enable_xdvipdfmx @@ -1553,6 +1556,9 @@ Optional Features: --disable-dvi2tty do not build the dvi2tty package --disable-dvidvi do not build the dvidvi package --disable-dviljk do not build the dviljk package + --enable-dvipdf-x build the dvipdf-x package + --disable-dvipdf do not build the dvipdf program + --disable-xdvipdf do not build the xdvipdf program --disable-dvipdfm-x do not build the dvipdfm-x package --disable-dvipdfmx do not build the dvipdfmx program --disable-xdvipdfmx do not build the xdvipdfmx program @@ -4168,6 +4174,56 @@ test "x$enable_dviljk" = xno || { } +## texk/dvipdf-x/ac/withenable.ac: configure.ac fragment for the TeX Live subdirectory texk/dvipdf-x/ +## configure options and TL libraries required for dvipdf-x +# Check whether --enable-dvipdf-x was given. +if test "${enable_dvipdf_x+set}" = set; then : + enableval=$enable_dvipdf_x; +fi +case $enable_dvipdf_x in #( + yes|no) : + ;; #( + *) : + + enable_dvipdf_x=no + { $as_echo "$as_me:${as_lineno-$LINENO}: Assuming \`--enable-dvipdf-x=$enable_dvipdf_x'" >&5 +$as_echo "$as_me: Assuming \`--enable-dvipdf-x=$enable_dvipdf_x'" >&6;} + ac_configure_args="$ac_configure_args '--enable-dvipdf-x=$enable_dvipdf_x'" + ;; +esac + +test "x$enable_dvipdf_x" = xno || { + need_kpathsea=yes + need_libpng=yes +} + +## Define configure options for dvipdf-x. +# Check whether --enable-dvipdf was given. +if test "${enable_dvipdf+set}" = set; then : + enableval=$enable_dvipdf; +fi + +case enable_dvipdf in #( + yes | no) : + ;; #( + *) : + enable_dvipdf=yes ;; +esac +# Check whether --enable-xdvipdf was given. +if test "${enable_xdvipdf+set}" = set; then : + enableval=$enable_xdvipdf; +fi + +case enable_xdvipdf in #( + yes | no) : + ;; #( + *) : + enable_xdvipdf=yes ;; +esac + +test "x$enable_dvipdf_x:$enable_xdvipdf" = xyes:yes && need_freetype2=yes + + ## texk/dvipdfm-x/ac/withenable.ac: configure.ac fragment for the TeX Live subdirectory texk/dvipdfm-x/ ## configure options and TL libraries required for dvipdfm-x # Check whether --enable-dvipdfm-x was given. @@ -4215,7 +4271,7 @@ case enable_xdvipdfmx in #( enable_xdvipdfmx=yes ;; esac -test "x$enable_dvipdfm_x:$enable_xdviodfm" = xyes:yes && need_freetype2=yes +test "x$enable_dvipdfm_x:$enable_xdvipdfmx" = xyes:yes && need_freetype2=yes ## texk/dvipng/ac/withenable.ac: configure.ac fragment for the TeX Live subdirectory texk/dvipng/ |