diff options
author | oliver <oliver@FreeBSD.org> | 2005-02-05 07:44:16 +0800 |
---|---|---|
committer | oliver <oliver@FreeBSD.org> | 2005-02-05 07:44:16 +0800 |
commit | 8309de76e1b6ecd7d54686dc5c6cb0dcea530a65 (patch) | |
tree | 233a4ba9b9de64f1fb59536ad152b69e31b4d68a /mail | |
parent | 00d08f9e31750f85c2780859e9ccdb333cade853 (diff) | |
download | freebsd-ports-gnome-8309de76e1b6ecd7d54686dc5c6cb0dcea530a65.tar.gz freebsd-ports-gnome-8309de76e1b6ecd7d54686dc5c6cb0dcea530a65.tar.zst freebsd-ports-gnome-8309de76e1b6ecd7d54686dc5c6cb0dcea530a65.zip |
Add WITHOUT_IPV6 knob
Submitted by: "Gustavo A. Baratto" <gbaratto@superb.net>
Diffstat (limited to 'mail')
-rw-r--r-- | mail/courier-imap/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/mail/courier-imap/Makefile b/mail/courier-imap/Makefile index f7e2f7b96a26..a401c7bb1833 100644 --- a/mail/courier-imap/Makefile +++ b/mail/courier-imap/Makefile @@ -46,6 +46,7 @@ CONFIGURE_ENV= CFLAGS="${CPPFLAGS} -I${LOCALBASE}/include" \ # WITH_DRAC: Build in DRAC support # WITH_TRASHQUOTA: Include deleted mails in the quota # WITH_GDBM: Use gdbm files instead of bdb +# WITHOUT_IPV6 Don't build ipv6 support # CONFDIR?= ${PREFIX}/etc/${PORTNAME} @@ -86,6 +87,10 @@ PLIST_SUB+= OPENSSLFLAG= PLIST_SUB+= OPENSSLFLAG="@comment " .endif +.if defined(WITHOUT_IPV6) +CONFIGURE_ARGS+=--without-ipv6 +.endif + .if defined(WITH_TRASHQUOTA) CONFIGURE_ARGS+=--with-trashquota .endif |