summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2016-01-04 20:56:58 +0000
committerDan Goodliffe <dan@randomdan.homeip.net>2016-01-04 20:56:58 +0000
commit7f4fb8b67cefa185ea8b9a183abcac75b2d0cc7d (patch)
treea17c0b27a66d793bf762158ef5d650590ebf4606
parentBroken down install rules (diff)
downloadnetfs-7f4fb8b67cefa185ea8b9a183abcac75b2d0cc7d.tar.bz2
netfs-7f4fb8b67cefa185ea8b9a183abcac75b2d0cc7d.tar.xz
netfs-7f4fb8b67cefa185ea8b9a183abcac75b2d0cc7d.zip
Scrap the precompiled headers
-rw-r--r--netfs/daemon/Jamfile.jam11
-rw-r--r--netfs/daemon/daemon.cpp1
-rw-r--r--netfs/daemon/daemonDirectory.cpp1
-rw-r--r--netfs/daemon/daemonFile.cpp1
-rw-r--r--netfs/daemon/daemonService.cpp1
-rw-r--r--netfs/daemon/daemonVolume.cpp1
-rw-r--r--netfs/daemon/pch.hpp13
-rw-r--r--netfs/fuse/Jamfile.jam12
-rw-r--r--netfs/fuse/fuseApp.cpp1
-rw-r--r--netfs/fuse/fuseDirs.cpp1
-rw-r--r--netfs/fuse/fuseFiles.cpp1
-rw-r--r--netfs/fuse/fuseMisc.cpp1
-rw-r--r--netfs/fuse/fuseSystem.cpp1
-rw-r--r--netfs/fuse/pch.hpp11
-rw-r--r--netfs/lib/Jamfile.jam5
-rw-r--r--netfs/lib/entCache.cpp1
-rw-r--r--netfs/lib/pch.hpp18
17 files changed, 0 insertions, 81 deletions
diff --git a/netfs/daemon/Jamfile.jam b/netfs/daemon/Jamfile.jam
index 6519add..903b938 100644
--- a/netfs/daemon/Jamfile.jam
+++ b/netfs/daemon/Jamfile.jam
@@ -1,15 +1,5 @@
import package ;
-cpp-pch pch : pch.hpp :
- <define>_FILE_OFFSET_BITS=64
- <implicit-dependency>../ice//netfsComms
- <implicit-dependency>netfsdConfiguration
- <library>../ice//netfsComms
- <library>../lib//netfsCommon
- <library>..//boost_thread
- <library>..//Ice
- ;
-
lib netfsdConfiguration :
daemonConfig.ice
:
@@ -31,7 +21,6 @@ lib netfsdConfiguration :
;
lib netfsd :
- pch
[ glob *.cpp ]
:
<define>_FILE_OFFSET_BITS=64
diff --git a/netfs/daemon/daemon.cpp b/netfs/daemon/daemon.cpp
index 81a0462..9e8a60a 100644
--- a/netfs/daemon/daemon.cpp
+++ b/netfs/daemon/daemon.cpp
@@ -1,4 +1,3 @@
-#include <pch.hpp>
#include <Ice/Ice.h>
#include "daemon.h"
#include "daemonService.h"
diff --git a/netfs/daemon/daemonDirectory.cpp b/netfs/daemon/daemonDirectory.cpp
index b61b8be..86b595f 100644
--- a/netfs/daemon/daemonDirectory.cpp
+++ b/netfs/daemon/daemonDirectory.cpp
@@ -1,4 +1,3 @@
-#include <pch.hpp>
#include <Ice/ObjectAdapter.h>
#include <dirent.h>
#include <errno.h>
diff --git a/netfs/daemon/daemonFile.cpp b/netfs/daemon/daemonFile.cpp
index 313027f..48aa025 100644
--- a/netfs/daemon/daemonFile.cpp
+++ b/netfs/daemon/daemonFile.cpp
@@ -1,4 +1,3 @@
-#include <pch.hpp>
#include <Ice/ObjectAdapter.h>
#include <errno.h>
#include <map>
diff --git a/netfs/daemon/daemonService.cpp b/netfs/daemon/daemonService.cpp
index 9a88688..fe77e5e 100644
--- a/netfs/daemon/daemonService.cpp
+++ b/netfs/daemon/daemonService.cpp
@@ -1,4 +1,3 @@
-#include <pch.hpp>
#include "daemon.h"
#include "daemonService.h"
#include "daemonVolume.h"
diff --git a/netfs/daemon/daemonVolume.cpp b/netfs/daemon/daemonVolume.cpp
index 4b8fe29..087eaf7 100644
--- a/netfs/daemon/daemonVolume.cpp
+++ b/netfs/daemon/daemonVolume.cpp
@@ -1,4 +1,3 @@
-#include <pch.hpp>
#include <Ice/ObjectAdapter.h>
#include <errno.h>
#include <map>
diff --git a/netfs/daemon/pch.hpp b/netfs/daemon/pch.hpp
deleted file mode 100644
index adc5ff2..0000000
--- a/netfs/daemon/pch.hpp
+++ /dev/null
@@ -1,13 +0,0 @@
-#ifdef BOOST_BUILD_PCH_ENABLED
-#ifndef NETFS_DAEMON_PCH
-#define NETFS_DAEMON_PCH
-
-#include "../lib/pch.hpp"
-#include <boost/filesystem/path.hpp>
-#include "daemon.h"
-#include <IceBox/IceBox.h>
-#include <Ice/Ice.h>
-
-#endif
-#endif
-
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
-
diff --git a/netfs/lib/Jamfile.jam b/netfs/lib/Jamfile.jam
index 1777679..ebaa77e 100644
--- a/netfs/lib/Jamfile.jam
+++ b/netfs/lib/Jamfile.jam
@@ -1,9 +1,4 @@
-cpp-pch pch : pch.hpp :
- <define>_FILE_OFFSET_BITS=64
- ;
-
lib netfsCommon :
- pch
[ glob *.cpp ]
:
<define>_FILE_OFFSET_BITS=64
diff --git a/netfs/lib/entCache.cpp b/netfs/lib/entCache.cpp
index a8db44d..6699a4b 100644
--- a/netfs/lib/entCache.cpp
+++ b/netfs/lib/entCache.cpp
@@ -1,4 +1,3 @@
-#include <pch.hpp>
#include "entCache.h"
#include <exceptions.h>
#include <lockHelpers.h>
diff --git a/netfs/lib/pch.hpp b/netfs/lib/pch.hpp
deleted file mode 100644
index 82712d2..0000000
--- a/netfs/lib/pch.hpp
+++ /dev/null
@@ -1,18 +0,0 @@
-#ifdef BOOST_BUILD_PCH_ENABLED
-#ifndef NETFS_PCH
-#define NETFS_PCH
-
-#include <boost/thread/shared_mutex.hpp>
-#include <boost/multi_index_container_fwd.hpp>
-#include <boost/multi_index/member.hpp>
-#include <boost/multi_index/ordered_index_fwd.hpp>
-#include <exception>
-#include <IceUtil/Shared.h>
-#include <IceUtil/Handle.h>
-#include <map>
-#include <set>
-#include <string>
-
-#endif
-#endif
-