diff options
author | marino <marino> | 2012-07-18 10:22:23 +0000 |
---|---|---|
committer | marino <marino> | 2012-07-18 10:22:23 +0000 |
commit | ec540f1facfed20c926752eaaa1f74e8adde2995 (patch) | |
tree | 9d0496c34499a742a4fb2fa7384792386f285f35 /net/net6/Makefile | |
parent | 4bca87ca20034b5b2d5ac4d4a463bdd14a59fe7c (diff) | |
download | pkgsrc-ec540f1facfed20c926752eaaa1f74e8adde2995.tar.gz |
net/net6: Fix regression due to upgrade to gnutils 3.0
GnuTLS deprecated gnutils_transport_set_lowat function in version 2.12.0
and finally removed it with version 3.0, breaking any packages that
still reference it.
The lowat feature is now disabled permanently I think.
The patch uses the GNUTLS_VERSION_NUMBER macro to appropriately conceal
the function reference. The same patch is widely seen on the 'net with
other packages that use GnuTLS.
Diffstat (limited to 'net/net6/Makefile')
-rw-r--r-- | net/net6/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/net6/Makefile b/net/net6/Makefile index f91b18d70bc..0de24e252a3 100644 --- a/net/net6/Makefile +++ b/net/net6/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.9 2011/04/22 13:42:43 obache Exp $ +# $NetBSD: Makefile,v 1.10 2012/07/18 10:22:23 marino Exp $ # DISTNAME= net6-1.3.10 -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= net MASTER_SITES= http://releases.0x539.de/net6/ |