diff options
author | Celil <celil.kj@gmail.com> | 2011-07-24 14:45:51 -0700 |
---|---|---|
committer | Dzhelil Rufat <dzhelil@gmail.com> | 2011-07-24 14:45:51 -0700 |
commit | 2af40a501351d2304182f542b072639e2e9a8287 (patch) | |
tree | 9bf665d7035637e54ae7c43ef7f71b3472268517 | |
parent | daa1a7398fc1c6a70c9253ee7c5825674e7ba378 (diff) |
On Mac OS X do not link aginst the boost libraries in UNIX:LIBS
-rw-r--r-- | bitcoin-qt.pro | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/bitcoin-qt.pro b/bitcoin-qt.pro index f1bc8e7fd2..e0025472f8 100644 --- a/bitcoin-qt.pro +++ b/bitcoin-qt.pro @@ -6,9 +6,10 @@ 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 +unix:LIBS += -lssl -lcrypto -ldb_cxx +unix:!macx:LIBS += -lboost_system -lboost_filesystem -lboost_program_options -lboost_thread 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 +macx:LIBS += -lboost_system-mt -lboost_filesystem-mt -lboost_program_options-mt -lboost_thread-mt 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 |