Blame m4/codeset.m4

Packit 032894
# codeset.m4 serial AM1 (gettext-0.10.40)
Packit 032894
dnl Copyright (C) 2000-2002 Free Software Foundation, Inc.
Packit 032894
dnl This file is free software, distributed under the terms of the GNU
Packit 032894
dnl General Public License.  As a special exception to the GNU General
Packit 032894
dnl Public License, this file may be distributed as part of a program
Packit 032894
dnl that contains a configuration script generated by Autoconf, under
Packit 032894
dnl the same distribution terms as the rest of that program.
Packit 032894
Packit 032894
dnl From Bruno Haible.
Packit 032894
Packit 032894
AC_DEFUN([AM_LANGINFO_CODESET],
Packit 032894
[
Packit 032894
  AC_CACHE_CHECK([for nl_langinfo and CODESET], am_cv_langinfo_codeset,
Packit 032894
    [AC_TRY_LINK([#include <langinfo.h>],
Packit 032894
      [char* cs = nl_langinfo(CODESET);],
Packit 032894
      am_cv_langinfo_codeset=yes,
Packit 032894
      am_cv_langinfo_codeset=no)
Packit 032894
    ])
Packit 032894
  if test $am_cv_langinfo_codeset = yes; then
Packit 032894
    AC_DEFINE(HAVE_LANGINFO_CODESET, 1,
Packit 032894
      [Define if you have <langinfo.h> and nl_langinfo(CODESET).])
Packit 032894
  fi
Packit 032894
])