From: Jim Meyering Date: Sun, 27 Sep 1998 16:40:09 +0000 (+0000) Subject: indent X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=996f8e3a7a1d0de6e8237959ca8446df03346928;p=pspp indent --- diff --git a/m4/glibc.m4 b/m4/glibc.m4 index 22336e2f03..877ce47fde 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 + [ + AC_CACHE_CHECK(whether we are using the GNU C Library, + ac_cv_gnu_library, + [AC_EGREP_CPP([Thanks for using GNU], + [ +#include #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 + 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 #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) + ] + ) + ] +)