]> git.eshelyaron.com Git - emacs.git/commitdiff
Only check for m17n-flt if HAVE_LIBOTF.
authorAndreas Schwab <schwab@suse.de>
Sun, 12 Oct 2008 12:47:22 +0000 (12:47 +0000)
committerAndreas Schwab <schwab@suse.de>
Sun, 12 Oct 2008 12:47:22 +0000 (12:47 +0000)
ChangeLog
configure
configure.in

index bab931331aa207f872aea8d093e548892f8de740..aaa023442fb932c31f2fdeb981f0162ba453e800 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2008-10-12  Andreas Schwab  <schwab@suse.de>
+
+       * configure.in: Only check for m17n-flt if HAVE_LIBOTF.
+
 2008-08-28  Adrian Robert  <Adrian.B.Robert@gmail.com>
 
        * configure.in: Report USE_TOOLKIT_SCROLLBARS as such (not mentioning
index 072df70e6a2be359ca00603904c41c22688c0bb3..9995b710e0871dd5bc426e6e8cbd1ea10167599e 100755 (executable)
--- a/configure
+++ b/configure
@@ -13181,7 +13181,8 @@ _ACEOF
 fi
 
 HAVE_M17N_FLT=no
-if test "${with_m17n_flt}" != "no"; then
+if test "${HAVE_LIBOTF}" = yes; then
+  if test "${with_m17n_flt}" != "no"; then
 
   succeeded=no
 
@@ -13276,12 +13277,13 @@ echo "${ECHO_T}no" >&6; }
      HAVE_M17N_FLT=no
   fi
 
-  if test "$HAVE_M17N_FLT" = "yes"; then
+    if test "$HAVE_M17N_FLT" = "yes"; then
 
 cat >>confdefs.h <<\_ACEOF
 #define HAVE_M17N_FLT 1
 _ACEOF
 
+    fi
   fi
 fi
 
@@ -18746,13 +18748,11 @@ _ACEOF
 cat confdefs.h >>conftest.$ac_ext
 cat >>conftest.$ac_ext <<_ACEOF
 /* end confdefs.h.  */
-#include <sys/types.h> /* for off_t */
-     #include <stdio.h>
+#include <stdio.h>
 int
 main ()
 {
-int (*fp) (FILE *, off_t, int) = fseeko;
-     return fseeko (stdin, 0, 0) && fp (stdin, 0, 0);
+return fseeko (stdin, 0, 0) && (fseeko) (stdin, 0, 0);
   ;
   return 0;
 }
@@ -18792,13 +18792,11 @@ cat confdefs.h >>conftest.$ac_ext
 cat >>conftest.$ac_ext <<_ACEOF
 /* end confdefs.h.  */
 #define _LARGEFILE_SOURCE 1
-#include <sys/types.h> /* for off_t */
-     #include <stdio.h>
+#include <stdio.h>
 int
 main ()
 {
-int (*fp) (FILE *, off_t, int) = fseeko;
-     return fseeko (stdin, 0, 0) && fp (stdin, 0, 0);
+return fseeko (stdin, 0, 0) && (fseeko) (stdin, 0, 0);
   ;
   return 0;
 }
index ead577f5246f27f9107ae1ef85be1290b63c5d02..0807fb9f02c5ee56e132b5b806be8c45e7911585 100644 (file)
@@ -1876,10 +1876,12 @@ dnl Does the new font backend require it, or can it work without it?
 fi
 
 HAVE_M17N_FLT=no
-if test "${with_m17n_flt}" != "no"; 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 using libm17n-flt.])
+if test "${HAVE_LIBOTF}" = yes; then
+  if test "${with_m17n_flt}" != "no"; 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 using libm17n-flt.])
+    fi
   fi
 fi