Changes the location of bison.simple after running bison on local
[findutils.git] / m4 / glibc.m4
bloba5314c1820c15c5fbc465377fcbd6787e66252a0
1 #serial 2
3 dnl From Gordon Matzigkeit.
4 dnl Test for the GNU C Library.
5 dnl FIXME: this should migrate into libit.
7 AC_DEFUN(AM_GLIBC,
8   [
9     AC_CACHE_CHECK(whether we are using the GNU C Library,
10       ac_cv_gnu_library,
11       [AC_EGREP_CPP([Thanks for using GNU],
12         [
13 #include <features.h>
14 #ifdef __GNU_LIBRARY__
15   Thanks for using GNU
16 #endif
17         ],
18         ac_cv_gnu_library=yes,
19         ac_cv_gnu_library=no)
20       ]
21     )
22     AC_CACHE_CHECK(for version 2 of the GNU C Library,
23       ac_cv_glibc,
24       [AC_EGREP_CPP([Thanks for using GNU too],
25         [
26 #include <features.h>
27 #ifdef __GLIBC__
28   Thanks for using GNU too
29 #endif
30         ],
31         ac_cv_glibc=yes, ac_cv_glibc=no)
32       ]
33     )
34   ]