aboutsummaryrefslogtreecommitdiff
path: root/contrib/rpm/bitcoin-0.12.0-libressl.patch
diff options
context:
space:
mode:
authorAlice Wonder <github@domblogger.net>2016-02-26 09:30:11 -0800
committerAlice Wonder <github@domblogger.net>2016-02-26 09:30:11 -0800
commit146746bbafe5dfea7b2019231c2d37fe57a4c3bb (patch)
tree4dfa246e88dbcc52f08f50da620d5f7ac39bf5c9 /contrib/rpm/bitcoin-0.12.0-libressl.patch
parent317462123f8e41fd7dd967ab907e59ddffb19898 (diff)
downloadbitcoin-146746bbafe5dfea7b2019231c2d37fe57a4c3bb.tar.xz
All files related to my RPM spec file project in one commit
Diffstat (limited to 'contrib/rpm/bitcoin-0.12.0-libressl.patch')
-rw-r--r--contrib/rpm/bitcoin-0.12.0-libressl.patch24
1 files changed, 24 insertions, 0 deletions
diff --git a/contrib/rpm/bitcoin-0.12.0-libressl.patch b/contrib/rpm/bitcoin-0.12.0-libressl.patch
new file mode 100644
index 0000000000..555614a06d
--- /dev/null
+++ b/contrib/rpm/bitcoin-0.12.0-libressl.patch
@@ -0,0 +1,24 @@
+diff -ur bitcoin-0.12.0.orig/src/init.cpp bitcoin-0.12.0/src/init.cpp
+--- bitcoin-0.12.0.orig/src/init.cpp 2015-12-31 16:00:00.000000000 -0800
++++ bitcoin-0.12.0/src/init.cpp 2016-02-23 06:03:47.133227757 -0800
+@@ -1075,7 +1075,7 @@
+ if (fPrintToDebugLog)
+ OpenDebugLog();
+
+-#if (OPENSSL_VERSION_NUMBER < 0x10100000L)
++#if defined(LIBRESSL_VERSION_NUMBER) || (OPENSSL_VERSION_NUMBER < 0x10100000L)
+ LogPrintf("Using OpenSSL version %s\n", SSLeay_version(SSLEAY_VERSION));
+ #else
+ LogPrintf("Using OpenSSL version %s\n", OpenSSL_version(OPENSSL_VERSION));
+diff -ur bitcoin-0.12.0.orig/src/qt/rpcconsole.cpp bitcoin-0.12.0/src/qt/rpcconsole.cpp
+--- bitcoin-0.12.0.orig/src/qt/rpcconsole.cpp 2015-12-31 16:00:00.000000000 -0800
++++ bitcoin-0.12.0/src/qt/rpcconsole.cpp 2016-02-23 15:09:42.881126841 -0800
+@@ -264,7 +264,7 @@
+
+ // set library version labels
+
+-#if (OPENSSL_VERSION_NUMBER < 0x10100000L)
++#if defined(LIBRESSL_VERSION_NUMBER) || (OPENSSL_VERSION_NUMBER < 0x10100000L)
+ ui->openSSLVersion->setText(SSLeay_version(SSLEAY_VERSION));
+ #else
+ ui->openSSLVersion->setText(OpenSSL_version(OPENSSL_VERSION));