diff options
author | Thien-Thi Nguyen <ttn@gnuvola.org> | 2008-02-02 20:46:40 +0000 |
---|---|---|
committer | Thien-Thi Nguyen <ttn@gnuvola.org> | 2008-02-02 20:46:40 +0000 |
commit | 435f8bc50e4868a107f87606c97696c5ae10bc18 (patch) | |
tree | 3bf3aaeb91a306ff06c022454dc0bb048c8887a3 /configure | |
parent | 5285e5a626b4ff9800497a3c0f083976cb22ca96 (diff) | |
download | emacs-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')
-rwxr-xr-x | configure | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/configure b/configure index 9708c4e44a5..84369d0c041 100755 --- a/configure +++ b/configure @@ -13042,7 +13042,7 @@ fi if test "$PKG_CONFIG" = "no" ; then - pkg_check_libotf=no + HAVE_LIBOTF=no else PKG_CONFIG_MIN_VERSION=0.9.0 if $PKG_CONFIG --atleast-pkgconfig-version $PKG_CONFIG_MIN_VERSION; then @@ -13085,12 +13085,12 @@ echo "${ECHO_T}no" >&6; } fi if test $succeeded = yes; then - pkg_check_libotf=yes + HAVE_LIBOTF=yes else - pkg_check_libotf=no + HAVE_LIBOTF=no fi - if test "$pkg_check_libotf" = "yes"; then + if test "$HAVE_LIBOTF" = "yes"; then cat >>confdefs.h <<\_ACEOF #define HAVE_LIBOTF 1 @@ -13151,7 +13151,7 @@ fi if test "$PKG_CONFIG" = "no" ; then - pkg_check_m17n_flt=no + HAVE_M17N_FLT=no else PKG_CONFIG_MIN_VERSION=0.9.0 if $PKG_CONFIG --atleast-pkgconfig-version $PKG_CONFIG_MIN_VERSION; then @@ -13194,12 +13194,12 @@ echo "${ECHO_T}no" >&6; } fi if test $succeeded = yes; then - pkg_check_m17n_flt=yes + HAVE_M17N_FLT=yes else - pkg_check_m17n_flt=no + HAVE_M17N_FLT=no fi - if test "$pkg_check_m17n_flt" = "yes"; then + if test "$HAVE_M17N_FLT" = "yes"; then cat >>confdefs.h <<\_ACEOF #define HAVE_M17N_FLT 1 |