+2002-09-05 Ken Raeburn <raeburn@mit.edu>
+
+ * configure.in: Check for stdint.h and inttypes.h.
+
2002-09-03 Ezra Peisach <epeisach@bu.edu>
* acconfig.h: Remove file. All handled by configure.in now.
dnl checks for libraries
dnl checks for header files
-AC_CHECK_HEADERS(unistd.h)
+AC_CHECK_HEADERS(unistd.h stdint.h inttypes.h)
dnl checks for typedefs
AC_TYPE_SIZE_T
+2002-09-05 Ken Raeburn <raeburn@mit.edu>
+
+ * db-int.h: If stdint.h or inttypes.h are found, include them.
+
2002-08-23 Tom Yu <tlyu@mit.edu>
* db.h: Add rename and prototype for bt_rseq(); this is a kludge
#include <fcntl.h>
#include <stdio.h>
#include <errno.h>
+#ifdef HAVE_STDINT_H
+#include <stdint.h>
+#endif
+#ifdef HAVE_INTTYPES_H
+/* Tru64 5.1: int8_t is defined here, and stdint.h doesn't exist. */
+#include <inttypes.h>
+#endif
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/param.h>