X-Git-Url: http://git.meshlink.io/?p=meshlink;a=blobdiff_plain;f=src%2Fhave.h;h=f64e15d09d9e57dd4e6f8bd3f500f755f4ef7d01;hp=2b5f24637ae683f41d890959cc9844abbf814b69;hb=963c5055505f2fc117cd5efa06eaa02c9b2bf85d;hpb=9415f4b08fb2ca9ae933edd0bf8b096db195ebae diff --git a/src/have.h b/src/have.h index 2b5f2463..f64e15d0 100644 --- a/src/have.h +++ b/src/have.h @@ -1,6 +1,9 @@ +#ifndef MESHLINK_HAVE_H +#define MESHLINK_HAVE_H + /* have.h -- include headers which are known to exist - Copyright (C) 2014 Guus Sliepen + Copyright (C) 2014, 2017 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 @@ -17,9 +20,6 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ -#ifndef __MESHLINK_HAVE_H__ -#define __MESHLINK_HAVE_H__ - #ifdef HAVE_MINGW #ifdef WITH_WINDOWS2000 #define WINVER Windows2000 @@ -32,6 +32,9 @@ #include #include #include +#include +#include +#include #include #include #include @@ -39,6 +42,7 @@ #include #include #include +#include #ifdef HAVE_MINGW #include @@ -47,18 +51,10 @@ #include #endif -#ifdef HAVE_STDBOOL_H -#include -#endif - #ifdef HAVE_TERMIOS_H #include #endif -#ifdef HAVE_INTTYPES_H -#include -#endif - /* Include system specific headers */ #ifdef HAVE_SYSLOG_H @@ -120,10 +116,14 @@ #include #endif +#ifdef HAVE_IFADDRS_H +#include +#endif + #ifdef HAVE_MINGW #define SLASH "\\" #else #define SLASH "/" #endif -#endif /* __MESHLINK_SYSTEM_H__ */ +#endif