pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/www/privoxy
Module Name: pkgsrc
Committed By: gdt
Date: Wed Mar 21 23:18:09 UTC 2018
Modified Files:
pkgsrc/www/privoxy: Makefile
Added Files:
pkgsrc/www/privoxy: options.mk
Log Message:
privoxy: Add default-enabled inet6 option
Add an option inet6, to use IPv6. Enabled by default, matching the
previous behavior.
To generate a diff of this commit:
cvs rdiff -u -r1.59 -r1.60 pkgsrc/www/privoxy/Makefile
cvs rdiff -u -r0 -r1.1 pkgsrc/www/privoxy/options.mk
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/www/privoxy/Makefile
diff -u pkgsrc/www/privoxy/Makefile:1.59 pkgsrc/www/privoxy/Makefile:1.60
--- pkgsrc/www/privoxy/Makefile:1.59 Sun Jan 7 15:08:50 2018
+++ pkgsrc/www/privoxy/Makefile Wed Mar 21 23:18:09 2018
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.59 2018/01/07 15:08:50 leot Exp $
+# $NetBSD: Makefile,v 1.60 2018/03/21 23:18:09 gdt Exp $
#
DISTNAME= ${PKGNAME_NOREV}-stable-src
@@ -64,6 +64,7 @@ SUBST_FILES.paths= config
SUBST_SED.paths+= -e 's,@PKG_SYSCONFDIR@,${PKG_SYSCONFDIR},g'
SUBST_STAGE.paths= post-patch
+.include "options.mk"
pre-configure:
cd ${WRKSRC} && autoheader && autoconf
Added files:
Index: pkgsrc/www/privoxy/options.mk
diff -u /dev/null pkgsrc/www/privoxy/options.mk:1.1
--- /dev/null Wed Mar 21 23:18:09 2018
+++ pkgsrc/www/privoxy/options.mk Wed Mar 21 23:18:09 2018
@@ -0,0 +1,14 @@
+# $NetBSD: options.mk,v 1.1 2018/03/21 23:18:09 gdt Exp $
+#
+
+PKG_OPTIONS_VAR= PKG_OPTIONS.privoxy
+PKG_SUPPORTED_OPTIONS+= inet6
+PKG_SUGGESTED_OPTIONS+= inet6
+
+.include "../../mk/bsd.options.mk"
+
+.if !empty(PKG_OPTIONS:Minet6)
+CONFIGURE_ARGS+= --enable-ipv6-support
+.else
+CONFIGURE_ARGS+= --disable-ipv6-support
+.endif
Home |
Main Index |
Thread Index |
Old Index