diff options
author | Dan Goodliffe <daniel.goodliffe@pressassociation.com> | 2015-12-15 09:58:04 +0000 |
---|---|---|
committer | Dan Goodliffe <daniel.goodliffe@pressassociation.com> | 2015-12-15 09:58:04 +0000 |
commit | c09fa80dea33ccdf5e272759334695318856fc2b (patch) | |
tree | b0efc433613d65ec492ab531e7d1174e15800e35 | |
parent | Switch lib64 references for native ones (diff) | |
download | project2-c09fa80dea33ccdf5e272759334695318856fc2b.tar.bz2 project2-c09fa80dea33ccdf5e272759334695318856fc2b.tar.xz project2-c09fa80dea33ccdf5e272759334695318856fc2b.zip |
Add missing links to pthread (gcc-5.3 fix)project2-1.2.2.5
-rw-r--r-- | project2/daemon/Jamfile.jam | 2 | ||||
-rw-r--r-- | project2/ice/Jamfile.jam | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/project2/daemon/Jamfile.jam b/project2/daemon/Jamfile.jam index 410882d..f304032 100644 --- a/project2/daemon/Jamfile.jam +++ b/project2/daemon/Jamfile.jam @@ -3,6 +3,7 @@ alias glibmm : : : : <linkflags>"`pkg-config --libs glibmm-2.4`" ; lib boost_filesystem : : <name>boost_filesystem ; +lib pthread ; exe p2daemon : [ glob *.cpp ] : @@ -12,5 +13,6 @@ exe p2daemon : <library>../common//p2common <library>../cli//p2cli <library>boost_filesystem + <library>pthread ; diff --git a/project2/ice/Jamfile.jam b/project2/ice/Jamfile.jam index 76ec226..c669980 100644 --- a/project2/ice/Jamfile.jam +++ b/project2/ice/Jamfile.jam @@ -69,6 +69,7 @@ lib p2icebox : <library>../daemon/lib//p2daemonlib <library>..//p2parts <library>dl + <library>pthread <library>Ice <library>IceBox <library>IceUtil |