aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPieter Wuille <[email protected]>2011-05-01 09:33:40 -0700
committerPieter Wuille <[email protected]>2011-05-01 09:33:40 -0700
commitfbfbf94deb4224ce65bdbbc9151ddd44a4128753 (patch)
treedf1500a938a55ea6da66302b8491c89bde5718a3
parentMerge pull request #179 from wizeman/segfault-lockfile. (diff)
parentLink with libpthread on Linux, required by libboost_thread. (diff)
downloaddiscoin-fbfbf94deb4224ce65bdbbc9151ddd44a4128753.tar.xz
discoin-fbfbf94deb4224ce65bdbbc9151ddd44a4128753.zip
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 61b925e3b..f1ffc2f7e 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__