diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2012-02-28 10:26:33 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2012-02-28 10:26:33 +0000 |
commit | 1b8e5eced9dd1bc21ca5fc07dbfc113e0a41cf64 (patch) | |
tree | a00792efbcbd5bd89823273c52a0e8600afa5849 /Build | |
parent | 1381c0539f9f63055ec644da887ecaadadca284f (diff) |
xdvipdfmx: Do not use libpaper for TeX Live builds
git-svn-id: svn://tug.org/texlive/trunk@25532 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build')
-rw-r--r-- | Build/source/texk/xdvipdfmx/ChangeLog.TL | 4 | ||||
-rwxr-xr-x | Build/source/texk/xdvipdfmx/configure | 2 | ||||
-rw-r--r-- | Build/source/texk/xdvipdfmx/configure.ac | 4 |
3 files changed, 7 insertions, 3 deletions
diff --git a/Build/source/texk/xdvipdfmx/ChangeLog.TL b/Build/source/texk/xdvipdfmx/ChangeLog.TL index 8195d130ad1..81ba0d4a503 100644 --- a/Build/source/texk/xdvipdfmx/ChangeLog.TL +++ b/Build/source/texk/xdvipdfmx/ChangeLog.TL @@ -1,6 +1,10 @@ ChangeLog.TL: TeX Live (TL) changes for xdvipdfmx ================================================= +2012-02-28 Peter Breitenlohner <peb@mppmu.mpg.de> + + * configure.ac: Fixed a typo (no libpaper for TeX Live builds). + 2011-12-06 Peter Breitenlohner <peb@mppmu.mpg.de> * data/Makefile.am: diff --git a/Build/source/texk/xdvipdfmx/configure b/Build/source/texk/xdvipdfmx/configure index 76bdd1bd959..ecbb16a6c32 100755 --- a/Build/source/texk/xdvipdfmx/configure +++ b/Build/source/texk/xdvipdfmx/configure @@ -15593,7 +15593,7 @@ echo timestamp >config.force fi -if test "x$enable_texlive_build" != xyes || test ! -d $srdir/../kpathsea; then +if test "x$enable_texlive_build" != xyes || test ! -d $srcdir/../kpathsea; then _cppflags=$CPPFLAGS _ldflags=$LDFLAGS # Check whether --with-paper was given. diff --git a/Build/source/texk/xdvipdfmx/configure.ac b/Build/source/texk/xdvipdfmx/configure.ac index 69143becdbf..a7d61f572ca 100644 --- a/Build/source/texk/xdvipdfmx/configure.ac +++ b/Build/source/texk/xdvipdfmx/configure.ac @@ -1,6 +1,6 @@ dnl Process this file with autoconf to produce a configure script. dnl -dnl Copyright (C) 2009-2011 Peter Breitenlohner <tex-live@tug.org> +dnl Copyright (C) 2009-2012 Peter Breitenlohner <tex-live@tug.org> dnl dnl This file is free software; the copyright holder dnl gives unlimited permission to copy and/or distribute it, @@ -78,7 +78,7 @@ fi dnl Check for additional libraries. -if test "x$enable_texlive_build" != xyes || test ! -d $srdir/../kpathsea; then +if test "x$enable_texlive_build" != xyes || test ! -d $srcdir/../kpathsea; then CHO_CHECK_LIBPAPER fi |