xsize.h uses HAVE_STDINT_H but configure doesn't check for it.

 - todd

Index: gnu/usr.bin/cvs/config.h.in
===================================================================
RCS file: /cvs/src/gnu/usr.bin/cvs/config.h.in,v
retrieving revision 1.2
diff -u -r1.2 config.h.in
--- gnu/usr.bin/cvs/config.h.in 3 Dec 2013 01:32:49 -0000       1.2
+++ gnu/usr.bin/cvs/config.h.in 4 Feb 2015 21:34:50 -0000
@@ -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
 
Index: gnu/usr.bin/cvs/configure
===================================================================
RCS file: /cvs/src/gnu/usr.bin/cvs/configure,v
retrieving revision 1.33
diff -u -r1.33 configure
--- gnu/usr.bin/cvs/configure   3 Dec 2013 01:32:49 -0000       1.33
+++ gnu/usr.bin/cvs/configure   4 Feb 2015 21:35:26 -0000
@@ -2322,7 +2322,7 @@
 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
Index: gnu/usr.bin/cvs/configure.in
===================================================================
RCS file: /cvs/src/gnu/usr.bin/cvs/configure.in,v
retrieving revision 1.29
diff -u -r1.29 configure.in
--- gnu/usr.bin/cvs/configure.in        3 Dec 2013 01:32:49 -0000       1.29
+++ gnu/usr.bin/cvs/configure.in        4 Feb 2015 21:35:08 -0000
@@ -78,7 +78,7 @@
 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

Reply via email to