diff options
author | minskim <minskim@pkgsrc.org> | 2004-02-26 14:07:23 +0000 |
---|---|---|
committer | minskim <minskim@pkgsrc.org> | 2004-02-26 14:07:23 +0000 |
commit | 73e7e560d2b2a2060eee00878255a2c0d3964c8d (patch) | |
tree | 37c4f5285eb9c003e31df6511bcdee3eb9f6dd7a /mail/sylpheed-claws | |
parent | 7bd17ee9da8bc1ef78d9a9805cd043ed072e3cbf (diff) | |
download | pkgsrc-73e7e560d2b2a2060eee00878255a2c0d3964c8d.tar.gz |
Disable IPv6 explicitly if USE_INET6 is not set to YES. This is
needed because the default behavior of the configure script was
changed.
Diffstat (limited to 'mail/sylpheed-claws')
-rw-r--r-- | mail/sylpheed-claws/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/mail/sylpheed-claws/Makefile b/mail/sylpheed-claws/Makefile index 96396bf94fb..38d214a0e27 100644 --- a/mail/sylpheed-claws/Makefile +++ b/mail/sylpheed-claws/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.29 2004/02/14 18:26:28 jmmv Exp $ +# $NetBSD: Makefile,v 1.30 2004/02/26 14:07:23 minskim Exp $ # .include "Makefile.common" @@ -32,8 +32,10 @@ CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR} .include "../../mk/bsd.prefs.mk" BUILD_DEFS+= USE_INET6 USE_OPENLDAP -.if defined(USE_INET6) && ${USE_INET6} == YES +.if defined(USE_INET6) && !empty(USE_INET6:M[Yy][Ee][Ss]) CONFIGURE_ARGS+= --enable-ipv6 +.else +CONFIGURE_ARGS+= --disable-ipv6 .endif FACES_IS_INSTALLED!= ${PKG_INFO} -e faces || ${ECHO} |