diff options
author | Jonathan Kew <jfkthame@googlemail.com> | 2008-05-27 22:24:14 +0000 |
---|---|---|
committer | Jonathan Kew <jfkthame@googlemail.com> | 2008-05-27 22:24:14 +0000 |
commit | d5c3f205f25e8b04d850cb727ce8ed6824665af4 (patch) | |
tree | 23ae52950b776cc5cc369daef93c7720a6262196 | |
parent | ef30edc54dcdd7d1ce2cdcb185e0fdef1807d9f1 (diff) |
don't look for fontconfig on Mac OS X
git-svn-id: svn://tug.org/texlive/trunk@8367 c570f23f-e606-0410-a88d-b1316a301751
-rw-r--r-- | Build/source/texk/xdvipdfmx/configure.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Build/source/texk/xdvipdfmx/configure.in b/Build/source/texk/xdvipdfmx/configure.in index 7a62cbbb901..179e2823b6c 100644 --- a/Build/source/texk/xdvipdfmx/configure.in +++ b/Build/source/texk/xdvipdfmx/configure.in @@ -106,8 +106,10 @@ AC_CHECK_SIZEOF(long) dnl Check for additonal libraries. -CHO_HAS_LIBFONTCONFIG JFK_HAS_APP_SERVICES +if test "x$have_app_services" = xno; then + CHO_HAS_LIBFONTCONFIG +fi # check that it's valid to define XETEX and possibly XETEX_MAC if test "x$have_app_services" = xyes; then |