Blame gettext-runtime/m4/codeset.m4

Packit Bot 06c835
# codeset.m4 serial 5 (gettext-0.18.2)
Packit Bot 06c835
dnl Copyright (C) 2000-2002, 2006, 2008-2014 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
dnl From Bruno Haible.
Packit Bot 06c835
Packit Bot 06c835
AC_DEFUN([AM_LANGINFO_CODESET],
Packit Bot 06c835
[
Packit Bot 06c835
  AC_CACHE_CHECK([for nl_langinfo and CODESET], [am_cv_langinfo_codeset],
Packit Bot 06c835
    [AC_LINK_IFELSE(
Packit Bot 06c835
       [AC_LANG_PROGRAM(
Packit Bot 06c835
          [[#include <langinfo.h>]],
Packit Bot 06c835
          [[char* cs = nl_langinfo(CODESET); return !cs;]])],
Packit Bot 06c835
       [am_cv_langinfo_codeset=yes],
Packit Bot 06c835
       [am_cv_langinfo_codeset=no])
Packit Bot 06c835
    ])
Packit Bot 06c835
  if test $am_cv_langinfo_codeset = yes; then
Packit Bot 06c835
    AC_DEFINE([HAVE_LANGINFO_CODESET], [1],
Packit Bot 06c835
      [Define if you have <langinfo.h> and nl_langinfo(CODESET).])
Packit Bot 06c835
  fi
Packit Bot 06c835
])