From 76367ea9753aa9cef7cf5d3c954f55b5725f31da Mon Sep 17 00:00:00 2001 From: paul Date: Mon, 14 Nov 2005 14:05:35 +0000 Subject: [bug #231] check and include stdint.h, also add std=c99 to gcc CFLAGS 2005-11-14 Paul Jakma * configure.ac: Tell gcc we like C99. [bug #231] Check and test for stdint.h. * lib/zebra.h: [bug #231] include stdint, if its there. --- lib/ChangeLog | 1 + lib/zebra.h | 3 +++ 2 files changed, 4 insertions(+) (limited to 'lib') diff --git a/lib/ChangeLog b/lib/ChangeLog index b6407c4a..42934575 100644 --- a/lib/ChangeLog +++ b/lib/ChangeLog @@ -18,6 +18,7 @@ Keep track of number of consecutive runs, go into 'overdrive' if queue is being flooded, we can't avoid making heavy use of resources, better to use CPU than ever more RAM. + * zebra.h: [bug #231] include stdint, if its there. 2005-11-05 Paul Jakma diff --git a/lib/zebra.h b/lib/zebra.h index 1739d771..0aa98a4f 100644 --- a/lib/zebra.h +++ b/lib/zebra.h @@ -82,6 +82,9 @@ typedef int socklen_t; #ifdef HAVE_LIMITS_H #include #endif /* HAVE_LIMITS_H */ +#ifdef HAVE_STDINT_H +#include +#endif /* HAVE_STDINT_H */ /* machine dependent includes */ #ifdef SUNOS_5 -- cgit v1.2.1