summaryrefslogtreecommitdiff
path: root/gnu/usr.bin/cvs
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2015-02-05 12:56:23 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2015-02-05 12:56:23 +0000
commitcef7c30e387bc3021a485b9f98027ddf05354f9a (patch)
tree1ea8b73095f7054883ab686cc5776c52acb5412f /gnu/usr.bin/cvs
parentcb0b37ebb036167342d46540e12d78b093586579 (diff)
Add missing check for stdint.h, needed for SIZE_MAX in xsize.h.
OK deraadt@
Diffstat (limited to 'gnu/usr.bin/cvs')
-rw-r--r--gnu/usr.bin/cvs/config.h.in3
-rw-r--r--gnu/usr.bin/cvs/configure2
-rw-r--r--gnu/usr.bin/cvs/configure.in2
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