summaryrefslogtreecommitdiff
path: root/m4
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2003-08-09 14:05:19 +0000
committerJim Meyering <jim@meyering.net>2003-08-09 14:05:19 +0000
commita6a72740c6c5dce5181f7319f8192d0b6220c0d4 (patch)
treeaf0dc937dae0504f40eeef05173b5704d0e0353c /m4
parent58d174529da5f4f01c4f97a702ed47344d3287fc (diff)
downloadcoreutils-a6a72740c6c5dce5181f7319f8192d0b6220c0d4.tar.xz
superceded by extensions.m4 from gnulib
Diffstat (limited to 'm4')
-rw-r--r--m4/gnu-source.m417
1 files changed, 0 insertions, 17 deletions
diff --git a/m4/gnu-source.m4 b/m4/gnu-source.m4
deleted file mode 100644
index d8332f4cb..000000000
--- a/m4/gnu-source.m4
+++ /dev/null
@@ -1,17 +0,0 @@
-# AC_GNU_SOURCE
-# --------------
-AC_DEFUN([AC_GNU_SOURCE],
-[AH_VERBATIM([_GNU_SOURCE],
-[/* Enable GNU extensions on systems that have them. */
-#ifndef _GNU_SOURCE
-# undef _GNU_SOURCE
-#endif
-/* Enable many GNU extensions on Solaris. */
-#ifndef __EXTENSIONS__
-# undef __EXTENSIONS__
-#endif])dnl
-AC_BEFORE([$0], [AC_COMPILE_IFELSE])dnl
-AC_BEFORE([$0], [AC_RUN_IFELSE])dnl
-AC_DEFINE([_GNU_SOURCE])
-AC_DEFINE([__EXTENSIONS__])
-])