Use AC_CACHE_CHECK for the nl_langinfo check. (#304517, Lőrinczy
authorMatthias Clasen <mclasen@redhat.com>
Thu, 28 Dec 2006 04:41:23 +0000 (04:41 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Thu, 28 Dec 2006 04:41:23 +0000 (04:41 +0000)
2006-12-27  Matthias Clasen  <mclasen@redhat.com>

        * configure.in: Use AC_CACHE_CHECK for the nl_langinfo
        check.  (#304517, Lőrinczy Zsigmond)

ChangeLog
configure.in

index 53df5ee..1124095 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2006-12-27  Matthias Clasen  <mclasen@redhat.com>
+
+       * configure.in: Use AC_CACHE_CHECK for the nl_langinfo
+       check.  (#304517, Lőrinczy Zsigmond)
+
 2006-12-27  Tor Lillqvist  <tml@novell.com>
 
        * glib/gwin32.h
index 74bd36a..c857a5f 100644 (file)
@@ -1013,15 +1013,14 @@ if test x$glib_cv_sane_realloc = xyes; then
 fi
 
 dnl Check for nl_langinfo and CODESET
-
-AC_MSG_CHECKING([for nl_langinfo (CODESET)])
-AC_TRY_COMPILE([#include <langinfo.h>],
-       [char *codeset = nl_langinfo (CODESET);],
-   AC_DEFINE(HAVE_CODESET,1,[Have nl_langinfo (CODESET)])
-   have_codeset=yes,
-   have_codeset=no)
-AC_MSG_RESULT($have_codeset)
-
+AC_CACHE_CHECK([for nl_langinfo (CODESET)],glib_cv_langinfo_codeset,[
+        AC_TRY_COMPILE([#include <langinfo.h>],
+                [char *codeset = nl_langinfo (CODESET);],
+                [glib_cv_langinfo_codeset=yes],
+                [glib_cv_langinfo_codeset=no])])
+if test x$glib_cv_langinfo_codeset = xyes; then
+  AC_DEFINE(HAVE_CODESET,1,[Have nl_langinfo (CODESET)])
+fi
 
 dnl ****************************************
 dnl *** posix_memalign                   ***