aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPieter Wuille <pieter.wuille@gmail.com>2011-05-01 09:33:40 -0700
committerPieter Wuille <pieter.wuille@gmail.com>2011-05-01 09:33:40 -0700
commitfbfbf94deb4224ce65bdbbc9151ddd44a4128753 (patch)
treedf1500a938a55ea6da66302b8491c89bde5718a3
parent76160f784a0e8ee5e1fdcb9e250e6aee723b44d0 (diff)
parent1a5364bd19e92b252c75ccc54b0bcc80f4a0c1f7 (diff)
downloadbitcoin-fbfbf94deb4224ce65bdbbc9151ddd44a4128753.tar.xz
Merge pull request #178 from wizeman/link-pthread.
Link with libpthread on Linux, required by libboost_thread.
-rw-r--r--makefile.unix3
1 files changed, 2 insertions, 1 deletions
diff --git a/makefile.unix b/makefile.unix
index 61b925e3bc..f1ffc2f7ed 100644
--- a/makefile.unix
+++ b/makefile.unix
@@ -32,7 +32,8 @@ LIBS+= \
-Wl,-Bdynamic \
-l gthread-2.0 \
-l z \
- -l dl
+ -l dl \
+ -l pthread
DEBUGFLAGS=-g -D__WXDEBUG__