aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--acconfig.h1
-rw-r--r--configure.in31
3 files changed, 5 insertions, 32 deletions
diff --git a/ChangeLog b/ChangeLog
index 08d927f7e9..9358fe5271 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2001-10-07 Dan Winship <danw@ximian.com>
+
+ * configure.in: Remove movemail check, since it's not relevant any
+ more.
+
2001-10-05 Larry Ewing <lewing@ximian.com>
* configure.in: Bumped required version of gtkhtml to 0.14.99.1
diff --git a/acconfig.h b/acconfig.h
index 9777d3b846..fbdbbe8f76 100644
--- a/acconfig.h
+++ b/acconfig.h
@@ -18,7 +18,6 @@
#undef HAVE_NSS
#undef HAVE_SSL
#undef HAVE_OPENSSL
-#undef MOVEMAIL_PATH
#undef USE_DOT
#undef USE_FCNTL
#undef USE_FLOCK
diff --git a/configure.in b/configure.in
index 1f89f440fd..6d29b989b2 100644
--- a/configure.in
+++ b/configure.in
@@ -1015,37 +1015,6 @@ fi
AM_CONDITIONAL(ENABLE_GTK_DOC, test x$enable_gtk_doc = xyes)
-dnl ********
-dnl movemail
-dnl ********
-AC_ARG_WITH(movemail, [ --with-movemail=PATH Path to a movemail binary])
-AC_MSG_CHECKING(for movemail)
-if test x$with_movemail = xyes -o x$with_movemail = x; then
- with_movemail=no
-fi
-if test x$with_movemail != xno; then
- AC_DEFINE_UNQUOTED(MOVEMAIL_PATH, "$with_movemail")
- AC_MSG_RESULT($with_movemail)
-else
- emacs_exec_dir=`emacs --batch --eval '(message exec-directory)' 2>&1`
- case $emacs_exec_dir in
- /*) if test -x $emacs_exec_dir/movemail; then
- if test -u $emacs_exec_dir/movemail -o -g $emacs_exec_dir/movemail; then
- AC_MSG_RESULT($emacs_exec_dir/movemail)
- AC_DEFINE_UNQUOTED(MOVEMAIL_PATH, "$emacs_exec_dir/movemail")
- else
- AC_MSG_RESULT($emacs_exec_dir/movemail... not set-id: ignored)
- fi
- else
- AC_MSG_RESULT(no)
- fi
- ;;
- *)
- AC_MSG_RESULT(no)
- ;;
- esac
-fi
-
dnl ******************
dnl Sub-version number
dnl ******************