Blame m4/codeset.m4

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