* configure.in: Don't check for pgno_t; it's not in sys/types.h on
authorTom Yu <tlyu@mit.edu>
Sun, 2 Jul 1995 05:23:21 +0000 (05:23 +0000)
committerTom Yu <tlyu@mit.edu>
Sun, 2 Jul 1995 05:23:21 +0000 (05:23 +0000)
any system I've seen, and it breaks the following check
for datum.dsize under netbsd.

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6216 dc483132-0cff-0310-8789-dd5450dbe970

src/util/berk_db/hash/ChangeLog
src/util/berk_db/hash/configure.in

index 1817e2d62e112ee300c1e9cd401a84f138e59152..096ec3a655deeb2982da9ff93984ee5b53d1ff11 100644 (file)
@@ -1,3 +1,8 @@
+Sat Jul  1 23:15:59 1995  Tom Yu  <tlyu@lothlorien.MIT.EDU>
+
+       * configure.in: Don't check for pgno_t; it's not in sys/types.h on
+               any system I've seen, and it breaks the following check
+               for datum.dsize under netbsd.
 
 Fri Jun 30 14:49:53 EDT 1995   Paul Park       (pjpark@mit.edu)
        * configure.in - Add shared library object rule.
index 1eeb404ca88b67d17fbee5beb738ed73b95a972e..1afb56b70ca9e2b5b0450f951dc85a363810c354 100644 (file)
@@ -12,7 +12,7 @@ AC_CHECK_TYPE(int16_t, short)
 AC_CHECK_TYPE(u_int16_t, unsigned short)
 AC_CHECK_TYPE(int32_t, int)
 AC_CHECK_TYPE(u_int32_t, unsigned int)
-AC_CHECK_TYPE(pgno_t, u_int32_t)
+dnl AC_CHECK_TYPE(pgno_t, u_int32_t)
 dnl
 dnl Determine the size of datum and DBT size fields. If they are not the same
 dnl then the elements need to be copied.