diff options
author | sapier <Sapier at GMX dot net> | 2013-10-27 13:13:40 +0100 |
---|---|---|
committer | kwolekr <kwolekr@minetest.net> | 2013-11-17 02:27:00 -0500 |
commit | 3985c01ad71159b888677d0fe2019d7a05debeed (patch) | |
tree | e2b89f90d9a7ee6585538ffc4837074c601e51ce /src | |
parent | cca4f09ba15eca707a6ae1717a00fcf73c6efa6f (diff) | |
download | minetest-3985c01ad71159b888677d0fe2019d7a05debeed.tar.gz minetest-3985c01ad71159b888677d0fe2019d7a05debeed.tar.bz2 minetest-3985c01ad71159b888677d0fe2019d7a05debeed.zip |
Don't use msvc libs for mingw build
Diffstat (limited to 'src')
-rw-r--r-- | src/serialization.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/serialization.cpp b/src/serialization.cpp index 118bad467..1fd75c97a 100644 --- a/src/serialization.cpp +++ b/src/serialization.cpp @@ -20,7 +20,7 @@ with this program; if not, write to the Free Software Foundation, Inc., #include "serialization.h" #include "util/serialize.h" -#ifdef _WIN32 +#ifdef _MSC_VER #define ZLIB_WINAPI #endif #include "zlib.h" |