diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2016-01-04 20:56:58 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2016-01-04 20:56:58 +0000 |
commit | 7f4fb8b67cefa185ea8b9a183abcac75b2d0cc7d (patch) | |
tree | a17c0b27a66d793bf762158ef5d650590ebf4606 /netfs/fuse | |
parent | Broken down install rules (diff) | |
download | netfs-7f4fb8b67cefa185ea8b9a183abcac75b2d0cc7d.tar.bz2 netfs-7f4fb8b67cefa185ea8b9a183abcac75b2d0cc7d.tar.xz netfs-7f4fb8b67cefa185ea8b9a183abcac75b2d0cc7d.zip |
Scrap the precompiled headers
Diffstat (limited to 'netfs/fuse')
-rw-r--r-- | netfs/fuse/Jamfile.jam | 12 | ||||
-rw-r--r-- | netfs/fuse/fuseApp.cpp | 1 | ||||
-rw-r--r-- | netfs/fuse/fuseDirs.cpp | 1 | ||||
-rw-r--r-- | netfs/fuse/fuseFiles.cpp | 1 | ||||
-rw-r--r-- | netfs/fuse/fuseMisc.cpp | 1 | ||||
-rw-r--r-- | netfs/fuse/fuseSystem.cpp | 1 | ||||
-rw-r--r-- | netfs/fuse/pch.hpp | 11 |
7 files changed, 0 insertions, 28 deletions
diff --git a/netfs/fuse/Jamfile.jam b/netfs/fuse/Jamfile.jam index 90e6ec9..cc3b059 100644 --- a/netfs/fuse/Jamfile.jam +++ b/netfs/fuse/Jamfile.jam @@ -3,17 +3,6 @@ import package ; lib fuse : : <name>fuse ; lib Glacier2 : : <name>Glacier2 ; -cpp-pch pch : pch.hpp : - <define>_FILE_OFFSET_BITS=64 - <include>../../libfusepp - <implicit-dependency>../ice//netfsComms - <library>../ice//netfsComms - <library>..//boost_thread - <library>fuse - <library>..//Ice - <library>..//adhocutil - ; - lib netfsClientConfiguration : fuseConfig.ice : @@ -32,7 +21,6 @@ lib netfsClientConfiguration : ; lib netfsClient : - pch netfsClientConfiguration [ glob *.cpp : netfs.cpp ] [ glob ../../libfusepp/fuse*.cpp ] diff --git a/netfs/fuse/fuseApp.cpp b/netfs/fuse/fuseApp.cpp index 1e2064c..d37d40c 100644 --- a/netfs/fuse/fuseApp.cpp +++ b/netfs/fuse/fuseApp.cpp @@ -1,4 +1,3 @@ -#include <pch.hpp> #include <Glacier2/Router.h> #include <string.h> #include "fuseApp.h" diff --git a/netfs/fuse/fuseDirs.cpp b/netfs/fuse/fuseDirs.cpp index 2d2be56..c8b5a16 100644 --- a/netfs/fuse/fuseDirs.cpp +++ b/netfs/fuse/fuseDirs.cpp @@ -1,4 +1,3 @@ -#include <pch.hpp> #include "fuseApp.h" #include <lockHelpers.h> #include <typeConvert.h> diff --git a/netfs/fuse/fuseFiles.cpp b/netfs/fuse/fuseFiles.cpp index 6206749..d7b5a6b 100644 --- a/netfs/fuse/fuseFiles.cpp +++ b/netfs/fuse/fuseFiles.cpp @@ -1,4 +1,3 @@ -#include <pch.hpp> #include <string.h> #include <typeConvert.h> #include "fuseApp.h" diff --git a/netfs/fuse/fuseMisc.cpp b/netfs/fuse/fuseMisc.cpp index df28318..25aa51a 100644 --- a/netfs/fuse/fuseMisc.cpp +++ b/netfs/fuse/fuseMisc.cpp @@ -1,4 +1,3 @@ -#include <pch.hpp> #include "fuseApp.h" #include <string.h> #include <typeConvert.h> diff --git a/netfs/fuse/fuseSystem.cpp b/netfs/fuse/fuseSystem.cpp index e2a9ab7..2440fa8 100644 --- a/netfs/fuse/fuseSystem.cpp +++ b/netfs/fuse/fuseSystem.cpp @@ -1,4 +1,3 @@ -#include <pch.hpp> #include <typeConvert.h> #include "fuseApp.h" diff --git a/netfs/fuse/pch.hpp b/netfs/fuse/pch.hpp deleted file mode 100644 index af51708..0000000 --- a/netfs/fuse/pch.hpp +++ /dev/null @@ -1,11 +0,0 @@ -#ifdef BOOST_BUILD_PCH_ENABLED -#ifndef NETFS_FUSE_PCH -#define NETFS_FUSE_PCH - -#include "../lib/pch.hpp" -#include <fuse.h> -#include <Ice/Ice.h> - -#endif -#endif - |