aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2012-08-27 21:25:24 +0200
committerWladimir J. van der Laan <laanwj@gmail.com>2012-08-27 22:16:24 +0200
commitba7ba84f075e2502bbac595c0ab28741c0db26ca (patch)
treed0e727d2907a6e7a78febfd03e76f828d3cee873
parentf29eaee30a7a45a3bca218748fa6ff9256c2532e (diff)
downloadbitcoin-0.7.0rc1.tar.xz
Add boost chrono lib for windows builds (required for boost 1.50)v0.7.0rc1
-rw-r--r--bitcoin-qt.pro1
-rw-r--r--src/makefile.linux-mingw1
-rw-r--r--src/makefile.mingw1
3 files changed, 3 insertions, 0 deletions
diff --git a/bitcoin-qt.pro b/bitcoin-qt.pro
index ae61bbbc3d..c8f46538b2 100644
--- a/bitcoin-qt.pro
+++ b/bitcoin-qt.pro
@@ -359,6 +359,7 @@ LIBS += -lssl -lcrypto -ldb_cxx$$BDB_LIB_SUFFIX
# -lgdi32 has to happen after -lcrypto (see #681)
windows:LIBS += -lole32 -luuid -lgdi32
LIBS += -lboost_system$$BOOST_LIB_SUFFIX -lboost_filesystem$$BOOST_LIB_SUFFIX -lboost_program_options$$BOOST_LIB_SUFFIX -lboost_thread$$BOOST_THREAD_LIB_SUFFIX
+windows:LIBS += -lboost_chrono$$BOOST_LIB_SUFFIX
contains(RELEASE, 1) {
!windows:!macx {
diff --git a/src/makefile.linux-mingw b/src/makefile.linux-mingw
index 93e3fe9aa6..625ed67847 100644
--- a/src/makefile.linux-mingw
+++ b/src/makefile.linux-mingw
@@ -25,6 +25,7 @@ LIBS= \
-l boost_filesystem-mt-s \
-l boost_program_options-mt-s \
-l boost_thread_win32-mt-s \
+ -l boost_chrono-mt-s \
-l db_cxx \
-l ssl \
-l crypto
diff --git a/src/makefile.mingw b/src/makefile.mingw
index 58a12e209a..9b3d36f355 100644
--- a/src/makefile.mingw
+++ b/src/makefile.mingw
@@ -20,6 +20,7 @@ LIBS= \
-l boost_filesystem-mgw45-mt-s-1_50 \
-l boost_program_options-mgw45-mt-s-1_50 \
-l boost_thread-mgw45-mt-s-1_50 \
+ -l boost_chrono-mgw45-mt-s-1_50 \
-l db_cxx \
-l ssl \
-l crypto