summaryrefslogtreecommitdiff
path: root/m4
diff options
context:
space:
mode:
authorPaolo Bonzini <bonzini@gnu.org>2009-11-21 01:32:13 +0100
committerPaolo Bonzini <bonzini@gnu.org>2009-11-21 01:32:13 +0100
commit2be211fa1373489432eab66101d95cd43bcd067a (patch)
treede34f82d0e39f7daa1cf27a1911a686ed4273bf7 /m4
parent0b3a8bac4103eab2fc95a4201421fcbb521ceadb (diff)
downloadgrep-2be211fa1373489432eab66101d95cd43bcd067a.tar.gz
another unused autoconf macro
* configure.ac: Remove AC_SEP. * m4/envsep.m4: Remove.
Diffstat (limited to 'm4')
-rw-r--r--m4/envsep.m420
1 files changed, 0 insertions, 20 deletions
diff --git a/m4/envsep.m4 b/m4/envsep.m4
deleted file mode 100644
index 7f053dd4..00000000
--- a/m4/envsep.m4
+++ /dev/null
@@ -1,20 +0,0 @@
-# Check to see the separator for the environment variables
-# and set SEP to ";" or default ":"
-
-dnl AM_SEP()
-dnl SEP
-AC_DEFUN([AM_SEP],
-[AC_REQUIRE([AC_CYGWIN])
-AC_REQUIRE([AC_MINGW32])
-AC_REQUIRE([AC_DJGPP])
-AC_MSG_CHECKING([for environ variable separator])
-AC_CACHE_VAL(ac_cv_sep,
-[if test "$CYGWIN" = yes || test "$MINGW32" = yes || test "$DJ_GPP" = yes ; then
- ac_cv_sep=yes
-else
- ac_cv_sep=no
-fi])
-SEP=":"
-test x"$ac_cv_sep" = xyes && SEP=";"
-AC_MSG_RESULT(${SEP})
-AC_SUBST(SEP)])