diff options
author | miwi <miwi@FreeBSD.org> | 2007-12-15 04:59:53 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2007-12-15 04:59:53 +0800 |
commit | 65651ecaa1ed1a63373793f0ba322e41b1ac998a (patch) | |
tree | dc08607dd92bb245ab5d122703ef77d1067c05f6 /mail | |
parent | 189450377e2a34d44c7db9f097514e6831fc9fe2 (diff) | |
download | freebsd-ports-graphics-65651ecaa1ed1a63373793f0ba322e41b1ac998a.tar.gz freebsd-ports-graphics-65651ecaa1ed1a63373793f0ba322e41b1ac998a.tar.zst freebsd-ports-graphics-65651ecaa1ed1a63373793f0ba322e41b1ac998a.zip |
- Fix IPV6 Knob (ipv6 is disable for compilation but enable in config.)
PR: 118669
Submitted by: Éric JACQUOT <ejacquot@delfic.org>
Approved by: maintainer (implicit)
Diffstat (limited to 'mail')
-rw-r--r-- | mail/claws-mail/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mail/claws-mail/Makefile b/mail/claws-mail/Makefile index c2e0356a8d8..cc6fe4c088f 100644 --- a/mail/claws-mail/Makefile +++ b/mail/claws-mail/Makefile @@ -7,6 +7,7 @@ PORTNAME= claws-mail PORTVERSION= 3.0.2 +PORTREVISION= 1 CATEGORIES= mail news ipv6 MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= sylpheed-claws @@ -166,7 +167,7 @@ PLIST_SUB+= DILLO="@comment " CONFIGURE_ARGS+= --disable-dillo-viewer-plugin .endif -.if defined(WITHOUT_IPV6) || defined(WITH_ALL) +.if !defined(WITHOUT_IPV6) || defined(WITH_ALL) CONFIGURE_ARGS+= --enable-ipv6 .else CONFIGURE_ARGS+= --disable-ipv6 |