Blame m4/codeset.m4

Packit 8f7830
# codeset.m4 serial 5 (gettext-0.18.2)
Packit 8f7830
dnl Copyright (C) 2000-2002, 2006, 2008-2012 Free Software Foundation, Inc.
Packit 8f7830
dnl This file is free software; the Free Software Foundation
Packit 8f7830
dnl gives unlimited permission to copy and/or distribute it,
Packit 8f7830
dnl with or without modifications, as long as this notice is preserved.
Packit 8f7830
Packit 8f7830
dnl From Bruno Haible.
Packit 8f7830
Packit 8f7830
AC_DEFUN([AM_LANGINFO_CODESET],
Packit 8f7830
[
Packit 8f7830
  AC_CACHE_CHECK([for nl_langinfo and CODESET], [am_cv_langinfo_codeset],
Packit 8f7830
    [AC_LINK_IFELSE(
Packit 8f7830
       [AC_LANG_PROGRAM(
Packit 8f7830
          [[#include <langinfo.h>]],
Packit 8f7830
          [[char* cs = nl_langinfo(CODESET); return !cs;]])],
Packit 8f7830
       [am_cv_langinfo_codeset=yes],
Packit 8f7830
       [am_cv_langinfo_codeset=no])
Packit 8f7830
    ])
Packit 8f7830
  if test $am_cv_langinfo_codeset = yes; then
Packit 8f7830
    AC_DEFINE([HAVE_LANGINFO_CODESET], [1],
Packit 8f7830
      [Define if you have <langinfo.h> and nl_langinfo(CODESET).])
Packit 8f7830
  fi
Packit 8f7830
])