diff options
author | Jonathan Kew <jfkthame@googlemail.com> | 2006-07-26 09:19:11 +0000 |
---|---|---|
committer | Jonathan Kew <jfkthame@googlemail.com> | 2006-07-26 09:19:11 +0000 |
commit | e88aafe4ca4779a73487925dea63e8b55dc5e251 (patch) | |
tree | 919e3241814583611d022541e94867b2d9a51789 /Build/source/libs/configure | |
parent | 303b10f969384002e95d0fbe559a0151f601b811 (diff) |
added teckit support to configure/make scripts
git-svn-id: svn://tug.org/texlive/trunk@1919 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/libs/configure')
-rwxr-xr-x | Build/source/libs/configure | 21 |
1 files changed, 21 insertions, 0 deletions
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. @@ -3134,6 +3148,10 @@ if test "x$needs_icu" != xno && test "$using_system_icu" != yes; then 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 ac_config_files="$ac_config_files libpng/Makefile" @@ -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 |