1 #ifndef MESHLINK_HAVE_H
2 #define MESHLINK_HAVE_H
5 have.h -- include headers which are known to exist
6 Copyright (C) 2014, 2017 Guus Sliepen <guus@meshlink.io>
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License along
19 with this program; if not, write to the Free Software Foundation, Inc.,
20 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
24 #ifdef WITH_WINDOWS2000
25 #define WINVER Windows2000
27 #define WINVER WindowsXP
29 #define WIN32_LEAN_AND_MEAN
58 #ifdef HAVE_INTTYPES_H
62 /* Include system specific headers */
68 #ifdef HAVE_SYS_TIME_H
76 #ifdef HAVE_SYS_TYPES_H
77 #include <sys/types.h>
80 #ifdef HAVE_SYS_STAT_H
84 #ifdef HAVE_SYS_FILE_H
88 #ifdef HAVE_SYS_WAIT_H
92 #ifdef HAVE_SYS_PARAM_H
93 #include <sys/param.h>
96 #ifdef HAVE_SYS_RESOURCE_H
97 #include <sys/resource.h>
108 /* SunOS really wants sys/socket.h BEFORE net/if.h,
109 and FreeBSD wants these lines below the rest. */
115 #ifdef HAVE_SYS_SOCKET_H
116 #include <sys/socket.h>
119 #ifdef HAVE_ARPA_INET_H
120 #include <arpa/inet.h>