diff options
| author | he <he@NetBSD.org> | 2005-07-17 09:22:03 +0000 |
|---|---|---|
| committer | he <he@NetBSD.org> | 2005-07-17 09:22:03 +0000 |
| commit | 92e13de495f4accffcc44bc54b0bc4a34c668f50 (patch) | |
| tree | 2e3bb1eed7be3db57ddae47c10a25537dd2ae204 /gnu/usr.bin/gettext/include | |
| parent | 2a6dc9d02d08795af4dfae0b3f559e008b87b6c8 (diff) | |
Only define HAVE_STDBOOL_H if we are using __GNUC__ >= 3.
Fixes build problem for vax.
Diffstat (limited to 'gnu/usr.bin/gettext/include')
| -rw-r--r-- | gnu/usr.bin/gettext/include/config.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/usr.bin/gettext/include/config.h b/gnu/usr.bin/gettext/include/config.h index 1ff62ea707b..b6208fd6e54 100644 --- a/gnu/usr.bin/gettext/include/config.h +++ b/gnu/usr.bin/gettext/include/config.h @@ -364,7 +364,9 @@ #define HAVE_SNPRINTF 1 /* Define to 1 if stdbool.h conforms to C99. */ +#if (__GNUC__ >= 3) #define HAVE_STDBOOL_H 1 +#endif /* Define to 1 if you have the <stddef.h> header file. */ #define HAVE_STDDEF_H 1 |
