+2006-03-01 Ken Raeburn <raeburn@mit.edu>
+
+ * configure.in: Don't check size of "int".
+
2005-12-16 Ken Raeburn <raeburn@mit.edu>
* Makefile.in (all-unix): Do depend on all-libs.
dnl sys/param.h for AIX 4.3.3 (actually sys/machine.h)
dnl There's also sys/endian.h on IRIX, but we already check _MIPSE{L,B}.
AC_C_CONST
-AC_CHECK_SIZEOF(int)
dnl checks for library functions
AC_CHECK_FUNC(memmove, ,
+2006-03-01 Ken Raeburn <raeburn@mit.edu>
+
+ * db.h: Check UINT_MAX, not SIZEOF_INT.
+
2004-05-23 Ken Raeburn <raeburn@mit.edu>
* db-int.h: Include sys/param.h if available.
* is so that the access methods can skip copying the key/data pair when
* the DB_LOCK flag isn't set.
*/
-#if SIZEOF_INT == 4
+#if UINT_MAX >= 0xffffffffUL
#define DB_LOCK 0x20000000 /* Do locking. */
#define DB_SHMEM 0x40000000 /* Use shared memory. */
#define DB_TXN 0x80000000 /* Do transactions. */