diff options
author | Stephan Hartmann <sultan@gentoo.org> | 2022-01-08 10:52:00 +0100 |
---|---|---|
committer | Stephan Hartmann <sultan@gentoo.org> | 2022-01-08 10:52:54 +0100 |
commit | 5559adec4b13500fe445e1a591bd159177db3f2a (patch) | |
tree | a98d9b5d6b00a896642368ba3e22704a058678fa /www-client/dillo/files | |
parent | dev-python/argcomplete: Bump to 2.0.0 (diff) | |
download | gentoo-5559adec4b13500fe445e1a591bd159177db3f2a.tar.gz gentoo-5559adec4b13500fe445e1a591bd159177db3f2a.tar.bz2 gentoo-5559adec4b13500fe445e1a591bd159177db3f2a.zip |
www-client/dillo: fix build with --disable-ssl
Closes: https://bugs.gentoo.org/830755
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Stephan Hartmann <sultan@gentoo.org>
Diffstat (limited to 'www-client/dillo/files')
-rw-r--r-- | www-client/dillo/files/dillo-3.0.5-disable-ssl.patch | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/www-client/dillo/files/dillo-3.0.5-disable-ssl.patch b/www-client/dillo/files/dillo-3.0.5-disable-ssl.patch new file mode 100644 index 000000000000..de96ea6c1586 --- /dev/null +++ b/www-client/dillo/files/dillo-3.0.5-disable-ssl.patch @@ -0,0 +1,22 @@ + +# HG changeset patch +# User Johannes Hofmann <Johannes.Hofmann@gmx.de> +# Date 1612905342 -3600 +# Node ID 67b70f024568b505633524be61fcfbde5337849f +# Parent f60d55c0256759b578b54c577da94670a7737c8a +fix build with --disable-ssl + +submitted-by: John DiMarco <jdd@cs.toronto.edu> + +diff -r f60d55c02567 -r 67b70f024568 src/IO/tls.h +--- a/src/IO/tls.h Fri Oct 05 22:05:08 2018 +0200 ++++ b/src/IO/tls.h Tue Feb 09 22:15:42 2021 +0100 +@@ -35,6 +35,7 @@ + #define a_Tls_connect_ready(url) TLS_CONNECT_NEVER + #define a_Tls_reset_server_state(url) ; + #define a_Tls_handshake(fd, url) ; ++#define a_Tls_connect(fd, url) ; + #define a_Tls_connection(fd) NULL + #define a_Tls_freeall() ; + #define a_Tls_close_by_fd(fd) ; + |