aboutsummaryrefslogtreecommitdiffstats
path: root/mail/cyrus-imapd24
diff options
context:
space:
mode:
authorume <ume@FreeBSD.org>2006-02-03 15:24:12 +0800
committerume <ume@FreeBSD.org>2006-02-03 15:24:12 +0800
commit62e44de51db96ce56fb62b3d42d5864b760c5d58 (patch)
treea69cad2c9002536077947058fb4b9df5aa98bee3 /mail/cyrus-imapd24
parent8584a0af59e4e3b1297a8f3829e3d5c74e704697 (diff)
downloadfreebsd-ports-graphics-62e44de51db96ce56fb62b3d42d5864b760c5d58.tar.gz
freebsd-ports-graphics-62e44de51db96ce56fb62b3d42d5864b760c5d58.tar.zst
freebsd-ports-graphics-62e44de51db96ce56fb62b3d42d5864b760c5d58.zip
The idled support could not be enabled. The configure option for
idled was changed by 2.3.x. The WITH_IDLE_POLL was removed, and the WITH_ILDE_IDLED was changed to WITH_IDLED. Reported by: Forrest Aldrich <forrie__at__forrie.com>
Diffstat (limited to 'mail/cyrus-imapd24')
-rw-r--r--mail/cyrus-imapd24/Makefile16
1 files changed, 3 insertions, 13 deletions
diff --git a/mail/cyrus-imapd24/Makefile b/mail/cyrus-imapd24/Makefile
index 6b88245b489..065e2ab2b7c 100644
--- a/mail/cyrus-imapd24/Makefile
+++ b/mail/cyrus-imapd24/Makefile
@@ -79,8 +79,7 @@ BROKEN= "WITH_BDB_VER must be 3, 4, 41, 42 or 43"
.endif
OPTIONS+= DRAC "Enable DRAC support" off
-OPTIONS+= IDLE_IDLED "Enable IMAP IDLE method idled" off \
- IDLE_POLL "Enable IMAP IDLE method idle-polling" on
+OPTIONS+= IDLED "Enable IMAP idled support" off
OPTIONS+= LDAP_PTLOADER "Enable LDAP ptloader" off
OPTIONS+= LISTEXT "Enable IMAP List extensions" off
OPTIONS+= MURDER "Enable IMAP Murder support" off
@@ -149,18 +148,9 @@ PLIST_SUB+= MURDER=""
PLIST_SUB+= MURDER="@comment "
.endif
-.if defined(WITH_IDLE_IDLED) && defined(WITH_IDLE_POLL)
-BROKEN= "Multiple IDLE methods selected. Run 'make config' again!"
-.endif
-.if defined(WITH_IDLE_IDLED)
-CONFIGURE_ARGS+=--with-idle=idled
+.if defined(WITH_IDLED)
+CONFIGURE_ARGS+=--enable-idled
PLIST_SUB+= IDLED=""
-.elif defined(WITH_IDLE_POLL)
-CONFIGURE_ARGS+=--with-idle=poll
-PLIST_SUB+= IDLED="@comment "
-.elif defined(WITHOUT_IDLE_IDLED) && defined(WITHOUT_IDLE_POLL)
-CONFIGURE_ARGS+=--with-idle=no
-PLIST_SUB+= IDLED="@comment "
.else
PLIST_SUB+= IDLED="@comment "
.endif