From e2a3911b478c1555886c09e2e3796a70b6863332 Mon Sep 17 00:00:00 2001 From: Jeffrey Stedfast Date: Tue, 30 Mar 2004 05:11:58 +0000 Subject: imap4 makefile generation/etc svn path=/trunk/; revision=25239 --- configure.in | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/configure.in b/configure.in index 2824f29bf6..e17b8852f4 100644 --- a/configure.in +++ b/configure.in @@ -366,6 +366,18 @@ else fi AM_CONDITIONAL(ENABLE_IMAPP, test x$enable_imapp = xyes) +dnl ************************************************** +dnl New IMAP code support. +dnl ************************************************** +AC_ARG_ENABLE(imap4, +[ --enable-imap4=[no/yes] Attempt to compile yet another, incomplete, very unsupported IMAPv4r1 implementation],,enable_imap4=no) +if test "x$enable_imap4" = "xyes"; then + AC_DEFINE(ENABLE_IMAP4,1,[Really don't try this at home]) + msg_imap4=yes +else + msg_imap4=no +fi +AM_CONDITIONAL(ENABLE_IMAP4, test x$enable_imap4 = xyes) dnl ************************************************** dnl * Posix thread support @@ -1308,6 +1320,7 @@ camel/providers/Makefile camel/providers/groupwise/Makefile camel/providers/imap/Makefile camel/providers/imapp/Makefile +camel/providers/imap4/Makefile camel/providers/local/Makefile camel/providers/nntp/Makefile camel/providers/pop3/Makefile -- cgit