summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/configure
diff options
context:
space:
mode:
authorPeter Breitenlohner <peb@mppmu.mpg.de>2015-02-19 09:31:37 +0000
committerPeter Breitenlohner <peb@mppmu.mpg.de>2015-02-19 09:31:37 +0000
commitb3d5371919d86702e12560b756e016fa50d4f302 (patch)
treee3a2b1d0419dc23ccdfb1c7a5dba35ac8c3aff1a /Build/source/texk/web2c/configure
parentea8fb06b7354090b299af352efc12765a158b4e7 (diff)
Build system: Update a few M4 macros
git-svn-id: svn://tug.org/texlive/trunk@36322 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/web2c/configure')
-rwxr-xr-xBuild/source/texk/web2c/configure30
1 files changed, 7 insertions, 23 deletions
diff --git a/Build/source/texk/web2c/configure b/Build/source/texk/web2c/configure
index 6600a964776..c12fbbef9cb 100755
--- a/Build/source/texk/web2c/configure
+++ b/Build/source/texk/web2c/configure
@@ -1038,8 +1038,6 @@ with_system_poppler
with_system_xpdf
with_system_zziplib
with_system_teckit
-with_teckit_includes
-with_teckit_libdir
with_system_icu
with_system_graphite2
with_system_harfbuzz
@@ -1801,11 +1799,8 @@ Optional Packages:
xpdf library from TL (requires pkg-config)
--with-system-zziplib use installed zziplib headers and library (requires
pkg-config)
- --with-system-teckit use installed teckit headers and library
- --with-teckit-includes=DIR
- teckit headers installed in DIR
- --with-teckit-libdir=DIR
- teckit library installed in DIR
+ --with-system-teckit use installed teckit headers and library (requires
+ pkg-config)
--with-system-icu use installed ICU headers and libraries (requires
icu-config)
--with-system-graphite2 use installed graphite2 headers and library
@@ -24129,23 +24124,12 @@ fi
if test "${with_system_teckit+set}" = set; then :
withval=$with_system_teckit;
fi
-
-# Check whether --with-teckit-includes was given.
-if test "${with_teckit_includes+set}" = set; then :
- withval=$with_teckit_includes;
-fi
-
-# Check whether --with-teckit-libdir was given.
-if test "${with_teckit_libdir+set}" = set; then :
- withval=$with_teckit_libdir;
-fi
if test "x$with_system_teckit" = xyes; then
- if test "x$with_teckit_includes" != x && test "x$with_teckit_includes" != xyes; then
- TECKIT_INCLUDES="-I$with_teckit_includes"
-fi
-TECKIT_LIBS="-lTECkit"
-if test "x$with_teckit_libdir" != x && test "x$with_teckit_libdir" != xyes; then
- TECKIT_LIBS="-L$with_teckit_libdir $TECKIT_LIBS"
+ if $PKG_CONFIG teckit; then
+ TECKIT_INCLUDES=`$PKG_CONFIG teckit --cflags`
+ TECKIT_LIBS=`$PKG_CONFIG teckit --libs`
+elif test "x$need_teckit:$with_system_teckit" = xyes:yes; then
+ as_fn_error $? "did not find teckit" "$LINENO" 5
fi
else
TECKIT_INCLUDES="-I$kpse_BLD/libs/teckit/include"