File tree Expand file tree Collapse file tree 1 file changed +24
-0
lines changed
Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change 1+ diff -ur syscoin-0.12.0.orig/src/init.cpp syscoin-0.12.0/src/init.cpp
2+ --- syscoin-0.12.0.orig/src/init.cpp 2015-12-31 16:00:00.000000000 -0800
3+ +++ syscoin-0.12.0/src/init.cpp 2016-02-23 06:03:47.133227757 -0800
4+ @@ -1075,7 +1075,7 @@
5+ if (fPrintToDebugLog)
6+ OpenDebugLog();
7+
8+ - #if (OPENSSL_VERSION_NUMBER < 0x10100000L)
9+ + #if defined(LIBRESSL_VERSION_NUMBER) || (OPENSSL_VERSION_NUMBER < 0x10100000L)
10+ LogPrintf("Using OpenSSL version %s\n", SSLeay_version(SSLEAY_VERSION));
11+ #else
12+ LogPrintf("Using OpenSSL version %s\n", OpenSSL_version(OPENSSL_VERSION));
13+ diff -ur syscoin-0.12.0.orig/src/qt/rpcconsole.cpp syscoin-0.12.0/src/qt/rpcconsole.cpp
14+ --- syscoin-0.12.0.orig/src/qt/rpcconsole.cpp 2015-12-31 16:00:00.000000000 -0800
15+ +++ syscoin-0.12.0/src/qt/rpcconsole.cpp 2016-02-23 15:09:42.881126841 -0800
16+ @@ -264,7 +264,7 @@
17+
18+ // set library version labels
19+
20+ - #if (OPENSSL_VERSION_NUMBER < 0x10100000L)
21+ + #if defined(LIBRESSL_VERSION_NUMBER) || (OPENSSL_VERSION_NUMBER < 0x10100000L)
22+ ui->openSSLVersion->setText(SSLeay_version(SSLEAY_VERSION));
23+ #else
24+ ui->openSSLVersion->setText(OpenSSL_version(OPENSSL_VERSION));
You can’t perform that action at this time.
0 commit comments