view m4/localename.m4 @ 40057:b06060465f09

maint: Run 'make update-copyright'
author Paul Eggert <eggert@cs.ucla.edu>
date Tue, 01 Jan 2019 00:25:11 +0100
parents 9912dc28baf1
children f3ca098a0aac
line wrap: on
line source

# localename.m4 serial 5
dnl Copyright (C) 2007, 2009-2019 Free Software Foundation, Inc.
dnl This file is free software; the Free Software Foundation
dnl gives unlimited permission to copy and/or distribute it,
dnl with or without modifications, as long as this notice is preserved.

AC_DEFUN([gl_LOCALENAME],
[
  AC_REQUIRE([gl_LOCALE_H_DEFAULTS])
  AC_REQUIRE([gt_LC_MESSAGES])
  AC_REQUIRE([gt_INTL_THREAD_LOCALE_NAME])
  AC_REQUIRE([gt_INTL_MACOSX])
  AC_CHECK_HEADERS_ONCE([langinfo.h])
  AC_CHECK_FUNCS([setlocale])
  AC_CHECK_FUNCS_ONCE([newlocale duplocale freelocale])
  if test $ac_cv_func_newlocale != yes; then
    HAVE_NEWLOCALE=0
  fi
  if test $ac_cv_func_duplocale != yes; then
    HAVE_DUPLOCALE=0
  fi
  if test $ac_cv_func_freelocale != yes; then
    HAVE_FREELOCALE=0
  fi
  if test $gt_nameless_locales = yes; then
    REPLACE_NEWLOCALE=1
    REPLACE_DUPLOCALE=1
    REPLACE_FREELOCALE=1
  fi
])