- include Winsock2.h for windows

- add a __BSD__ define for all bsd platforms if it doesn't exist.
This commit is contained in:
Thilo Schulz 2008-04-05 14:28:57 +00:00
parent 7b80773212
commit 70cd2ccfab
2 changed files with 5 additions and 1 deletions

View File

@ -24,7 +24,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#include "../qcommon/qcommon.h" #include "../qcommon/qcommon.h"
#ifdef _WIN32 #ifdef _WIN32
// #include <winsock.h> #include <Winsock2.h>
#include <Ws2tcpip.h> #include <Ws2tcpip.h>
#include <Wspiapi.h> #include <Wspiapi.h>

View File

@ -175,6 +175,10 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#include <sys/types.h> #include <sys/types.h>
#include <machine/endian.h> #include <machine/endian.h>
#ifndef __BSD__
#define __BSD__
#endif
#if defined(__FreeBSD__) #if defined(__FreeBSD__)
#define OS_STRING "freebsd" #define OS_STRING "freebsd"
#elif defined(__OpenBSD__) #elif defined(__OpenBSD__)