diff options
author | Lars Wendler <polynomial-c@gentoo.org> | 2020-03-04 11:39:41 +0100 |
---|---|---|
committer | Lars Wendler <polynomial-c@gentoo.org> | 2020-03-04 11:54:11 +0100 |
commit | 8e0eddb88cb1bfb38d6ff6e2ed7a33e681dc179a (patch) | |
tree | d434ee02724b17e9633b0a185b3ec066133b92ee /sys-block/open-isns/files | |
parent | sys-block/open-isns: Bump to version 0.100 (diff) | |
download | gentoo-8e0eddb88cb1bfb38d6ff6e2ed7a33e681dc179a.tar.gz gentoo-8e0eddb88cb1bfb38d6ff6e2ed7a33e681dc179a.tar.bz2 gentoo-8e0eddb88cb1bfb38d6ff6e2ed7a33e681dc179a.zip |
sys-block/open-isns: Removed old
Package-Manager: Portage-2.3.89, Repoman-2.3.20
Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
Diffstat (limited to 'sys-block/open-isns/files')
-rw-r--r-- | sys-block/open-isns/files/open-isns-0.97-musl.patch | 11 | ||||
-rw-r--r-- | sys-block/open-isns/files/open-isns-0.97-ossl-1.1.patch | 47 |
2 files changed, 0 insertions, 58 deletions
diff --git a/sys-block/open-isns/files/open-isns-0.97-musl.patch b/sys-block/open-isns/files/open-isns-0.97-musl.patch deleted file mode 100644 index 098ade40a213..000000000000 --- a/sys-block/open-isns/files/open-isns-0.97-musl.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- ./include/libisns/util.h.orig -+++ ./include/libisns/util.h -@@ -114,6 +114,6 @@ - # define ntohll(x) __bswap_64(x) - # endif - # else --# include <sys/endian.h> -+# include <endian.h> - # define htonll(x) htobe64(x) - # define ntohll(x) be64toh(x) - # endif diff --git a/sys-block/open-isns/files/open-isns-0.97-ossl-1.1.patch b/sys-block/open-isns/files/open-isns-0.97-ossl-1.1.patch deleted file mode 100644 index ebb641af27d4..000000000000 --- a/sys-block/open-isns/files/open-isns-0.97-ossl-1.1.patch +++ /dev/null @@ -1,47 +0,0 @@ -From 70b11a0f9c4056dc6891c2d5550c28993905f18a Mon Sep 17 00:00:00 2001 -From: eroen <open-isns@occam.eroen.eu> -Date: Mon, 2 Jan 2017 23:15:08 +0100 -Subject: [PATCH] Disable deprecated initializations for openssl-1.1.0 - -This fixes several undefined reference errors when linking with -openssl-1.1.0c. - -X-Gentoo-Bug: 604454 -X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=604454 ---- - pki.c | 4 ++++ - 1 file changed, 4 insertions(+) - -diff --git a/pki.c b/pki.c -index f69ddca..5fdf9f2 100644 ---- a/pki.c -+++ b/pki.c -@@ -67,7 +67,9 @@ void BN_GENCB_free(BN_GENCB *cb) - #endif - - -+#if OPENSSL_VERSION_NUMBER < 0x10100000L - static int isns_openssl_init = 0; -+#endif - - static int isns_dsasig_verify(isns_security_t *ctx, - isns_principal_t *peer, -@@ -92,6 +94,7 @@ isns_create_dsa_context(void) - { - isns_security_t *ctx; - -+#if OPENSSL_VERSION_NUMBER < 0x10100000L - if (!isns_openssl_init) { - ERR_load_crypto_strings(); - OpenSSL_add_all_algorithms(); -@@ -99,6 +102,7 @@ isns_create_dsa_context(void) - OpenSSL_add_all_digests(); - isns_openssl_init = 1; - } -+#endif - - ctx = isns_calloc(1, sizeof(*ctx)); - --- -2.11.0 - |