(cf ticket 2551, already pulled up and marked resolved)
* configure.in: Check for sys/param.h too.
* include/db-int.h: Include sys/param.h if available.
ticket: new
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@16351
dc483132-0cff-0310-8789-
dd5450dbe970
+2004-05-23 Ken Raeburn <raeburn@mit.edu>
+
+ * configure.in: Check for sys/param.h too.
+
2004-05-07 Ken Raeburn <raeburn@mit.edu>
* configure.in: Check for machine/endian.h too.
dnl checks for compiler characteristics
dnl AC_C_BIGENDIAN - No, check at compile time; Darwin can build for multiple
dnl targets in one tree.
-AC_CHECK_HEADERS(endian.h machine/endian.h)
+AC_CHECK_HEADERS(endian.h machine/endian.h sys/param.h)
+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)
+2004-05-23 Ken Raeburn <raeburn@mit.edu>
+
+ * db-int.h: Include sys/param.h if available.
+
2004-05-07 Ken Raeburn <raeburn@mit.edu>
* db-int.h: Include machine/endian.h if available. Check for
#ifdef HAVE_MACHINE_ENDIAN_H
# include <machine/endian.h>
#endif
+#ifdef HAVE_SYS_PARAM_H
+# include <sys/param.h>
+#endif
/* Handle both BIG and LITTLE defined and BYTE_ORDER matches one, or
just one defined; both with and without leading underscores.