From e88aafe4ca4779a73487925dea63e8b55dc5e251 Mon Sep 17 00:00:00 2001 From: Jonathan Kew Date: Wed, 26 Jul 2006 09:19:11 +0000 Subject: added teckit support to configure/make scripts git-svn-id: svn://tug.org/texlive/trunk@1919 c570f23f-e606-0410-a88d-b1316a301751 --- Build/source/libs/configure | 21 +++++++++++++++++++++ Build/source/libs/configure.in | 4 ++++ 2 files changed, 25 insertions(+) (limited to 'Build/source/libs') diff --git a/Build/source/libs/configure b/Build/source/libs/configure index b160afe3263..c441b160fee 100755 --- a/Build/source/libs/configure +++ b/Build/source/libs/configure @@ -3100,6 +3100,20 @@ fi +if test "$needs_teckit" = no; then + TECKITCPPFLAGS= + LDTECKIT= + TECKITDEP= +else + TECKITCPPFLAGS='-I$(TECKITSRCDIR)/source/Public-headers' + LDTECKIT='$(TECKITDIR)/lib/.libs/libTECkit.a' + TECKITDEP='$(TECKITDIR)/lib/.libs/libTECkit.a' +fi + + + + + # The following line helps, e.g. for ncurses which properly detects the # system's terminfo definitions if configured without explicit --prefix. @@ -3133,6 +3147,10 @@ if test "x$needs_icu" != xno && test "$using_system_icu" != yes; then ac_configure_args="$ac_configure_args --enable-static" subdirs="$subdirs icu-xetex" +fi +if test "x$needs_teckit" != xno; then + subdirs="$subdirs teckit" + fi if test "x$needs_pnglib" != xno && test "$using_system_pnglib" != yes; then @@ -3336,6 +3354,9 @@ s%@FREETYPE2DEP@%$FREETYPE2DEP%g s%@ICUCPPFLAGS@%$ICUCPPFLAGS%g s%@LDICU@%$LDICU%g s%@ICUDEP@%$ICUDEP%g +s%@TECKITCPPFLAGS@%$TECKITCPPFLAGS%g +s%@LDTECKIT@%$LDTECKIT%g +s%@TECKITDEP@%$TECKITDEP%g s%@subdirs@%$subdirs%g CEOF diff --git a/Build/source/libs/configure.in b/Build/source/libs/configure.in index 6b767a056d0..0344c31a1f3 100644 --- a/Build/source/libs/configure.in +++ b/Build/source/libs/configure.in @@ -28,6 +28,7 @@ sinclude(freetype2/withenable.ac) sinclude(freetype2/freetype2.ac) sinclude(icu-xetex/withenable.ac) sinclude(icu-xetex/icu-xetex.ac) +sinclude(teckit/teckit.ac) # The following line helps, e.g. for ncurses which properly detects the # system's terminfo definitions if configured without explicit --prefix. @@ -55,6 +56,9 @@ if test "x$needs_icu" != xno && test "$using_system_icu" != yes; then ac_configure_args="$ac_configure_args --enable-static" AC_CONFIG_SUBDIRS([icu-xetex]) fi +if test "x$needs_teckit" != xno; then + AC_CONFIG_SUBDIRS([teckit]) +fi if test "x$needs_pnglib" != xno && test "$using_system_pnglib" != yes; then KPSE_CONFIG_FILES([libpng/Makefile]) -- cgit v1.2.3