diff options
author | Jonathan Kew <jfkthame@googlemail.com> | 2007-11-21 12:32:59 +0000 |
---|---|---|
committer | Jonathan Kew <jfkthame@googlemail.com> | 2007-11-21 12:32:59 +0000 |
commit | 4b8d7001923647636c75949b21bea08220c444fa (patch) | |
tree | 75c036396e688923dd50e5e3cfd9a07d578b8c84 /Build/source/libs/configure | |
parent | 17aeed8e129118bdb3b7eb0ef3a18241dcda40eb (diff) |
configure updates for new xetex and libs
git-svn-id: svn://tug.org/texlive/trunk@5538 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/libs/configure')
-rwxr-xr-x | Build/source/libs/configure | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/Build/source/libs/configure b/Build/source/libs/configure index 71520737351..3c9b48a0df7 100755 --- a/Build/source/libs/configure +++ b/Build/source/libs/configure @@ -3115,6 +3115,22 @@ fi +# we don't currently support use of an installed graphite lib + +if test "$needs_graphite" = no; then + GRAPHITECPPFLAGS= + LDGRAPHITE= + GRAPHITEDEP= +else + GRAPHITECPPFLAGS='-I$(GRAPHITESRCDIR)/include' + LDGRAPHITE='$(GRAPHITEDIR)/src/.libs/libgraphite.a' + GRAPHITEDEP='$(GRAPHITEDIR)/src/.libs/libgraphite.a' +fi + + + + + # The following line helps, e.g. for ncurses which properly detects the # system's terminfo definitions if configured without explicit --prefix. @@ -3149,6 +3165,10 @@ if test "x$needs_icu" != xno && test "$using_system_icu" != yes; then subdirs="$subdirs icu-xetex" fi +if test "x$needs_graphite_engine" != xno; then + subdirs="$subdirs graphite-engine" + +fi if test "x$needs_pnglib" != xno && test "$using_system_pnglib" != yes; then ac_config_files="$ac_config_files libpng/Makefile" @@ -3361,6 +3381,9 @@ s%@ICUDEP@%$ICUDEP%g s%@TECKITCPPFLAGS@%$TECKITCPPFLAGS%g s%@LDTECKIT@%$LDTECKIT%g s%@TECKITDEP@%$TECKITDEP%g +s%@GRAPHITECPPFLAGS@%$GRAPHITECPPFLAGS%g +s%@LDGRAPHITE@%$LDGRAPHITE%g +s%@GRAPHITEDEP@%$GRAPHITEDEP%g s%@subdirs@%$subdirs%g CEOF |