diff options
author | 2015-02-05 12:56:22 +0000 | |
---|---|---|
committer | 2015-02-05 12:56:22 +0000 | |
commit | 8143b48a0103bd9d6d7d7cb7034700334860bcbd (patch) | |
tree | 7796d498169c6309bea7b48e3ac9b5be93d647a3 | |
parent | unbreak after previous macro removal. (diff) | |
download | wireguard-openbsd-8143b48a0103bd9d6d7d7cb7034700334860bcbd.tar.xz wireguard-openbsd-8143b48a0103bd9d6d7d7cb7034700334860bcbd.zip |
Add missing check for stdint.h, needed for SIZE_MAX in xsize.h.
OK deraadt@
-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 |