localeconv.m4 615 B

1234567891011121314151617181920212223
  1. # localeconv.m4 serial 1
  2. dnl Copyright (C) 2012-2017 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_LOCALECONV],
  7. [
  8. AC_REQUIRE([gl_LOCALE_H_DEFAULTS])
  9. AC_REQUIRE([gl_LOCALE_H])
  10. if test $REPLACE_STRUCT_LCONV = 1; then
  11. REPLACE_LOCALECONV=1
  12. fi
  13. ])
  14. # Prerequisites of lib/localeconv.c.
  15. AC_DEFUN([gl_PREREQ_LOCALECONV],
  16. [
  17. AC_CHECK_MEMBERS([struct lconv.decimal_point], [], [],
  18. [[#include <locale.h>]])
  19. ])