From 43e3b0c25ea35c28e701027ec8b11f5c79fd46de Mon Sep 17 00:00:00 2001 From: randomdan Date: Tue, 10 Jul 2012 15:15:57 +0000 Subject: Migrate all stuff to stricter compilations/links and C++0x builds --- Jamroot.jam | 7 +++++++ netfs/Jamfile.jam | 15 ++++++++++++++- netfs/fuseapp.cpp | 5 +++++ 3 files changed, 26 insertions(+), 1 deletion(-) diff --git a/Jamroot.jam b/Jamroot.jam index 794d6de..1c2bea6 100644 --- a/Jamroot.jam +++ b/Jamroot.jam @@ -3,6 +3,13 @@ using gcc ; import type : register ; import generators : register-standard ; +project + : requirements + release:"-std=c++0x" + debug:"-W -Wall -Werror -Wwrite-strings -std=c++0x" + debug:"-Wl,-z,defs" + ; + import type ; import generators ; import feature ; diff --git a/netfs/Jamfile.jam b/netfs/Jamfile.jam index 1c6b938..7f5fbee 100644 --- a/netfs/Jamfile.jam +++ b/netfs/Jamfile.jam @@ -6,13 +6,20 @@ alias libxml2 : : : : lib boost_regex : : boost_regex ; lib boost_filesystem : : boost_filesystem ; +lib boost_system : : boost_system ; lib boost_random : : boost_random ; lib boost_thread : : boost_thread ; lib Ice : : Ice ; +lib IceUtil : : IceUtil ; +lib IceBox : : IceBox ; +lib pthread : : pthread ; lib fuse : : fuse ; lib netfsComms : netfsComms.ice : + Ice + IceUtil + pthread ; lib netfsCommon : @@ -21,7 +28,10 @@ lib netfsCommon : _FILE_OFFSET_BITS=64 ../libmisc libxml2 - netfsComms + netfsComms + boost_thread + Ice + IceUtil ; cpp-pch pchFuse : pchCommon pchFuse.hpp : @@ -83,7 +93,10 @@ lib netfsd : boost_random boost_thread boost_filesystem + boost_system Ice + IceUtil + IceBox libxml2 ; diff --git a/netfs/fuseapp.cpp b/netfs/fuseapp.cpp index 1dbe5bf..6f58ec2 100644 --- a/netfs/fuseapp.cpp +++ b/netfs/fuseapp.cpp @@ -308,6 +308,11 @@ FuseAppBase::run(int & argc, char** & argv, FuseAppBase * fa) 0, 0, 0, + 0, + 0, + 0, + 0, + 0, 0 }; struct fuse_args args = FUSE_ARGS_INIT(argc, argv); -- cgit v1.2.3