X-Git-Url: https://www.tinc-vpn.org/git/browse?a=blobdiff_plain;f=have.h;h=0ab813461c41bcf54bd8d397cfa18d334066feb8;hb=c108c79a22118ef7246a3d7b3bc20e205e11d179;hp=cf5c173a107af5ad6588107fd310e9c9f875516e;hpb=d47ab576a25d91600acf7eecf376ed026bdc9c83;p=tinc diff --git a/have.h b/have.h index cf5c173a..0ab81346 100644 --- a/have.h +++ b/have.h @@ -1,7 +1,7 @@ /* have.h -- include headers which are known to exist Copyright (C) 1998-2005 Ivo Timmermans - 2003-2009 Guus Sliepen + 2003-2011 Guus Sliepen This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -21,6 +21,15 @@ #ifndef __TINC_HAVE_H__ #define __TINC_HAVE_H__ +#ifdef HAVE_MINGW +#ifdef WITH_WINDOWS2000 +#define WINVER Windows2000 +#else +#define WINVER WindowsXP +#endif +#define WIN32_LEAN_AND_MEAN +#endif + #include #include #include @@ -32,11 +41,6 @@ #include #ifdef HAVE_MINGW -#ifdef WITH_WINDOWS2000 -#define WINVER Windows2000 -#else -#define WINVER WindowsXP -#endif #include #include #include @@ -54,10 +58,6 @@ #include #endif -#ifdef HAVE_ALLOCA_H -#include -#endif - /* Include system specific headers */ #ifdef HAVE_SYSLOG_H @@ -68,6 +68,10 @@ #include #endif +#ifdef HAVE_TIME_H +#include +#endif + #ifdef HAVE_SYS_TYPES_H #include #endif @@ -92,10 +96,18 @@ #include #endif +#ifdef HAVE_SYS_RESOURCE_H +#include +#endif + #ifdef HAVE_SYS_UIO_H #include #endif +#ifdef HAVE_SYS_UN_H +#include +#endif + #ifdef HAVE_DIRENT_H #include #endif @@ -123,10 +135,18 @@ #include #endif +#ifdef HAVE_NET_TUN_IF_TUN_H +#include +#endif + #ifdef HAVE_NET_IF_TAP_H #include #endif +#ifdef HAVE_NET_TAP_IF_TAP_H +#include +#endif + #ifdef HAVE_NETINET_IN_SYSTM_H #include #endif @@ -175,4 +195,8 @@ #include #endif +#ifdef HAVE_EVENT_H +#include +#endif + #endif /* __TINC_SYSTEM_H__ */