diff options
author | Jim Meyering <jim@meyering.net> | 1998-09-27 16:40:09 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1998-09-27 16:40:09 +0000 |
commit | fbe115a9e450670f717cbc7a5313f67107094c02 (patch) | |
tree | d3092c62dc4e56a25e2a5d7c445eddb0c5c4067b | |
parent | 3f17755a743e8632751f076522b5cb11fe2a1ad3 (diff) | |
download | coreutils-fbe115a9e450670f717cbc7a5313f67107094c02.tar.xz |
indent
-rw-r--r-- | m4/glibc.m4 | 42 |
1 files changed, 27 insertions, 15 deletions
diff --git a/m4/glibc.m4 b/m4/glibc.m4 index 22336e2f0..877ce47fd 100644 --- a/m4/glibc.m4 +++ b/m4/glibc.m4 @@ -1,23 +1,35 @@ -#serial 1 +#serial 2 dnl From Gordon Matzigkeit. dnl Test for the GNU C Library. dnl FIXME: this should migrate into libit. AC_DEFUN(AM_GLIBC, -[AC_CACHE_CHECK(whether we are using the GNU C Library, - ac_cv_gnu_library, -[AC_EGREP_CPP([Thanks for using GNU], -[#include <features.h> + [ + AC_CACHE_CHECK(whether we are using the GNU C Library, + ac_cv_gnu_library, + [AC_EGREP_CPP([Thanks for using GNU], + [ +#include <features.h> #ifdef __GNU_LIBRARY__ -Thanks for using GNU -#endif], - ac_cv_gnu_library=yes, ac_cv_gnu_library=no)]) -AC_CACHE_CHECK(for version 2 of the GNU C Library, - ac_cv_glibc, -[AC_EGREP_CPP([Thanks for using GNU too], -[#include <features.h> + Thanks for using GNU +#endif + ], + ac_cv_gnu_library=yes, + ac_cv_gnu_library=no) + ] + ) + AC_CACHE_CHECK(for version 2 of the GNU C Library, + ac_cv_glibc, + [AC_EGREP_CPP([Thanks for using GNU too], + [ +#include <features.h> #ifdef __GLIBC__ -Thanks for using GNU too -#endif], - ac_cv_glibc=yes, ac_cv_glibc=no)])])dnl + Thanks for using GNU too +#endif + ], + ac_cv_glibc=yes, ac_cv_glibc=no) + ] + ) + ] +) |