Fix compilation of NLNET under MinGW

hg/feature/game-device
kaetemi 11 years ago
parent 3dd11fe157
commit 1df9bec563

@ -63,6 +63,8 @@
#include "nel/misc/file.h"
#ifdef NL_OS_WINDOWS
#define NOMINMAX
#ifndef NL_COMP_MINGW
#define NOMINMAX
#endif
#include <windows.h>
#endif

@ -25,7 +25,9 @@
#include "nel/misc/o_xml.h"
#ifdef NL_OS_WINDOWS
#ifndef NL_COMP_MINGW
#define NOMINMAX
#endif
#include <windows.h>
#endif // NL_OS_WINDOWS

@ -24,7 +24,9 @@
#include "nel/net/net_log.h"
#ifdef NL_OS_WINDOWS
# define NOMINMAX
# ifndef NL_COMP_MINGW
# define NOMINMAX
# endif
# include <windows.h>
#elif defined NL_OS_UNIX
# include <netinet/in.h>

@ -22,7 +22,9 @@
#include "nel/net/net_log.h"
#ifdef NL_OS_WINDOWS
# define NOMINMAX
# ifndef NL_COMP_MINGW
# define NOMINMAX
# endif
# include <windows.h>
#elif defined NL_OS_UNIX
# include <unistd.h>

@ -25,7 +25,9 @@
#ifdef NL_OS_WINDOWS
# define NOMINMAX
# ifndef NL_COMP_MINGW
# define NOMINMAX
# endif
# include <windows.h>
#elif defined NL_OS_UNIX
# include <netinet/in.h>

@ -22,7 +22,9 @@
#ifdef NL_OS_WINDOWS
#define NOMINMAX
#ifndef NL_COMP_MINGW
# define NOMINMAX
#endif
#include <windows.h>
typedef sint socklen_t;

@ -24,8 +24,10 @@
// these defines is for IsDebuggerPresent(). it'll not compile on windows 95
// just comment this and the IsDebuggerPresent to compile on windows 95
# define _WIN32_WINDOWS 0x0410
# define WINVER 0x0400
# define NOMINMAX
# ifndef NL_COMP_MINGW
# define WINVER 0x0400
# define NOMINMAX
# endif
# include <windows.h>
# include <direct.h>
#elif defined NL_OS_UNIX

@ -22,7 +22,9 @@
#include "nel/misc/hierarchical_timer.h"
#ifdef NL_OS_WINDOWS
# define NOMINMAX
# ifndef NL_COMP_MINGW
# define NOMINMAX
# endif
# include <winsock2.h>
# include <windows.h>
# define socklen_t int

@ -17,7 +17,9 @@
#include "nel/misc/types_nl.h"
#ifdef NL_OS_WINDOWS
# define NOMINMAX
# ifndef NL_COMP_MINGW
# define NOMINMAX
# endif
# include <winsock2.h>
# include <windows.h>
#endif // NL_OS_WINDOWS

@ -21,7 +21,9 @@
#ifdef NL_OS_WINDOWS
# include <winsock2.h>
# define NOMINMAX
# ifndef NL_COMP_MINGW
# define NOMINMAX
# endif
# include <windows.h>
# define socklen_t int
# define ERROR_NUM WSAGetLastError()

@ -21,7 +21,9 @@
#ifdef NL_OS_WINDOWS
# include <winsock2.h>
# define NOMINMAX
# ifndef NL_COMP_MINGW
# define NOMINMAX
# endif
# include <windows.h>
# define socklen_t int
# define ERROR_NUM WSAGetLastError()

Loading…
Cancel
Save