diff options
author | BlockMen <nmuelll@web.de> | 2014-02-26 14:21:38 +0100 |
---|---|---|
committer | BlockMen <nmuelll@web.de> | 2014-02-26 14:21:38 +0100 |
commit | 18fd913e696e29fa6a6f65e1399772cd28d9ff83 (patch) | |
tree | 44979e3990db1fd08bde89dda61da9e44edeb4c5 | |
parent | d4be81155eb845c4c5c6710e0472d1c254552053 (diff) | |
download | minetest-18fd913e696e29fa6a6f65e1399772cd28d9ff83.tar.gz minetest-18fd913e696e29fa6a6f65e1399772cd28d9ff83.tar.bz2 minetest-18fd913e696e29fa6a6f65e1399772cd28d9ff83.zip |
Fix MSVC build
-rw-r--r-- | src/biome.cpp | 1 | ||||
-rw-r--r-- | src/convert_json.cpp | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/biome.cpp b/src/biome.cpp index 1afad00a3..dca900cbb 100644 --- a/src/biome.cpp +++ b/src/biome.cpp @@ -24,6 +24,7 @@ with this program; if not, write to the Free Software Foundation, Inc., #include "util/numeric.h" #include "main.h" #include "util/mathconstants.h" +#include "porting.h" NoiseParams nparams_biome_def_heat(50, 50, v3f(500.0, 500.0, 500.0), 5349, 3, 0.70); NoiseParams nparams_biome_def_humidity(50, 50, v3f(500.0, 500.0, 500.0), 842, 3, 0.55); diff --git a/src/convert_json.cpp b/src/convert_json.cpp index 917d6fcb3..c8e57aaf7 100644 --- a/src/convert_json.cpp +++ b/src/convert_json.cpp @@ -29,6 +29,7 @@ with this program; if not, write to the Free Software Foundation, Inc., #include "settings.h" #include "version.h" #include "httpfetch.h" +#include "porting.h" Json::Value fetchJsonValue(const std::string url, struct curl_slist *chunk) { |