The R Project SVN R

Rev

Rev 29050 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 29050 Rev 80906
Line 1... Line 1...
1
# codeset.m4 serial AM1 (gettext-0.10.40)
1
# codeset.m4 serial 5 (gettext-0.18.2)
2
dnl Copyright (C) 2000-2002 Free Software Foundation, Inc.
2
dnl Copyright (C) 2000-2002, 2006, 2008-2014, 2016, 2019-2021 Free Software
3
dnl This file is free software, distributed under the terms of the GNU
-
 
4
dnl General Public License.  As a special exception to the GNU General
3
dnl Foundation, Inc.
5
dnl Public License, this file may be distributed as part of a program
4
dnl This file is free software; the Free Software Foundation
6
dnl that contains a configuration script generated by Autoconf, under
5
dnl gives unlimited permission to copy and/or distribute it,
7
dnl the same distribution terms as the rest of that program.
6
dnl with or without modifications, as long as this notice is preserved.
8
 
7
 
9
dnl From Bruno Haible.
8
dnl From Bruno Haible.
10
 
9
 
11
AC_DEFUN([AM_LANGINFO_CODESET],
10
AC_DEFUN([AM_LANGINFO_CODESET],
12
[
11
[
13
  AC_CACHE_CHECK([for nl_langinfo and CODESET], am_cv_langinfo_codeset,
12
  AC_CACHE_CHECK([for nl_langinfo and CODESET], [am_cv_langinfo_codeset],
-
 
13
    [AC_LINK_IFELSE(
-
 
14
       [AC_LANG_PROGRAM(
14
    [AC_TRY_LINK([#include <langinfo.h>],
15
          [[#include <langinfo.h>]],
15
      [char* cs = nl_langinfo(CODESET);],
16
          [[char* cs = nl_langinfo(CODESET); return !cs;]])],
16
      am_cv_langinfo_codeset=yes,
17
       [am_cv_langinfo_codeset=yes],
17
      am_cv_langinfo_codeset=no)
18
       [am_cv_langinfo_codeset=no])
18
    ])
19
    ])
19
  if test $am_cv_langinfo_codeset = yes; then
20
  if test $am_cv_langinfo_codeset = yes; then
20
    AC_DEFINE(HAVE_LANGINFO_CODESET, 1,
21
    AC_DEFINE([HAVE_LANGINFO_CODESET], [1],
21
      [Define if you have <langinfo.h> and nl_langinfo(CODESET).])
22
      [Define if you have <langinfo.h> and nl_langinfo(CODESET).])
22
  fi
23
  fi
23
])
24
])