locale_h.m4 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. # locale_h.m4 serial 10
  2. dnl Copyright (C) 2007, 2009-2010 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.
  6. AC_DEFUN([gl_LOCALE_H],
  7. [
  8. dnl Use AC_REQUIRE here, so that the default behavior below is expanded
  9. dnl once only, before all statements that occur in other macros.
  10. AC_REQUIRE([gl_LOCALE_H_DEFAULTS])
  11. dnl Persuade glibc <locale.h> to define locale_t.
  12. AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
  13. dnl If <stddef.h> is replaced, then <locale.h> must also be replaced.
  14. AC_REQUIRE([gl_STDDEF_H])
  15. AC_CACHE_CHECK([whether locale.h conforms to POSIX:2001],
  16. [gl_cv_header_locale_h_posix2001],
  17. [AC_TRY_COMPILE([#include <locale.h>
  18. int x = LC_MESSAGES;], [],
  19. [gl_cv_header_locale_h_posix2001=yes],
  20. [gl_cv_header_locale_h_posix2001=no])])
  21. dnl Check for <xlocale.h>.
  22. AC_CHECK_HEADERS_ONCE([xlocale.h])
  23. if test $ac_cv_header_xlocale_h = yes; then
  24. HAVE_XLOCALE_H=1
  25. dnl Check whether use of locale_t requires inclusion of <xlocale.h>,
  26. dnl e.g. on MacOS X 10.5. If <locale.h> does not define locale_t by
  27. dnl itself, we assume that <xlocale.h> will do so.
  28. AC_CACHE_CHECK([whether locale.h defines locale_t],
  29. [gl_cv_header_locale_has_locale_t],
  30. [AC_TRY_COMPILE([#include <locale.h>
  31. locale_t x;], [],
  32. [gl_cv_header_locale_has_locale_t=yes],
  33. [gl_cv_header_locale_has_locale_t=no])
  34. ])
  35. if test $gl_cv_header_locale_has_locale_t = yes; then
  36. gl_cv_header_locale_h_needs_xlocale_h=no
  37. else
  38. gl_cv_header_locale_h_needs_xlocale_h=yes
  39. fi
  40. else
  41. HAVE_XLOCALE_H=0
  42. gl_cv_header_locale_h_needs_xlocale_h=no
  43. fi
  44. AC_SUBST([HAVE_XLOCALE_H])
  45. dnl <locale.h> is always overridden, because of GNULIB_POSIXCHECK.
  46. gl_CHECK_NEXT_HEADERS([locale.h])
  47. if test -n "$STDDEF_H" \
  48. || test $gl_cv_header_locale_h_posix2001 = no \
  49. || test $gl_cv_header_locale_h_needs_xlocale_h = yes; then
  50. gl_REPLACE_LOCALE_H
  51. fi
  52. dnl Check for declarations of anything we want to poison if the
  53. dnl corresponding gnulib module is not in use.
  54. gl_WARN_ON_USE_PREPARE([[#include <locale.h>
  55. /* Some systems provide declarations in a non-standard header. */
  56. #if HAVE_XLOCALE_H
  57. # include <xlocale.h>
  58. #endif
  59. ]], [duplocale])
  60. ])
  61. dnl Unconditionally enables the replacement of <locale.h>.
  62. AC_DEFUN([gl_REPLACE_LOCALE_H],
  63. [
  64. dnl This is a no-op, because <locale.h> is always overridden.
  65. :
  66. ])
  67. AC_DEFUN([gl_LOCALE_MODULE_INDICATOR],
  68. [
  69. dnl Use AC_REQUIRE here, so that the default settings are expanded once only.
  70. AC_REQUIRE([gl_LOCALE_H_DEFAULTS])
  71. gl_MODULE_INDICATOR_SET_VARIABLE([$1])
  72. dnl Define it also as a C macro, for the benefit of the unit tests.
  73. gl_MODULE_INDICATOR_FOR_TESTS([$1])
  74. ])
  75. AC_DEFUN([gl_LOCALE_H_DEFAULTS],
  76. [
  77. GNULIB_DUPLOCALE=0; AC_SUBST([GNULIB_DUPLOCALE])
  78. dnl Assume proper GNU behavior unless another module says otherwise.
  79. HAVE_DUPLOCALE=1; AC_SUBST([HAVE_DUPLOCALE])
  80. REPLACE_DUPLOCALE=0; AC_SUBST([REPLACE_DUPLOCALE])
  81. ])