This commit is contained in:
Thomas Bernard 2019-03-08 17:02:26 +01:00
parent 8d16b475b6
commit 609eb7061d
No known key found for this signature in database
GPG Key ID: 0FF11B67A5C0863C
2 changed files with 2 additions and 3 deletions

View File

@ -2,6 +2,7 @@ install:
- set PATH=C:\msys64\mingw32\bin;C:\msys64\usr\bin;%PATH% - set PATH=C:\msys64\mingw32\bin;C:\msys64\usr\bin;%PATH%
- mingw32-make -v - mingw32-make -v
- make -v - make -v
- uname
build_script: build_script:
- mingw32-make 3rdparty API=win32 - mingw32-make 3rdparty API=win32

View File

@ -90,15 +90,13 @@
#include <sys/param.h> #include <sys/param.h>
#endif #endif
#if !defined(WIN32)
#if defined(__macosx__) #if defined(__macosx__)
#include <machine/endian.h> #include <machine/endian.h>
#elif defined(__FreeBSD__) #elif defined(__FreeBSD__)
#include <sys/endian.h> #include <sys/endian.h>
#else #elif !defined(WIN32)
#include <endian.h> #include <endian.h>
#endif #endif
#endif
#include "gfx2log.h" #include "gfx2log.h"
#include "const.h" #include "const.h"