Bugfix in compatibility for address.
[gedcom-parse.git] / utf8 / acinclude.m4
1 dnl $Id$
2 dnl $Name$
3
4 dnl From codeset.m4 (in libcharset):
5 #serial 2
6
7 dnl From Bruno Haible.
8
9 AC_DEFUN(jm_LANGINFO_CODESET,
10 [
11   AC_CHECK_HEADERS(langinfo.h)
12   AC_CHECK_FUNCS(nl_langinfo)
13
14   AC_CACHE_CHECK([for nl_langinfo and CODESET], jm_cv_langinfo_codeset,
15     [AC_TRY_LINK([#include <langinfo.h>],
16       [char* cs = nl_langinfo(CODESET);],
17       jm_cv_langinfo_codeset=yes,
18       jm_cv_langinfo_codeset=no)
19     ])
20   if test $jm_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 ])
25
26 dnl From glibc21.m4 (in libcharset):
27 #serial 2
28
29 # Test for the GNU C Library, version 2.1 or newer.
30 # From Bruno Haible.
31
32 AC_DEFUN(jm_GLIBC21,
33   [
34     AC_CACHE_CHECK(whether we are using the GNU C Library 2.1 or newer,
35       ac_cv_gnu_library_2_1,
36       [AC_EGREP_CPP([Lucky GNU user],
37         [
38 #include <features.h>
39 #ifdef __GNU_LIBRARY__
40  #if (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 1) || (__GLIBC__ > 2)
41   Lucky GNU user
42  #endif
43 #endif
44         ],
45         ac_cv_gnu_library_2_1=yes,
46         ac_cv_gnu_library_2_1=no)
47       ]
48     )
49     AC_SUBST(GLIBC21)
50     GLIBC21="$ac_cv_gnu_library_2_1"
51   ]
52 )