changeset 21193:3c939a0f1e9b

indent
author Jim Meyering <jim@meyering.net>
date Sun, 27 Sep 1998 16:40:09 +0000
parents b5fbf3b37e5e
children 60b6af1b05a3
files m4/glibc.m4
diffstat 1 files changed, 27 insertions(+), 15 deletions(-) [+]
line wrap: on
line diff
--- a/m4/glibc.m4	Sun Sep 27 16:39:53 1998 +0000
+++ b/m4/glibc.m4	Sun Sep 27 16:40:09 1998 +0000
@@ -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)
+      ]
+    )
+  ]
+)