diff options
author | randomdan <randomdan@localhost> | 2011-02-19 18:54:32 +0000 |
---|---|---|
committer | randomdan <randomdan@localhost> | 2011-02-19 18:54:32 +0000 |
commit | 09e35070f05471ab51d22a55dad417fc83674a8b (patch) | |
tree | cdcc4debdc7fc666be41c7f8558e83ee4c694412 | |
parent | Centralise the ICE splicer (diff) | |
download | netfs-09e35070f05471ab51d22a55dad417fc83674a8b.tar.bz2 netfs-09e35070f05471ab51d22a55dad417fc83674a8b.tar.xz netfs-09e35070f05471ab51d22a55dad417fc83674a8b.zip |
Fix to link against static libmisc
-rw-r--r-- | netfs/Jamfile.jam | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/netfs/Jamfile.jam b/netfs/Jamfile.jam index 52f7f52..f9939e0 100644 --- a/netfs/Jamfile.jam +++ b/netfs/Jamfile.jam @@ -11,6 +11,8 @@ lib boost_thread : : <name>boost_thread ; lib Ice : : <name>Ice ; lib fuse : : <name>fuse ; +alias static_misc : ../libmisc//misc : <link>static ; + lib netfsComms : netfsComms.ice : ; @@ -19,6 +21,7 @@ lib netfsCommon : entCache.cpp : <define>_FILE_OFFSET_BITS=64 <implicit-dependency>netfsComms + <library>static_misc ; exe netfs : @@ -26,7 +29,7 @@ exe netfs : : <define>_FILE_OFFSET_BITS=64 <implicit-dependency>netfsComms - <library>../libmisc//misc + <library>static_misc <library>netfsComms <library>netfsCommon <library>boost_thread @@ -39,7 +42,7 @@ lib netfsd : : <define>_FILE_OFFSET_BITS=64 <implicit-dependency>netfsComms - <library>../libmisc//misc + <library>static_misc <library>netfsComms <library>netfsCommon <library>boost_random |