diff options
| author | Pieter Wuille <[email protected]> | 2011-05-01 09:33:40 -0700 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2011-05-01 09:33:40 -0700 |
| commit | fbfbf94deb4224ce65bdbbc9151ddd44a4128753 (patch) | |
| tree | df1500a938a55ea6da66302b8491c89bde5718a3 | |
| parent | Merge pull request #179 from wizeman/segfault-lockfile. (diff) | |
| parent | Link with libpthread on Linux, required by libboost_thread. (diff) | |
| download | discoin-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.unix | 3 |
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__ |