summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTom Yu <tlyu@mit.edu>1995-07-02 05:23:21 +0000
committerTom Yu <tlyu@mit.edu>1995-07-02 05:23:21 +0000
commit219d310da6e86efcb61baca5ba2f384144348419 (patch)
tree6767a41b36d8a1125b6eca259a2ad631d9312c45 /src
parentf1cc269ff2124f5bd036a27ced623b246389c17a (diff)
downloadkrb5-219d310da6e86efcb61baca5ba2f384144348419.tar.gz
krb5-219d310da6e86efcb61baca5ba2f384144348419.tar.xz
krb5-219d310da6e86efcb61baca5ba2f384144348419.zip
* 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. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6216 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src')
-rw-r--r--src/util/berk_db/hash/ChangeLog5
-rw-r--r--src/util/berk_db/hash/configure.in2
2 files changed, 6 insertions, 1 deletions
diff --git a/src/util/berk_db/hash/ChangeLog b/src/util/berk_db/hash/ChangeLog
index 1817e2d62e..096ec3a655 100644
--- a/src/util/berk_db/hash/ChangeLog
+++ b/src/util/berk_db/hash/ChangeLog
@@ -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.
diff --git a/src/util/berk_db/hash/configure.in b/src/util/berk_db/hash/configure.in
index 1eeb404ca8..1afb56b70c 100644
--- a/src/util/berk_db/hash/configure.in
+++ b/src/util/berk_db/hash/configure.in
@@ -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.