forked from NetBSD/pkgsrc
-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
pkgsrc changes: - Add options.mk in order to be able to select between `gnutls' and `openssl'. However, no defaults are changed: `openssl' is considered experimental by upstream at the moment. - Remove dependency to mozilla-rootcerts (default gnutls/openssl certificates are now honored instead, should be part of Makefile,-r1.41 commit, sorry!) Changes: 2.60.3 ====== - Fix clobbering of the thread-default main context after certificate verification failure during async handshakes since 2.60.1 (#85) - Fix GTlsDatabase initialization failures in OpenSSL backend due to uninitialized memory use - Fix minor leak of ALPN protocols 2.60.2 ====== - OpenSSL backend now defaults to system trust store (#62) - Fix client auth failure error with GnuTLS 3.6.7 (#70)
- Loading branch information
Showing
5 changed files
with
46 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
$NetBSD: distinfo,v 1.19 2019/06/11 12:45:46 wiz Exp $ | ||
$NetBSD: distinfo,v 1.20 2019/06/12 22:04:40 leot Exp $ | ||
|
||
SHA1 (glib-networking-2.60.1.tar.xz) = c509054837277aa64926cae635f32973d1c1029d | ||
RMD160 (glib-networking-2.60.1.tar.xz) = 273054d23d63ef3b9f2180a07828ac2cb5ccd13d | ||
SHA512 (glib-networking-2.60.1.tar.xz) = a40a7e9678076db1a469f0d8ffdcb0c6658ef96ff1d9637299fbb07985f4c42bae3f1415f8df15242718420d20eb90de93253a00d1f6a347110b3f8a74bcc717 | ||
Size (glib-networking-2.60.1.tar.xz) = 184828 bytes | ||
SHA1 (glib-networking-2.60.3.tar.xz) = a8b3cdc3b6ecabec176b414212233fadf0e22533 | ||
RMD160 (glib-networking-2.60.3.tar.xz) = 96af57cce499ec3242071b01d93be5639236459d | ||
SHA512 (glib-networking-2.60.3.tar.xz) = 06a50aee1a563f5e992549e963d3980b02c9068976a244ce4a84eb0aca064b2ab7e8d50e3ef26dbd0d8d5edbddc82c5ce83d4a93bfaa0822b79465f0d3b8609f | ||
Size (glib-networking-2.60.3.tar.xz) = 185132 bytes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# $NetBSD: options.mk,v 1.1 2019/06/12 22:04:40 leot Exp $ | ||
|
||
PKG_OPTIONS_VAR= PKG_OPTIONS.glib-networking | ||
|
||
PKG_OPTIONS_REQUIRED_GROUPS= ssl | ||
PKG_OPTIONS_GROUP.ssl= gnutls openssl | ||
|
||
PKG_SUGGESTED_OPTIONS= gnutls | ||
|
||
.include "../../mk/bsd.options.mk" | ||
|
||
PLIST_VARS+= gnutls openssl | ||
|
||
### | ||
### SSL support | ||
### | ||
.if !empty(PKG_OPTIONS:Mgnutls) | ||
PLIST.gnutls= yes | ||
BUILDLINK_API_DEPENDS.gnutls+= gnutls>=3.6.0nb1 | ||
. include "../../security/gnutls/buildlink3.mk" | ||
MESON_ARGS+= -Dgnutls=enabled | ||
MESON_ARGS+= -Dopenssl=disabled | ||
.elif !empty(PKG_OPTIONS:Mopenssl) | ||
PLIST.openssl= yes | ||
. include "../../security/openssl/buildlink3.mk" | ||
MESON_ARGS+= -Dopenssl=enabled | ||
MESON_ARGS+= -Dgnutls=disabled | ||
.endif |