Blame m4/codeset.m4

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