summaryrefslogtreecommitdiff
path: root/m4
diff options
context:
space:
mode:
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)])