pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/net/wget



Module Name:    pkgsrc
Committed By:   bsiegert
Date:           Sat Jul 28 12:29:20 UTC 2018

Modified Files:
        pkgsrc/net/wget: options.mk

Log Message:
Add a "psl" option (off by default) to build wget with PSL.

This improves privacy by restricting cookies to a well-known list of
public suffixes.

We can consider turning that option on by default in the future.

Fixes PR pkg/53459.


To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 pkgsrc/net/wget/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/net/wget/options.mk
diff -u pkgsrc/net/wget/options.mk:1.10 pkgsrc/net/wget/options.mk:1.11
--- pkgsrc/net/wget/options.mk:1.10     Tue Nov 14 09:51:13 2017
+++ pkgsrc/net/wget/options.mk  Sat Jul 28 12:29:20 2018
@@ -1,7 +1,7 @@
-# $NetBSD: options.mk,v 1.10 2017/11/14 09:51:13 leot Exp $
+# $NetBSD: options.mk,v 1.11 2018/07/28 12:29:20 bsiegert Exp $
 
 PKG_OPTIONS_VAR=       PKG_OPTIONS.wget
-PKG_SUPPORTED_OPTIONS= idn inet6
+PKG_SUPPORTED_OPTIONS= idn inet6 psl
 PKG_OPTIONS_REQUIRED_GROUPS=   ssl
 PKG_OPTIONS_GROUP.ssl= gnutls openssl
 PKG_SUGGESTED_OPTIONS= idn inet6 openssl
@@ -38,3 +38,13 @@ CONFIGURE_ARGS+=--with-ssl=gnutls
 .  include "../../security/openssl/buildlink3.mk"
 CONFIGURE_ARGS+=--with-ssl=openssl
 .endif
+
+###
+### Support Public Suffix List
+###
+.if !empty(PKG_OPTIONS:Mpsl)
+.  include "../../www/libpsl/buildlink3.mk"
+CONFIGURE_ARGS+=--with-libpsl
+.else
+CONFIGURE_ARGS+=--without-libpsl
+.endif



Home | Main Index | Thread Index | Old Index