From: Karl DeBisschop Date: Wed, 9 Apr 2003 03:44:29 +0000 (+0000) Subject: rewrite #elif to be compatible with traditional C X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=7726dc6863d745360a78aa8095ef36b63cbc8016;p=nagiosplug.git rewrite #elif to be compatible with traditional C git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@482 f882894a-f735-0410-b71e-b25c423dba1c --- diff --git a/plugins/common.h b/plugins/common.h index af97952..280333e 100644 --- a/plugins/common.h +++ b/plugins/common.h @@ -78,10 +78,12 @@ #if HAVE_LWRES_NETDB_H #include -#elif !HAVE_GETADDRINFO -#include "getaddrinfo.h" #else -#include +# if !HAVE_GETADDRINFO +# include "getaddrinfo.h" +# else +# include +# endif #endif /*