Hopefully fix includes on mingw
authorPerttu Ahola <celeron55@gmail.com>
Sun, 17 Jun 2012 15:05:13 +0000 (18:05 +0300)
committerPerttu Ahola <celeron55@gmail.com>
Sun, 17 Jun 2012 15:05:13 +0000 (18:05 +0300)
src/util/numeric.cpp
src/util/string.cpp
src/util/timetaker.cpp

index d082cdb76f90d95997da680d2c614ff37e5b840d..0ac812eb7569ddcc769a32572c8f2e99725bb94f 100644 (file)
@@ -19,8 +19,8 @@ with this program; if not, write to the Free Software Foundation, Inc.,
 
 #include "numeric.h"
 
-#include "log.h"
-#include "constants.h" // BS, MAP_BLOCKSIZE
+#include "../log.h"
+#include "../constants.h" // BS, MAP_BLOCKSIZE
 #include <iostream>
 
 // Calculate the borders of a "d-radius" cube
index ee4df849e1200167c577ec492ae98ba457ccae67..fb39a24c3a3ad9e0481c22f7cec9210b39651e77 100644 (file)
@@ -19,8 +19,8 @@ with this program; if not, write to the Free Software Foundation, Inc.,
 
 #include "string.h"
 
-#include "sha1.h"
-#include "base64.h"
+#include "../sha1.h"
+#include "../base64.h"
 
 // Get an sha-1 hash of the player's name combined with
 // the password entered. That's what the server uses as
index 9cc87f3eaee63e00a9a637ba857fca5c49a2e170..52c618931a0fec1af0bef84dae8900fea87c1157 100644 (file)
@@ -19,8 +19,8 @@ with this program; if not, write to the Free Software Foundation, Inc.,
 
 #include "timetaker.h"
 
-#include "gettime.h"
-#include "log.h"
+#include "../gettime.h"
+#include "../log.h"
 #include <ostream>
 
 TimeTaker::TimeTaker(const char *name, u32 *result)