1 # langinfo_h.m4 serial 7
2 dnl Copyright (C) 2009-2013 Free Software Foundation, Inc.
3 dnl This file is free software; the Free Software Foundation
4 dnl gives unlimited permission to copy and/or distribute it,
5 dnl with or without modifications, as long as this notice is preserved.
7 AC_DEFUN([gl_LANGINFO_H],
9 AC_REQUIRE([gl_LANGINFO_H_DEFAULTS])
11 dnl Persuade glibc-2.0.6 <langinfo.h> to define CODESET.
12 AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
14 dnl <langinfo.h> is always overridden, because of GNULIB_POSIXCHECK.
15 gl_CHECK_NEXT_HEADERS([langinfo.h])
17 dnl Determine whether <langinfo.h> exists. It is missing on mingw and BeOS.
18 HAVE_LANGINFO_CODESET=0
19 HAVE_LANGINFO_T_FMT_AMPM=0
21 HAVE_LANGINFO_YESEXPR=0
22 AC_CHECK_HEADERS_ONCE([langinfo.h])
23 if test $ac_cv_header_langinfo_h = yes; then
25 dnl Determine what <langinfo.h> defines. CODESET and ERA etc. are missing
26 dnl on OpenBSD 3.8. T_FMT_AMPM and YESEXPR, NOEXPR are missing on IRIX 5.3.
27 AC_CACHE_CHECK([whether langinfo.h defines CODESET],
28 [gl_cv_header_langinfo_codeset],
30 [AC_LANG_PROGRAM([[#include <langinfo.h>
33 [gl_cv_header_langinfo_codeset=yes],
34 [gl_cv_header_langinfo_codeset=no])
36 if test $gl_cv_header_langinfo_codeset = yes; then
37 HAVE_LANGINFO_CODESET=1
39 AC_CACHE_CHECK([whether langinfo.h defines T_FMT_AMPM],
40 [gl_cv_header_langinfo_t_fmt_ampm],
42 [AC_LANG_PROGRAM([[#include <langinfo.h>
45 [gl_cv_header_langinfo_t_fmt_ampm=yes],
46 [gl_cv_header_langinfo_t_fmt_ampm=no])
48 if test $gl_cv_header_langinfo_t_fmt_ampm = yes; then
49 HAVE_LANGINFO_T_FMT_AMPM=1
51 AC_CACHE_CHECK([whether langinfo.h defines ERA],
52 [gl_cv_header_langinfo_era],
54 [AC_LANG_PROGRAM([[#include <langinfo.h>
57 [gl_cv_header_langinfo_era=yes],
58 [gl_cv_header_langinfo_era=no])
60 if test $gl_cv_header_langinfo_era = yes; then
63 AC_CACHE_CHECK([whether langinfo.h defines YESEXPR],
64 [gl_cv_header_langinfo_yesexpr],
66 [AC_LANG_PROGRAM([[#include <langinfo.h>
69 [gl_cv_header_langinfo_yesexpr=yes],
70 [gl_cv_header_langinfo_yesexpr=no])
72 if test $gl_cv_header_langinfo_yesexpr = yes; then
73 HAVE_LANGINFO_YESEXPR=1
78 AC_SUBST([HAVE_LANGINFO_H])
79 AC_SUBST([HAVE_LANGINFO_CODESET])
80 AC_SUBST([HAVE_LANGINFO_T_FMT_AMPM])
81 AC_SUBST([HAVE_LANGINFO_ERA])
82 AC_SUBST([HAVE_LANGINFO_YESEXPR])
84 dnl Check for declarations of anything we want to poison if the
85 dnl corresponding gnulib module is not in use.
86 gl_WARN_ON_USE_PREPARE([[#include <langinfo.h>
90 AC_DEFUN([gl_LANGINFO_MODULE_INDICATOR],
92 dnl Use AC_REQUIRE here, so that the default settings are expanded once only.
93 AC_REQUIRE([gl_LANGINFO_H_DEFAULTS])
94 gl_MODULE_INDICATOR_SET_VARIABLE([$1])
95 dnl Define it also as a C macro, for the benefit of the unit tests.
96 gl_MODULE_INDICATOR_FOR_TESTS([$1])
99 AC_DEFUN([gl_LANGINFO_H_DEFAULTS],
101 GNULIB_NL_LANGINFO=0; AC_SUBST([GNULIB_NL_LANGINFO])
102 dnl Assume proper GNU behavior unless another module says otherwise.
103 HAVE_NL_LANGINFO=1; AC_SUBST([HAVE_NL_LANGINFO])
104 REPLACE_NL_LANGINFO=0; AC_SUBST([REPLACE_NL_LANGINFO])