diff options
author | drochner <drochner@pkgsrc.org> | 2012-07-06 15:37:23 +0000 |
---|---|---|
committer | drochner <drochner@pkgsrc.org> | 2012-07-06 15:37:23 +0000 |
commit | 1400a1f7731e9466558e8a0327359db442fabc68 (patch) | |
tree | 2fc68bff1e9ac3b36162fb1881982a73badcb80b /net/filezilla | |
parent | 8089d04e272cb47d43a4bbc76c87b48ff21ea6c0 (diff) | |
download | pkgsrc-1400a1f7731e9466558e8a0327359db442fabc68.tar.gz |
fix build with gnutls-3
Diffstat (limited to 'net/filezilla')
-rw-r--r-- | net/filezilla/Makefile | 3 | ||||
-rw-r--r-- | net/filezilla/distinfo | 3 | ||||
-rw-r--r-- | net/filezilla/patches/patch-aa | 14 |
3 files changed, 17 insertions, 3 deletions
diff --git a/net/filezilla/Makefile b/net/filezilla/Makefile index 00bd54de1cd..916660fa667 100644 --- a/net/filezilla/Makefile +++ b/net/filezilla/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.30 2012/07/02 19:23:29 drochner Exp $ +# $NetBSD: Makefile,v 1.31 2012/07/06 15:37:23 drochner Exp $ # VERSION= 3.5.0 @@ -14,7 +14,6 @@ HOMEPAGE= http://filezilla-project.org/ COMMENT= FTP, FTPS and SFTP client with intuitive GUI LICENSE= gnu-gpl-v2 -DEPENDS+= gnutls>=2.8.3:../../security/gnutls DEPENDS+= xdg-utils-[0-9]*:../../misc/xdg-utils PKG_DESTDIR_SUPPORT= user-destdir diff --git a/net/filezilla/distinfo b/net/filezilla/distinfo index c1d1c7c81e7..059957a4e6c 100644 --- a/net/filezilla/distinfo +++ b/net/filezilla/distinfo @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.15 2011/06/03 00:22:19 wiz Exp $ +$NetBSD: distinfo,v 1.16 2012/07/06 15:37:23 drochner Exp $ SHA1 (FileZilla_3.5.0_src.tar.bz2) = 0d351b74bbe70cbfea1d315fd07193089e6e1c9d RMD160 (FileZilla_3.5.0_src.tar.bz2) = c3ffc60ced15b7055c34d6ef07c97f516e6f276d Size (FileZilla_3.5.0_src.tar.bz2) = 3348649 bytes +SHA1 (patch-aa) = 78237ce599dafa640b1488f188376ecc835dfe45 SHA1 (patch-data_makezip.sh.in) = 80acc96fce08e2e0831a4da0613f7b2eaebad465 diff --git a/net/filezilla/patches/patch-aa b/net/filezilla/patches/patch-aa new file mode 100644 index 00000000000..3fc1256e2fd --- /dev/null +++ b/net/filezilla/patches/patch-aa @@ -0,0 +1,14 @@ +$NetBSD: patch-aa,v 1.1 2012/07/06 15:37:23 drochner Exp $ + +fix build with gnutls-3 + +--- src/engine/tlssocket.cpp.orig 2011-05-02 03:30:19.000000000 +0000 ++++ src/engine/tlssocket.cpp +@@ -113,7 +113,6 @@ bool CTlsSocket::Init() + gnutls_transport_set_push_function(m_session, PushFunction); + gnutls_transport_set_pull_function(m_session, PullFunction); + gnutls_transport_set_ptr(m_session, (gnutls_transport_ptr_t)this); +- gnutls_transport_set_lowat(m_session, 0); + + m_shutdown_requested = false; + |