summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2015-02-16 18:45:06 +0000
committerDan Goodliffe <dan@randomdan.homeip.net>2015-05-06 00:40:49 +0100
commit3bddefde3675a042c7e05af23a1f3cfd52c874ad (patch)
tree97b3ae8ea163fe296a6f788378dbfee147409579
parentAdd the start of some test framework, complete with hacky initialisations (diff)
downloadnetfs-3bddefde3675a042c7e05af23a1f3cfd52c874ad.tar.bz2
netfs-3bddefde3675a042c7e05af23a1f3cfd52c874ad.tar.xz
netfs-3bddefde3675a042c7e05af23a1f3cfd52c874ad.zip
Actually use precompiled headers
-rw-r--r--netfs/daemon/daemon.cpp2
-rw-r--r--netfs/daemon/daemonDirectory.cpp2
-rw-r--r--netfs/daemon/daemonFile.cpp2
-rw-r--r--netfs/daemon/daemonService.cpp2
-rw-r--r--netfs/daemon/daemonVolume.cpp2
-rw-r--r--netfs/daemon/pch.hpp2
-rw-r--r--netfs/fuse/fuseApp.cpp2
-rw-r--r--netfs/fuse/fuseDirs.cpp2
-rw-r--r--netfs/fuse/fuseFiles.cpp2
-rw-r--r--netfs/fuse/fuseMisc.cpp2
-rw-r--r--netfs/fuse/fuseSystem.cpp2
-rw-r--r--netfs/fuse/pch.hpp1
-rw-r--r--netfs/lib/entCache.cpp2
-rw-r--r--netfs/lib/pch.hpp3
14 files changed, 15 insertions, 13 deletions
diff --git a/netfs/daemon/daemon.cpp b/netfs/daemon/daemon.cpp
index 6c231f9..0b7b64f 100644
--- a/netfs/daemon/daemon.cpp
+++ b/netfs/daemon/daemon.cpp
@@ -1,4 +1,4 @@
-#include "pch.hpp"
+#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 b43806f..b61b8be 100644
--- a/netfs/daemon/daemonDirectory.cpp
+++ b/netfs/daemon/daemonDirectory.cpp
@@ -1,4 +1,4 @@
-#include "pch.hpp"
+#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 79077a1..3268be8 100644
--- a/netfs/daemon/daemonFile.cpp
+++ b/netfs/daemon/daemonFile.cpp
@@ -1,4 +1,4 @@
-#include "pch.hpp"
+#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 4b9e804..fe587f1 100644
--- a/netfs/daemon/daemonService.cpp
+++ b/netfs/daemon/daemonService.cpp
@@ -1,4 +1,4 @@
-#include "pch.hpp"
+#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 0caead6..0cad47e 100644
--- a/netfs/daemon/daemonVolume.cpp
+++ b/netfs/daemon/daemonVolume.cpp
@@ -1,4 +1,4 @@
-#include "pch.hpp"
+#include <pch.hpp>
#include <Ice/ObjectAdapter.h>
#include <errno.h>
#include <map>
diff --git a/netfs/daemon/pch.hpp b/netfs/daemon/pch.hpp
index 3229655..adc5ff2 100644
--- a/netfs/daemon/pch.hpp
+++ b/netfs/daemon/pch.hpp
@@ -6,8 +6,8 @@
#include <boost/filesystem/path.hpp>
#include "daemon.h"
#include <IceBox/IceBox.h>
+#include <Ice/Ice.h>
#endif
#endif
-
diff --git a/netfs/fuse/fuseApp.cpp b/netfs/fuse/fuseApp.cpp
index 841d670..2f3b288 100644
--- a/netfs/fuse/fuseApp.cpp
+++ b/netfs/fuse/fuseApp.cpp
@@ -1,4 +1,4 @@
-#include "pch.hpp"
+#include <pch.hpp>
#include <string.h>
#include "fuseApp.h"
#include "lockHelpers.h"
diff --git a/netfs/fuse/fuseDirs.cpp b/netfs/fuse/fuseDirs.cpp
index ad3d017..156dae6 100644
--- a/netfs/fuse/fuseDirs.cpp
+++ b/netfs/fuse/fuseDirs.cpp
@@ -1,4 +1,4 @@
-#include "pch.hpp"
+#include <pch.hpp>
#include "fuseApp.h"
#include "misc.h"
#include "lockHelpers.h"
diff --git a/netfs/fuse/fuseFiles.cpp b/netfs/fuse/fuseFiles.cpp
index b6cf8db..b8399f0 100644
--- a/netfs/fuse/fuseFiles.cpp
+++ b/netfs/fuse/fuseFiles.cpp
@@ -1,4 +1,4 @@
-#include "pch.hpp"
+#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 f6c5976..670c9ae 100644
--- a/netfs/fuse/fuseMisc.cpp
+++ b/netfs/fuse/fuseMisc.cpp
@@ -1,4 +1,4 @@
-#include "pch.hpp"
+#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 36c6af5..e2a9ab7 100644
--- a/netfs/fuse/fuseSystem.cpp
+++ b/netfs/fuse/fuseSystem.cpp
@@ -1,4 +1,4 @@
-#include "pch.hpp"
+#include <pch.hpp>
#include <typeConvert.h>
#include "fuseApp.h"
diff --git a/netfs/fuse/pch.hpp b/netfs/fuse/pch.hpp
index b2a0908..2342973 100644
--- a/netfs/fuse/pch.hpp
+++ b/netfs/fuse/pch.hpp
@@ -5,6 +5,7 @@
#include "../lib/pch.hpp"
#include "../../libfusepp/fuseAppBase.h"
#include <fuse.h>
+#include <Ice/Ice.h>
#endif
#endif
diff --git a/netfs/lib/entCache.cpp b/netfs/lib/entCache.cpp
index a4cf27d..b07dda7 100644
--- a/netfs/lib/entCache.cpp
+++ b/netfs/lib/entCache.cpp
@@ -1,4 +1,4 @@
-#include "pch.hpp"
+#include <pch.hpp>
#include "entCache.h"
#include <exceptions.h>
#include "lockHelpers.h"
diff --git a/netfs/lib/pch.hpp b/netfs/lib/pch.hpp
index ffd9890..fc37faa 100644
--- a/netfs/lib/pch.hpp
+++ b/netfs/lib/pch.hpp
@@ -7,7 +7,8 @@
#include <boost/multi_index/member.hpp>
#include <boost/multi_index/ordered_index.hpp>
#include <exception>
-#include <Ice/Ice.h>
+#include <IceUtil/Shared.h>
+#include <IceUtil/Handle.h>
#include <map>
#include <set>
#include <string>