diff options
| author | Ruslan Ermilov <ru@FreeBSD.org> | 2002-10-13 08:36:16 +0000 |
|---|---|---|
| committer | Ruslan Ermilov <ru@FreeBSD.org> | 2002-10-13 08:36:16 +0000 |
| commit | 76930810cae52cc618976518b36a7e391f9288bf (patch) | |
| tree | 50a8e10725c33ea0f1c224a1bd682da5ce2b31cd /gnu | |
| parent | 52f5014e7313f5d2b947cd4a936beab554a87115 (diff) | |
Notes
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/usr.bin/groff/src/include/config.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/gnu/usr.bin/groff/src/include/config.h b/gnu/usr.bin/groff/src/include/config.h index 1d74fc87a2da..1546f4f8f778 100644 --- a/gnu/usr.bin/groff/src/include/config.h +++ b/gnu/usr.bin/groff/src/include/config.h @@ -1,5 +1,7 @@ /* $FreeBSD$ */ +#include <osreldate.h> + /* src/include/config.h. Generated by configure. */ /* src/include/config.hin. Generated automatically from configure.ac by autoheader. */ @@ -52,7 +54,11 @@ #define HAVE_ISATTY 1 /* Define if you have the <stdint.h> header file. */ +#if __FreeBSD_version >= 500028 #define HAVE_STDINT_H 1 +#else +/* #undef HAVE_STDINT_H */ +#endif /* Define if you have the <stdlib.h> header file. */ #define HAVE_STDLIB_H 1 @@ -150,4 +156,8 @@ /* Define uintmax_t to `unsigned long' or `unsigned long long' if <inttypes.h> does not exist. */ +#if __FreeBSD_version >= 500028 /* #undef uintmax_t */ +#else +#define uintmax_t unsigned long long +#endif |
