diff options
author | abs <abs@pkgsrc.org> | 2007-10-15 11:59:49 +0000 |
---|---|---|
committer | abs <abs@pkgsrc.org> | 2007-10-15 11:59:49 +0000 |
commit | 39ece3bb6ea39088798861b61f5d9d8ebcf5025d (patch) | |
tree | 0f1aec9b352c53eacbe07e124e191ddebac2300a /x11 | |
parent | 738c52cf3403a45d1ca58e9f601ee939266ee502 (diff) | |
download | pkgsrc-39ece3bb6ea39088798861b61f5d9d8ebcf5025d.tar.gz |
Update to qt3-libs-3.3.8nb6: Explicitly pass inet6 setting to configure - from Yakovetsky Vladimir
Diffstat (limited to 'x11')
-rw-r--r-- | x11/qt3-libs/Makefile | 4 | ||||
-rw-r--r-- | x11/qt3-libs/Makefile.common | 9 |
2 files changed, 10 insertions, 3 deletions
diff --git a/x11/qt3-libs/Makefile b/x11/qt3-libs/Makefile index 6d7a812c658..be904200203 100644 --- a/x11/qt3-libs/Makefile +++ b/x11/qt3-libs/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.67 2007/09/15 12:04:01 tron Exp $ +# $NetBSD: Makefile,v 1.68 2007/10/15 11:59:49 abs Exp $ PKGNAME= qt3-libs-${QTVERSION} -PKGREVISION= 5 +PKGREVISION= 6 MAINTAINER= adam@NetBSD.org COMMENT= C++ X GUI toolkit diff --git a/x11/qt3-libs/Makefile.common b/x11/qt3-libs/Makefile.common index 72736729e4c..cc8514c862d 100644 --- a/x11/qt3-libs/Makefile.common +++ b/x11/qt3-libs/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.67 2007/07/02 20:06:43 tnn Exp $ +# $NetBSD: Makefile.common,v 1.68 2007/10/15 11:59:49 abs Exp $ DISTNAME= qt-x11-free-${QTVERSION} CATEGORIES= x11 @@ -79,9 +79,16 @@ CONFIGURE_ARGS+= -no-xinerama PKG_OPTIONS_VAR= PKG_OPTIONS.qt3 PKG_SUPPORTED_OPTIONS= cups debug +PKG_SUPPORTED_OPTIONS+= inet6 .include "../../mk/bsd.options.mk" +.if !empty(PKG_OPTIONS:Minet6) +CONFIGURE_ARGS+= -ipv6 +.else +CONFIGURE_ARGS+= -no-ipv6 +.endif + .if !empty(PKG_OPTIONS:Mcups) . include "../../print/cups/buildlink3.mk" CONFIGURE_ARGS+= -cups |