diff options
author | randomdan <randomdan@localhost> | 2013-06-03 22:18:35 +0000 |
---|---|---|
committer | randomdan <randomdan@localhost> | 2013-06-03 22:18:35 +0000 |
commit | 104b37a4420057158d217e22285ee87fa5808658 (patch) | |
tree | 63ece5ebe8780cc5bef4ec24a4a94649ab07887d | |
parent | Depend on right net service (diff) | |
download | netfs-104b37a4420057158d217e22285ee87fa5808658.tar.bz2 netfs-104b37a4420057158d217e22285ee87fa5808658.tar.xz netfs-104b37a4420057158d217e22285ee87fa5808658.zip |
Compat fixes
-rw-r--r-- | libfusepp/fuseapp.cpp | 3 | ||||
-rw-r--r-- | netfs/Jamfile.jam | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/libfusepp/fuseapp.cpp b/libfusepp/fuseapp.cpp index e81a116..60606ea 100644 --- a/libfusepp/fuseapp.cpp +++ b/libfusepp/fuseapp.cpp @@ -256,7 +256,8 @@ FuseAppBase::run(int & argc, char** & argv, FuseAppBase * fa) , NULL, // writebuf NULL, // readbuf - NULL // flock + NULL, // flock + NULL // fallocate #endif #endif #endif diff --git a/netfs/Jamfile.jam b/netfs/Jamfile.jam index 5ed3a22..2078259 100644 --- a/netfs/Jamfile.jam +++ b/netfs/Jamfile.jam @@ -30,6 +30,7 @@ lib netfsCommon : <library>libxml2 <library>netfsComms <library>boost_thread + <library>boost_system <library>Ice <library>IceUtil ; |