VirtualBox

source: kBuild/trunk/src/grep/m4/codeset.m4

Last change on this file was 3529, checked in by bird, 3 years ago

Imported grep 3.7 from grep-3.7.tar.gz (sha256: c22b0cf2d4f6bbe599c902387e8058990e1eee99aef333a203829e5fd3dbb342), applying minimal auto-props.

  • Property svn:eol-style set to LF
File size: 853 bytes
Line 
1# codeset.m4 serial 5 (gettext-0.18.2)
2dnl Copyright (C) 2000-2002, 2006, 2008-2014, 2016, 2019-2021 Free Software
3dnl Foundation, Inc.
4dnl This file is free software; the Free Software Foundation
5dnl gives unlimited permission to copy and/or distribute it,
6dnl with or without modifications, as long as this notice is preserved.
7
8dnl From Bruno Haible.
9
10AC_DEFUN([AM_LANGINFO_CODESET],
11[
12 AC_CACHE_CHECK([for nl_langinfo and CODESET], [am_cv_langinfo_codeset],
13 [AC_LINK_IFELSE(
14 [AC_LANG_PROGRAM(
15 [[#include <langinfo.h>]],
16 [[char* cs = nl_langinfo(CODESET); return !cs;]])],
17 [am_cv_langinfo_codeset=yes],
18 [am_cv_langinfo_codeset=no])
19 ])
20 if test $am_cv_langinfo_codeset = yes; then
21 AC_DEFINE([HAVE_LANGINFO_CODESET], [1],
22 [Define if you have <langinfo.h> and nl_langinfo(CODESET).])
23 fi
24])
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette