summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--configure.ac4
-rw-r--r--m4/envsep.m420
3 files changed, 5 insertions, 24 deletions
diff --git a/ChangeLog b/ChangeLog
index 9cc60e7a..4101590e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2009-11-21 Paolo Bonzini <bonzini@gnu.org>
+
+ * configure.ac: Remove AC_SEP.
+ * m4/envsep.m4: Remove.
+
2009-11-20 Paolo Bonzini <bonzini@gnu.org>
* configure.ac: Do not generate lib/posix/Makefile.
diff --git a/configure.ac b/configure.ac
index ba59a7e8..ee95d277 100644
--- a/configure.ac
+++ b/configure.ac
@@ -96,10 +96,6 @@ dnl DOS file name convention
dnl sets HAVE_DOS_FILE_NAMES
AC_DOSFILE
-dnl check for the environ separator
-dnl sets SEP
-AM_SEP
-
dnl some folks ask for this, that's fine by me
dnl hope they know what they're doing ...
dnl if glibc2 regex is not included
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)])