summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorThien-Thi Nguyen <ttn@gnuvola.org>2008-02-02 20:46:40 +0000
committerThien-Thi Nguyen <ttn@gnuvola.org>2008-02-02 20:46:40 +0000
commit435f8bc50e4868a107f87606c97696c5ae10bc18 (patch)
tree3bf3aaeb91a306ff06c022454dc0bb048c8887a3 /configure.in
parent5285e5a626b4ff9800497a3c0f083976cb22ca96 (diff)
downloademacs-435f8bc50e4868a107f87606c97696c5ae10bc18.tar.gz
Arrange for innards to jive w/ summary for libotf and m17n-flt.
* configure.in: For libotf and m17n-flt checks, set shell vars HAVE_LIBOTF and HAVE_M17N_FLT instead of pkg_check_libotf and pkg_check_m17n_flt, respectively, for the sake of the summary output. * configure: Regenerated.
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in12
1 files changed, 6 insertions, 6 deletions
diff --git a/configure.in b/configure.in
index c0e5a77dd36..cded82a68d3 100644
--- a/configure.in
+++ b/configure.in
@@ -2083,9 +2083,9 @@ if test "${HAVE_FREETYPE}" = "yes"; then
if test "X${with_pkg_config_prog}" != X; then
PKG_CONFIG="${with_pkg_config_prog}"
fi
- PKG_CHECK_MODULES(LIBOTF, libotf, pkg_check_libotf=yes,
- pkg_check_libotf=no)
- if test "$pkg_check_libotf" = "yes"; then
+ PKG_CHECK_MODULES(LIBOTF, libotf, HAVE_LIBOTF=yes,
+ HAVE_LIBOTF=no)
+ if test "$HAVE_LIBOTF" = "yes"; then
AC_DEFINE(HAVE_LIBOTF, 1,
[Define to 1 if you have libotf library.])
fi
@@ -2099,9 +2099,9 @@ if test "${with_m17n_flt}" != "no"; then
PKG_CONFIG="${with_pkg_config_prog}"
fi
dnl Checks for libraries.
- PKG_CHECK_MODULES(M17N_FLT, m17n-flt, pkg_check_m17n_flt=yes,
- pkg_check_m17n_flt=no)
- if test "$pkg_check_m17n_flt" = "yes"; then
+ PKG_CHECK_MODULES(M17N_FLT, m17n-flt, HAVE_M17N_FLT=yes,
+ HAVE_M17N_FLT=no)
+ if test "$HAVE_M17N_FLT" = "yes"; then
AC_DEFINE(HAVE_M17N_FLT, 1,
[Define to 1 if you have m17n-flt library.])
fi