Browse Source

build fixes

Adam Ierymenko 11 years ago
parent
commit
2e46bb4264
3 changed files with 11 additions and 7 deletions
  1. 4 4
      ipc/IpcConnection.hpp
  2. 3 3
      ipc/IpcListener.hpp
  3. 4 0
      ipc/NodeControlClient.cpp

+ 4 - 4
ipc/IpcConnection.hpp

@@ -28,10 +28,10 @@
 #ifndef ZT_IPCCONNECTION_HPP
 #ifndef ZT_IPCCONNECTION_HPP
 #define ZT_IPCCONNECTION_HPP
 #define ZT_IPCCONNECTION_HPP
 
 
-#include "Constants.hpp"
-#include "Thread.hpp"
-#include "NonCopyable.hpp"
-#include "Mutex.hpp"
+#include "../node/Constants.hpp"
+#include "../node/Thread.hpp"
+#include "../node/NonCopyable.hpp"
+#include "../node/Mutex.hpp"
 
 
 #ifdef __WINDOWS__
 #ifdef __WINDOWS__
 #include <WinSock2.h>
 #include <WinSock2.h>

+ 3 - 3
ipc/IpcListener.hpp

@@ -28,9 +28,9 @@
 #ifndef ZT_IPCLISTENER_HPP
 #ifndef ZT_IPCLISTENER_HPP
 #define ZT_IPCLISTENER_HPP
 #define ZT_IPCLISTENER_HPP
 
 
-#include "Constants.hpp"
-#include "Thread.hpp"
-#include "NonCopyable.hpp"
+#include "../node/Constants.hpp"
+#include "../node/Thread.hpp"
+#include "../node/NonCopyable.hpp"
 #include "IpcConnection.hpp"
 #include "IpcConnection.hpp"
 
 
 #include <string>
 #include <string>

+ 4 - 0
ipc/NodeControlClient.cpp

@@ -29,6 +29,10 @@
 
 
 #include "../node/Constants.hpp"
 #include "../node/Constants.hpp"
 #include "../node/Utils.hpp"
 #include "../node/Utils.hpp"
+#include "../node/Defaults.hpp"
+
+#include "IpcConnection.hpp"
+#include "IpcListener.hpp"
 
 
 namespace ZeroTier {
 namespace ZeroTier {