From: Perttu Ahola Date: Sun, 17 Jun 2012 15:05:13 +0000 (+0300) Subject: Hopefully fix includes on mingw X-Git-Tag: 0.4.0~15 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=c9a2058361647d81b8303fc6892f8fb28a4288c5;p=oweals%2Fminetest.git Hopefully fix includes on mingw --- diff --git a/src/util/numeric.cpp b/src/util/numeric.cpp index d082cdb76..0ac812eb7 100644 --- a/src/util/numeric.cpp +++ b/src/util/numeric.cpp @@ -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 // Calculate the borders of a "d-radius" cube diff --git a/src/util/string.cpp b/src/util/string.cpp index ee4df849e..fb39a24c3 100644 --- a/src/util/string.cpp +++ b/src/util/string.cpp @@ -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 diff --git a/src/util/timetaker.cpp b/src/util/timetaker.cpp index 9cc87f3ea..52c618931 100644 --- a/src/util/timetaker.cpp +++ b/src/util/timetaker.cpp @@ -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 TimeTaker::TimeTaker(const char *name, u32 *result)