summaryrefslogtreecommitdiff
path: root/m4
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2004-05-01 16:39:48 +0000
committerJim Meyering <jim@meyering.net>2004-05-01 16:39:48 +0000
commit1a7c6d7ac2e3f2757f2857131f2c29efc1cae18e (patch)
tree79233df31b21eadc1152529dcb98c1ccefe681a3 /m4
parent8d4ea07eb8b9bd539f604183641a0f9281cbac96 (diff)
downloadcoreutils-1a7c6d7ac2e3f2757f2857131f2c29efc1cae18e.tar.xz
Remove unused file.
Diffstat (limited to 'm4')
-rw-r--r--m4/glibc.m435
1 files changed, 0 insertions, 35 deletions
diff --git a/m4/glibc.m4 b/m4/glibc.m4
deleted file mode 100644
index 687405768..000000000
--- a/m4/glibc.m4
+++ /dev/null
@@ -1,35 +0,0 @@
-#serial 3
-
-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>
-#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>
-#ifdef __GLIBC__
- Thanks for using GNU too
-#endif
- ],
- ac_cv_glibc=yes, ac_cv_glibc=no)
- ]
- )
- ]
-)