Blame m4/localename.m4

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