This is a multi-part message in MIME format.
--------------010208020404010800090101
Content-Type: text/plain; charset=ISO-8859-15
Content-Transfer-Encoding: 7bit
Hi List,
Hi Ethan,
logging.c is actually broken cause of needing header file stdarg.h for
va_list macro used in logging.c on line 532.
autoconf checks for this, but it's not included in the include/config.h.in.
Since stdarg is a standard headerfile (i think) a #ifdef would not be
necessary.
Here's a patch that works fine for me.
Best wishes
Hendrik
--------------010208020404010800090101
Content-Type: text/x-patch;
name="config.h.in.patch"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline;
filename="config.h.in.patch"
--- nagios3-clean/include/config.h.in 2007-02-24 12:09:22.000000000 +0100
+++ nagios3/include/config.h.in 2007-04-28 11:22:24.000000000 +0200
@@ -113,6 +113,7 @@
#include
#include
+#include
/* needed for the time_t structures we use later... */
/* this include must come before sys/resource.h or we can have problems on some OSes */
--------------010208020404010800090101--
This post was automatically imported from historical nagios-devel mailing list archives
Original poster: [email protected]