From e47b74ede50b0f4feabda65f5c33fee6da13c136 Mon Sep 17 00:00:00 2001 From: Ton Voon Date: Tue, 16 Sep 2003 12:32:13 +0000 Subject: AIX problem with enum TRUE and FALSE (Ludse Verhoeven) git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@730 f882894a-f735-0410-b71e-b25c423dba1c diff --git a/AUTHORS b/AUTHORS index a92db2d..fcf612a 100644 --- a/AUTHORS +++ b/AUTHORS @@ -82,3 +82,4 @@ Eric Bollengier Edwin Eefting Peter Hoogendijk Kjell Sundtjonn +Ludse Verhoeven diff --git a/plugins/common.h b/plugins/common.h index 372e59a..0c21fbe 100644 --- a/plugins/common.h +++ b/plugins/common.h @@ -139,10 +139,13 @@ enum { ERROR = -1 }; +/* AIX seems to have this defined somewhere else */ +#ifndef FALSE enum { FALSE, TRUE }; +#endif enum { STATE_OK, -- cgit v0.10-9-g596f