Blame gettext-tools/gnulib-m4/localename.m4

Packit Bot 06c835
# localename.m4 serial 2
Packit Bot 06c835
dnl Copyright (C) 2007, 2009-2015 Free Software Foundation, Inc.
Packit Bot 06c835
dnl This file is free software; the Free Software Foundation
Packit Bot 06c835
dnl gives unlimited permission to copy and/or distribute it,
Packit Bot 06c835
dnl with or without modifications, as long as this notice is preserved.
Packit Bot 06c835
Packit Bot 06c835
AC_DEFUN([gl_LOCALENAME],
Packit Bot 06c835
[
Packit Bot 06c835
  AC_REQUIRE([gt_LC_MESSAGES])
Packit Bot 06c835
  AC_REQUIRE([gt_INTL_MACOSX])
Packit Bot 06c835
  AC_CHECK_FUNCS([setlocale uselocale])
Packit Bot 06c835
  dnl Solaris 12 provides getlocalename_l, while Illumos doesn't have
Packit Bot 06c835
  dnl it nor the equivalent.
Packit Bot 06c835
  if test $ac_cv_func_uselocale = yes; then
Packit Bot 06c835
    AC_CHECK_FUNCS([getlocalename_l])
Packit Bot 06c835
  fi
Packit Bot 06c835
])