nl_langinfo.m4 806 B

12345678910111213141516171819202122232425
  1. # nl_langinfo.m4 serial 3
  2. dnl Copyright (C) 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_FUNC_NL_LANGINFO],
  7. [
  8. AC_REQUIRE([gl_LANGINFO_H_DEFAULTS])
  9. AC_REQUIRE([gl_LANGINFO_H])
  10. AC_CHECK_FUNCS_ONCE([nl_langinfo])
  11. if test $ac_cv_func_nl_langinfo = yes; then
  12. if test $HAVE_LANGINFO_CODESET = 1 && test $HAVE_LANGINFO_ERA = 1; then
  13. :
  14. else
  15. REPLACE_NL_LANGINFO=1
  16. AC_DEFINE([REPLACE_NL_LANGINFO], [1],
  17. [Define if nl_langinfo exists but is overridden by gnulib.])
  18. AC_LIBOBJ([nl_langinfo])
  19. fi
  20. else
  21. HAVE_NL_LANGINFO=0
  22. AC_LIBOBJ([nl_langinfo])
  23. fi
  24. ])