diff options
author | Dan Winship <danw@src.gnome.org> | 2001-10-09 00:19:53 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2001-10-09 00:19:53 +0800 |
commit | 502d7fb2f2cd203e25e5a390ac8d797cba12a68d (patch) | |
tree | a63905832b4f9022552443e6aeaa2e342f5993b5 | |
parent | 7d5b83061f8ef709f47a0f7020cf38cd1d9fe197 (diff) | |
download | gsoc2013-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
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | acconfig.h | 1 | ||||
-rw-r--r-- | configure.in | 31 |
3 files changed, 5 insertions, 32 deletions
@@ -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 ****************** |