diff options
-rw-r--r-- | gnu/usr.bin/cvs/config.h.in | 3 | ||||
-rw-r--r-- | gnu/usr.bin/cvs/configure | 2 | ||||
-rw-r--r-- | gnu/usr.bin/cvs/configure.in | 2 |
3 files changed, 5 insertions, 2 deletions
diff --git a/gnu/usr.bin/cvs/config.h.in b/gnu/usr.bin/cvs/config.h.in index 41f7052b232..0ee493edd2a 100644 --- a/gnu/usr.bin/cvs/config.h.in +++ b/gnu/usr.bin/cvs/config.h.in @@ -278,6 +278,9 @@ /* Define if you have the <string.h> header file. */ #undef HAVE_STRING_H +/* Define if you have the <stdint.h> header file. */ +#undef HAVE_STDINT_H + /* Define if you have the <sys/bsdtypes.h> header file. */ #undef HAVE_SYS_BSDTYPES_H diff --git a/gnu/usr.bin/cvs/configure b/gnu/usr.bin/cvs/configure index 3dec4059d30..53e329b67ed 100644 --- a/gnu/usr.bin/cvs/configure +++ b/gnu/usr.bin/cvs/configure @@ -2322,7 +2322,7 @@ EOF fi for ac_hdr in errno.h unistd.h string.h memory.h utime.h fcntl.h ndbm.h \ - limits.h sys/file.h \ + limits.h stdint.h sys/file.h \ sys/param.h sys/select.h sys/time.h \ io.h direct.h sys/bsdtypes.h sys/resource.h syslog.h do diff --git a/gnu/usr.bin/cvs/configure.in b/gnu/usr.bin/cvs/configure.in index ebabc1b4347..803301646e6 100644 --- a/gnu/usr.bin/cvs/configure.in +++ b/gnu/usr.bin/cvs/configure.in @@ -78,7 +78,7 @@ AC_HEADER_DIRENT AC_HEADER_STDC AC_HEADER_SYS_WAIT AC_CHECK_HEADERS(errno.h unistd.h string.h memory.h utime.h fcntl.h ndbm.h \ - limits.h sys/file.h \ + limits.h stdint.h sys/file.h \ sys/param.h sys/select.h sys/time.h \ io.h direct.h sys/bsdtypes.h sys/resource.h syslog.h) AC_HEADER_STAT |