X-Git-Url: https://tinc-vpn.org/git/browse?p=tinc;a=blobdiff_plain;f=have.h;h=72af069884f8e1a0d077cbe8edbfd61618c45ee4;hp=0befb3a5e8ddcfec605c5526c59a234b7374b43a;hb=ac48c4ee8c09c8144f830cb66386b9dbe7298440;hpb=dced64c5c3625f6d2f0674e9fed14455aabc635e diff --git a/have.h b/have.h index 0befb3a5..72af0698 100644 --- a/have.h +++ b/have.h @@ -1,7 +1,7 @@ /* have.h -- include headers which are known to exist - Copyright (C) 1998-2004 Ivo Timmermans - 2003-2004 Guus Sliepen + Copyright (C) 1998-2005 Ivo Timmermans + 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 @@ -13,14 +13,22 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #ifndef __TINC_HAVE_H__ #define __TINC_HAVE_H__ +#ifdef HAVE_MINGW +#ifdef WITH_WINDOWS2000 +#define WINVER Windows2000 +#else +#define WINVER WindowsXP +#endif +#endif + #include #include #include @@ -31,6 +39,12 @@ #include #include +#ifdef HAVE_MINGW +#include +#include +#include +#endif + #ifdef HAVE_STDBOOL_H #include #endif @@ -43,6 +57,10 @@ #include #endif +#ifdef HAVE_ALLOCA_H +#include +#endif + /* Include system specific headers */ #ifdef HAVE_SYSLOG_H @@ -53,6 +71,10 @@ #include #endif +#ifdef HAVE_TIME_H +#include +#endif + #ifdef HAVE_SYS_TYPES_H #include #endif @@ -77,10 +99,18 @@ #include #endif +#ifdef HAVE_SYS_RESOURCE_H +#include +#endif + #ifdef HAVE_SYS_UIO_H #include #endif +#ifdef HAVE_DIRENT_H +#include +#endif + /* SunOS really wants sys/socket.h BEFORE net/if.h, and FreeBSD wants these lines below the rest. */ @@ -96,14 +126,26 @@ #include #endif +#ifdef HAVE_NET_IF_TYPES_H +#include +#endif + #ifdef HAVE_NET_IF_TUN_H #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 @@ -152,9 +194,4 @@ #include #endif -#ifdef HAVE_MINGW -#include -#include -#endif - #endif /* __TINC_SYSTEM_H__ */