aboutsummaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2001-10-09 00:19:53 +0800
committerDan Winship <danw@src.gnome.org>2001-10-09 00:19:53 +0800
commit502d7fb2f2cd203e25e5a390ac8d797cba12a68d (patch)
treea63905832b4f9022552443e6aeaa2e342f5993b5 /configure.in
parent7d5b83061f8ef709f47a0f7020cf38cd1d9fe197 (diff)
downloadgsoc2013-evolution-502d7fb2f2cd203e25e5a390ac8d797cba12a68d.tar
gsoc2013-evolution-502d7fb2f2cd203e25e5a390ac8d797cba12a68d.tar.gz
gsoc2013-evolution-502d7fb2f2cd203e25e5a390ac8d797cba12a68d.tar.bz2
gsoc2013-evolution-502d7fb2f2cd203e25e5a390ac8d797cba12a68d.tar.lz
gsoc2013-evolution-502d7fb2f2cd203e25e5a390ac8d797cba12a68d.tar.xz
gsoc2013-evolution-502d7fb2f2cd203e25e5a390ac8d797cba12a68d.tar.zst
gsoc2013-evolution-502d7fb2f2cd203e25e5a390ac8d797cba12a68d.zip
Remove movemail check, since it's not relevant any more.
* configure.in: Remove movemail check, since it's not relevant any more. svn path=/trunk/; revision=13499
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in31
1 files changed, 0 insertions, 31 deletions
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 ******************