From 4ee4d2f9e72284ac3516a8e08c6ff2d452c2b2e3 Mon Sep 17 00:00:00 2001 From: Marcus Brinkmann Date: Wed, 3 Sep 2003 19:41:34 +0000 Subject: 2003-09-03 Marcus Brinkmann Released 0.4. * src/gpg-error.h: Define GPG_ERR_INLINE to nothing if the compiler does not implement C99. * configure.ac: (AC_INIT): Bump up version number. --- src/gpg-error.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/gpg-error.h b/src/gpg-error.h index 260f135..96eaf9a 100644 --- a/src/gpg-error.h +++ b/src/gpg-error.h @@ -23,8 +23,10 @@ #ifdef __GNUC__ #define GPG_ERR_INLINE __inline__ -#else +#elif __STDC_VERSION__ >= 199901L #define GPG_ERR_INLINE inline +#else +#define GPG_ERR_INLINE #endif /* The GnuPG project consists of many components. Error codes are -- cgit v1.2.3