You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
1.1 KiB
24 lines
1.1 KiB
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));
|
|
|