summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergei Trofimovich <slyfox@gentoo.org>2017-10-16 17:22:42 +0100
committerSergei Trofimovich <slyfox@gentoo.org>2017-10-16 17:23:43 +0100
commit948ac4ceef675ff449cec40f4fe6025c75453cb8 (patch)
treeb9288bd44c17cc35736ec875697648b9964d4988 /dev-util/radare2/files
parentapp-emacs/go-mode: version bump to 1.5.0. (diff)
downloadgentoo-948ac4ceef675ff449cec40f4fe6025c75453cb8.tar.gz
gentoo-948ac4ceef675ff449cec40f4fe6025c75453cb8.tar.bz2
gentoo-948ac4ceef675ff449cec40f4fe6025c75453cb8.zip
dev-util/radare2: drop old ebuilds, bug #634460
Bug: https://bugs.gentoo.org/634460 Package-Manager: Portage-2.3.11, Repoman-2.3.3
Diffstat (limited to 'dev-util/radare2/files')
-rw-r--r--dev-util/radare2/files/radare2-1.1.0-openssl-1.1.0c.patch31
1 files changed, 0 insertions, 31 deletions
diff --git a/dev-util/radare2/files/radare2-1.1.0-openssl-1.1.0c.patch b/dev-util/radare2/files/radare2-1.1.0-openssl-1.1.0c.patch
deleted file mode 100644
index 28e2f55126f8..000000000000
--- a/dev-util/radare2/files/radare2-1.1.0-openssl-1.1.0c.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-commit ecd8cf26c2647a1f455595209fcf2d6bfb72240f
-Author: eroen <eroen@users.noreply.github.com>
-Date: Tue Jan 3 23:45:07 2017 +0100
-
- Disable deprecated initialization for openssl 1.1.0 (#6423)
-
- Openssl 1.1.0 handles this initialization internally. Leaving the calls in
- place causes "undefined reference" errors if openssl was built with
- `--api=1.1.0`.
-
- X-Gentoo-Bug: 604576
- X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=604576
-
-diff --git a/libr/socket/socket.c b/libr/socket/socket.c
-index 1e30120fb..1ba87e77e 100755
---- a/libr/socket/socket.c
-+++ b/libr/socket/socket.c
-@@ -116,11 +116,13 @@ R_API RSocket *r_socket_new (int is_ssl) {
- s->sfd = NULL;
- s->ctx = NULL;
- s->bio = NULL;
-+#if OPENSSL_VERSION_NUMBER < 0x1010000fL
- if (!SSL_library_init ()) {
- r_socket_free (s);
- return NULL;
- }
- SSL_load_error_strings ();
-+#endif
- }
- #endif
- return s;