summaryrefslogtreecommitdiff
path: root/mail/cyrus-imapd24
diff options
context:
space:
mode:
authorHajimu UMEMOTO <ume@FreeBSD.org>2006-02-03 07:24:12 +0000
committerHajimu UMEMOTO <ume@FreeBSD.org>2006-02-03 07:24:12 +0000
commit717a5a8cc2da6934041dafa6fc0ffcb2b7fcdf27 (patch)
treec67c2daf4268279836aa4076e501cde424f0b84d /mail/cyrus-imapd24
parent- Do more correct method, to show what we need sysutils/fusefs-libs > 2.4 (diff)
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>
Notes
Notes: svn path=/head/; revision=155115
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 6b88245b489d..065e2ab2b7c8 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