diff options
| author | Wladimir J. van der Laan <[email protected]> | 2011-07-26 17:11:55 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2011-07-26 17:12:06 +0200 |
| commit | 1e89d5d2fe3955e169b9a9f80dd3e52d1a3cc4a5 (patch) | |
| tree | b25aeec8ed9396e0d22100d7f1892f27907132a0 | |
| parent | make SetHash160 return a value (as specified in the function signature) (diff) | |
| parent | Clean up the project file. (diff) | |
| download | discoin-1e89d5d2fe3955e169b9a9f80dd3e52d1a3cc4a5.tar.xz discoin-1e89d5d2fe3955e169b9a9f80dd3e52d1a3cc4a5.zip | |
Re-apply pull request #10, it got lost for some reason
| -rw-r--r-- | bitcoin-qt.pro | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/bitcoin-qt.pro b/bitcoin-qt.pro index e8d2deffc..250aeff92 100644 --- a/bitcoin-qt.pro +++ b/bitcoin-qt.pro @@ -6,11 +6,12 @@ DEFINES += QT_GUI CONFIG += no_include_pwd # for boost 1.37, add -mt to the boost libraries -unix:LIBS += -lssl -lcrypto -lboost_system -lboost_filesystem -lboost_program_options -lboost_thread -ldb_cxx +LIBS += -lssl -lcrypto -ldb_cxx +unix:!macx:LIBS += -lboost_system -lboost_filesystem -lboost_program_options -lboost_thread +macx:LIBS += -lboost_system-mt -lboost_filesystem-mt -lboost_program_options-mt -lboost_thread-mt macx:DEFINES += __WXMAC_OSX__ MSG_NOSIGNAL=0 BOOST_FILESYSTEM_VERSION=3 -macx:LIBS += -lboost_thread-mt -lboost_system-mt -lboost_filesystem-mt -lboost_program_options-mt +windows:LIBS += -lboost_system-mgw44-mt-1_43 -lboost_filesystem-mgw44-mt-1_43 -lboost_program_options-mgw44-mt-1_43 -lboost_thread-mgw44-mt-1_43 -lws2_32 -lgdi32 windows:DEFINES += __WXMSW__ -windows:LIBS += -lssl -lcrypto -lboost_system-mgw44-mt-1_43 -lboost_filesystem-mgw44-mt-1_43 -lboost_program_options-mgw44-mt-1_43 -lboost_thread-mgw44-mt-1_43 -ldb_cxx -lws2_32 -lgdi32 windows:RC_FILE = src/qt/res/bitcoin-qt.rc # for extra security against potential buffer overflows |