diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2018-10-31 19:04:19 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2018-11-07 16:46:13 +0000 |
commit | b3475ce8aebe413befd42e925e81a9fb121194cd (patch) | |
tree | 69b0a0a89c4d286b571b2961d80543196bd01ada /community/cassandra-cpp-driver/libressl_fix.patch | |
parent | ebfd807abea5bc14abefb3ea8cb888ec261ab9bb (diff) | |
download | aports-b3475ce8aebe413befd42e925e81a9fb121194cd.tar.bz2 aports-b3475ce8aebe413befd42e925e81a9fb121194cd.tar.xz |
community/cassandra-cpp-driver: upgrade to 2.10.0
Diffstat (limited to 'community/cassandra-cpp-driver/libressl_fix.patch')
-rw-r--r-- | community/cassandra-cpp-driver/libressl_fix.patch | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/community/cassandra-cpp-driver/libressl_fix.patch b/community/cassandra-cpp-driver/libressl_fix.patch deleted file mode 100644 index 0a2e822728..0000000000 --- a/community/cassandra-cpp-driver/libressl_fix.patch +++ /dev/null @@ -1,20 +0,0 @@ ---- cpp-driver-2.9.0/src/ssl/ssl_openssl_impl.cpp.orig -+++ cpp-driver-2.9.0/src/ssl/ssl_openssl_impl.cpp -@@ -113,7 +113,7 @@ - return len; - } - --#if OPENSSL_VERSION_NUMBER < 0x10100000L -+#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER) - static uv_rwlock_t* crypto_locks; - - static void crypto_locking_callback(int mode, int n, const char* file, int line) { -@@ -597,7 +597,7 @@ - SSL_load_error_strings(); - OpenSSL_add_all_algorithms(); - --#if OPENSSL_VERSION_NUMBER < 0x10100000L -+#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER) - // We have to set the lock/id callbacks for use of OpenSSL thread safety. - // It's not clear what's thread-safe in OpenSSL. Writing/Reading to - // a single "SSL" object is NOT and we don't do that, but we do create multiple |