diff options
author | Michał Górny <mgorny@gentoo.org> | 2017-08-14 09:36:31 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2017-08-14 09:47:09 +0200 |
commit | 02852d00c62091127bbca8889720845c1db78a05 (patch) | |
tree | 85022bc6c740618ce69fb53d1abd073a680b5fce /net-p2p/dclib/files | |
parent | net-p2p/valknut: Remove last-rited pkg, #618950 (diff) | |
download | gentoo-02852d00c62091127bbca8889720845c1db78a05.tar.gz gentoo-02852d00c62091127bbca8889720845c1db78a05.tar.bz2 gentoo-02852d00c62091127bbca8889720845c1db78a05.zip |
net-p2p/dclib: Remove last-rited pkg, #618950
Diffstat (limited to 'net-p2p/dclib/files')
-rw-r--r-- | net-p2p/dclib/files/dclib-0.3.23-asneeded.patch | 16 | ||||
-rw-r--r-- | net-p2p/dclib/files/dclib-0.3.23-openssl-1.patch | 52 |
2 files changed, 0 insertions, 68 deletions
diff --git a/net-p2p/dclib/files/dclib-0.3.23-asneeded.patch b/net-p2p/dclib/files/dclib-0.3.23-asneeded.patch deleted file mode 100644 index d3634c424c2e..000000000000 --- a/net-p2p/dclib/files/dclib-0.3.23-asneeded.patch +++ /dev/null @@ -1,16 +0,0 @@ -Changing order allows ACX_PHTREAD to find -lthread -before trying to use -pthread - -http://bugs.gentoo.org/show_bug.cgi?id=282426 - ---- m4/acx_pthread.m4 -+++ m4/acx_pthread.m4 -@@ -123,7 +123,7 @@ - # which indicates that we try without any flags at all, and "pthread-config" - # which is a program returning the flags for the Pth emulation library. - --acx_pthread_flags="pthreads none -Kthread -kthread lthread -pthread -pthreads -mthreads pthread --thread-safe -mt pthread-config" -+acx_pthread_flags="pthreads none -Kthread -kthread lthread pthread -pthread -pthreads -mthreads --thread-safe -mt pthread-config" - - # The ordering *is* (sometimes) important. Some notes on the - # individual items follow: diff --git a/net-p2p/dclib/files/dclib-0.3.23-openssl-1.patch b/net-p2p/dclib/files/dclib-0.3.23-openssl-1.patch deleted file mode 100644 index f8b4a4bc2af2..000000000000 --- a/net-p2p/dclib/files/dclib-0.3.23-openssl-1.patch +++ /dev/null @@ -1,52 +0,0 @@ -http://bugs.gentoo.org/330291 - ---- dclib/core/cssl.cpp -+++ dclib/core/cssl.cpp -@@ -86,7 +86,11 @@ - /** */ - SSL_CTX * CSSL::InitClientCTX() - { -+ #if OPENSSL_VERSION_NUMBER >= 0x10000000L -+ const SSL_METHOD *method; -+ #else - SSL_METHOD *method; -+ #endif - SSL_CTX *ctx = NULL; - - method = SSLv23_client_method(); /* Create new client-method instance */ -@@ -109,7 +113,11 @@ - /** */ - SSL_CTX * CSSL::InitServerCTX() - { -+ #if OPENSSL_VERSION_NUMBER >= 0x10000000L -+ const SSL_METHOD *method; -+ #else - SSL_METHOD *method; -+ #endif - SSL_CTX *ctx = NULL; - - method = SSLv23_server_method(); /* Create new client-method instance */ -@@ -130,7 +138,11 @@ - /** */ - SSL_CTX * CSSL::NewTLSv1ClientCTX() - { -+ #if OPENSSL_VERSION_NUMBER >= 0x10000000L -+ const SSL_METHOD * method = TLSv1_client_method(); -+ #else - SSL_METHOD * method = TLSv1_client_method(); -+ #endif - SSL_CTX * ctx = NULL; - - if ( method != NULL ) -@@ -149,7 +161,11 @@ - /** */ - SSL_CTX * CSSL::NewTLSv1ServerCTX() - { -+ #if OPENSSL_VERSION_NUMBER >= 0x10000000L -+ const SSL_METHOD * method = TLSv1_server_method(); -+ #else - SSL_METHOD * method = TLSv1_server_method(); -+ #endif - SSL_CTX * ctx = NULL; - - if ( method != NULL ) |