Created
January 28, 2014 16:21
-
-
Save me-vlad/8670899 to your computer and use it in GitHub Desktop.
dogecoin 1.5.0 fedora 20 patch
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- dogecoin-qt.pro.orig 2014-01-28 04:04:37.000000000 +0200 | |
+++ dogecoin-qt.pro 2014-01-28 17:12:01.743486030 +0200 | |
@@ -3,6 +3,8 @@ | |
macx:TARGET = "Dogecoin-Qt" | |
VERSION = 1.5.0 | |
INCLUDEPATH += src src/json src/qt | |
+OPENSSL_INCLUDE_PATH=openssl-1.0.0l/include | |
+OPENSSL_LIB_PATH=openssl-1.0.0l/ssl | |
QT += core gui network | |
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets | |
DEFINES += QT_GUI BOOST_THREAD_USE_LIB BOOST_SPIRIT_THREADSAFE | |
@@ -449,7 +451,7 @@ | |
# Set libraries and includes at end, to use platform-defined defaults if not overridden | |
INCLUDEPATH += $$BOOST_INCLUDE_PATH $$BDB_INCLUDE_PATH $$OPENSSL_INCLUDE_PATH $$QRENCODE_INCLUDE_PATH | |
LIBS += $$join(BOOST_LIB_PATH,,-L,) $$join(BDB_LIB_PATH,,-L,) $$join(OPENSSL_LIB_PATH,,-L,) $$join(QRENCODE_LIB_PATH,,-L,) | |
-LIBS += -lssl -lcrypto | |
+LIBS += openssl-1.0.0l/libssl.a openssl-1.0.0l/libcrypto.a -ldl | |
# -lgdi32 has to happen after -lcrypto (see #681) | |
!macx { | |
LIBS += -lboost_system$$BOOST_LIB_SUFFIX -lboost_filesystem$$BOOST_LIB_SUFFIX -lboost_program_options$$BOOST_LIB_SUFFIX |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment