summaryrefslogtreecommitdiff
path: root/databases/db4
diff options
context:
space:
mode:
authoruebayasi <uebayasi@pkgsrc.org>2002-03-30 05:35:57 +0000
committeruebayasi <uebayasi@pkgsrc.org>2002-03-30 05:35:57 +0000
commit5a667bb6874a0dd1bbfe73fa291f16513d41203b (patch)
tree2284301ae55393b1d7524dc69572a55a8a1ca26e /databases/db4
parent70be18a91812986014de92aabb2a9b1eed7664f7 (diff)
downloadpkgsrc-5a667bb6874a0dd1bbfe73fa291f16513d41203b.tar.gz
Initial import of Sleepycat db4 provided by Alex Newman <dolemite@wuli.nu>
in pkg/16075. From DESCR: Berkeley DB is an embeddable database system that supports keyed access to data. The software is distributed in source code form, and developers can compile and link the source code into a single library for inclusion directly in their applications.
Diffstat (limited to 'databases/db4')
-rw-r--r--databases/db4/DESCR23
-rw-r--r--databases/db4/Makefile34
-rw-r--r--databases/db4/PLIST897
-rw-r--r--databases/db4/distinfo6
-rw-r--r--databases/db4/patches/patch-aa246
-rw-r--r--databases/db4/patches/patch-ab40
6 files changed, 1246 insertions, 0 deletions
diff --git a/databases/db4/DESCR b/databases/db4/DESCR
new file mode 100644
index 00000000000..262096316e7
--- /dev/null
+++ b/databases/db4/DESCR
@@ -0,0 +1,23 @@
+Berkeley DB is an embeddable database system that supports keyed access to
+data. The software is distributed in source code form, and developers can
+compile and link the source code into a single library for inclusion
+directly in their applications.
+
+Developers may choose to store data in any of several different storage
+structures to satisfy the requirements of a particular application. In
+database terminology, these storage structures and the code that operates on
+them are called access methods. The library includes support for the
+following access methods:
+
+ * B+tree: Stores keys in sorted order, using either a programmer-supplied
+ ordering function or a default function that does lexicographical
+ ordering of keys. Applications may perform equality or range searches.
+ * Hashing: Stores records in a hash table for fast searches based on
+ strict equality. Extended Linear Hashing modifies the hash function
+ used by the table as new records are inserted, in order to keep buckets
+ underfull in the steady state.
+ * Fixed and Variable-Length Records: Stores fixed- or variable-length
+ records in sequential order. Record numbers may be immutable or
+ mutable, i.e., permitting new records to be inserted between existing
+ records or requiring that new records be added only at the end of the
+ database.
diff --git a/databases/db4/Makefile b/databases/db4/Makefile
new file mode 100644
index 00000000000..580470c292f
--- /dev/null
+++ b/databases/db4/Makefile
@@ -0,0 +1,34 @@
+# $NetBSD: Makefile,v 1.1.1.1 2002/03/30 05:35:58 uebayasi Exp $
+
+DISTNAME= db-4.0.14
+PKGNAME= db4-4.0.14
+CATEGORIES= databases
+MASTER_SITES= http://www.sleepycat.com/update/4.0.14/
+
+MAINTAINER= dolemite@wuli.nu
+HOMEPAGE= http://www.sleepycat.com/
+COMMENT= Sleepycat Software's Berkeley DB version 4
+
+.if defined(WITH_JAVA) && (${WITH_JAVA} == "YES")
+USE_JAVA= YES
+CONFIGURE_ARGS+= --enable-java
+.endif
+
+USE_BUILDLINK_ONLY= yes
+USE_LIBTOOL= yes
+LIBTOOL_OVERRIDE= ${WRKDIR}/${DISTNAME}/build_unix/libtool
+GNU_CONFIGURE= yes
+CONFIGURE_SCRIPT= ../dist/configure
+
+CONFIGURE_ARGS+= --enable-rpc
+CONFIGURE_ARGS+= --program-transform-name=s,db_,db4_,
+CONFIGURE_ARGS+= --includedir=${PREFIX}/include/db4
+CONFIGURE_ARGS+= --enable-cxx
+CONFIGURE_ARGS+= --enable-shared
+
+WRKSRC= ${WRKDIR}/${DISTNAME}/build_unix
+
+post-install:
+ ${CHOWN} -R ${BINOWN}:${BINGRP} ${PREFIX}/share/doc/db4
+
+.include "../../mk/bsd.pkg.mk"
diff --git a/databases/db4/PLIST b/databases/db4/PLIST
new file mode 100644
index 00000000000..7e81addbd40
--- /dev/null
+++ b/databases/db4/PLIST
@@ -0,0 +1,897 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 2002/03/30 05:35:58 uebayasi Exp $
+bin/db4_archive
+bin/db4_checkpoint
+bin/db4_deadlock
+bin/db4_dump
+bin/db4_load
+bin/db4_printlog
+bin/db4_recover
+bin/db4_stat
+bin/db4_upgrade
+bin/db4_verify
+include/db4/cxx_common.h
+include/db4/cxx_except.h
+include/db4/db.h
+include/db4/db_cxx.h
+lib/libdb4.a
+lib/libdb4.la
+lib/libdb4.so
+lib/libdb4.so.0
+lib/libdb4.so.0.14
+lib/libdb4_cxx.a
+lib/libdb4_cxx.la
+lib/libdb4_cxx.so
+share/doc/db4/ref/mp/intro.html
+share/doc/db4/ref/mp/config.html
+share/doc/db4/ref/xa/build.html
+share/doc/db4/ref/xa/intro.html
+share/doc/db4/ref/xa/faq.html
+share/doc/db4/ref/xa/xa_config.html
+share/doc/db4/ref/xa/xa_intro.html
+share/doc/db4/ref/am_conf/select.html
+share/doc/db4/ref/am_conf/bt_minkey.html
+share/doc/db4/ref/am_conf/bt_prefix.html
+share/doc/db4/ref/am_conf/bt_recnum.html
+share/doc/db4/ref/am_conf/byteorder.html
+share/doc/db4/ref/am_conf/cachesize.html
+share/doc/db4/ref/am_conf/dup.html
+share/doc/db4/ref/am_conf/extentsize.html
+share/doc/db4/ref/am_conf/h_ffactor.html
+share/doc/db4/ref/am_conf/h_hash.html
+share/doc/db4/ref/am_conf/h_nelem.html
+share/doc/db4/ref/am_conf/intro.html
+share/doc/db4/ref/am_conf/logrec.html
+share/doc/db4/ref/am_conf/malloc.html
+share/doc/db4/ref/am_conf/pagesize.html
+share/doc/db4/ref/am_conf/re_source.html
+share/doc/db4/ref/am_conf/recno.html
+share/doc/db4/ref/am_conf/renumber.html
+share/doc/db4/ref/am_conf/bt_compare.html
+share/doc/db4/ref/am_misc/tune.html
+share/doc/db4/ref/am_misc/dbsizes.html
+share/doc/db4/ref/am_misc/diskspace.html
+share/doc/db4/ref/am_misc/error.html
+share/doc/db4/ref/am_misc/faq.html
+share/doc/db4/ref/am_misc/get_bulk.html
+share/doc/db4/ref/am_misc/partial.html
+share/doc/db4/ref/am_misc/perm.html
+share/doc/db4/ref/am_misc/stability.html
+share/doc/db4/ref/am_misc/align.html
+share/doc/db4/ref/arch/script.html
+share/doc/db4/ref/arch/bigpic.html
+share/doc/db4/ref/arch/progmodel.html
+share/doc/db4/ref/arch/apis.html
+share/doc/db4/ref/arch/utilities.html
+share/doc/db4/ref/arch/bigpic.gif
+share/doc/db4/ref/arch/smallpic.gif
+share/doc/db4/ref/build_unix/ultrix.html
+share/doc/db4/ref/build_unix/conf.html
+share/doc/db4/ref/build_unix/embedix.html
+share/doc/db4/ref/build_unix/flags.html
+share/doc/db4/ref/build_unix/freebsd.html
+share/doc/db4/ref/build_unix/hpux.html
+share/doc/db4/ref/build_unix/install.html
+share/doc/db4/ref/build_unix/intro.html
+share/doc/db4/ref/build_unix/irix.html
+share/doc/db4/ref/build_unix/linux.html
+share/doc/db4/ref/build_unix/macosx.html
+share/doc/db4/ref/build_unix/notes.html
+share/doc/db4/ref/build_unix/osf1.html
+share/doc/db4/ref/build_unix/qnx.html
+share/doc/db4/ref/build_unix/sco.html
+share/doc/db4/ref/build_unix/shlib.html
+share/doc/db4/ref/build_unix/solaris.html
+share/doc/db4/ref/build_unix/sunos.html
+share/doc/db4/ref/build_unix/test.html
+share/doc/db4/ref/build_unix/aix.html
+share/doc/db4/ref/build_vxworks/faq.html
+share/doc/db4/ref/build_vxworks/intro.html
+share/doc/db4/ref/build_vxworks/introae.html
+share/doc/db4/ref/build_vxworks/notes.html
+share/doc/db4/ref/build_win/faq.html
+share/doc/db4/ref/build_win/intro.html
+share/doc/db4/ref/build_win/notes.html
+share/doc/db4/ref/build_win/test.html
+share/doc/db4/ref/cam/intro.html
+share/doc/db4/ref/debug/intro.html
+share/doc/db4/ref/debug/common.html
+share/doc/db4/ref/debug/compile.html
+share/doc/db4/ref/debug/printlog.html
+share/doc/db4/ref/debug/runtime.html
+share/doc/db4/ref/distrib/layout.html
+share/doc/db4/ref/dumpload/format.html
+share/doc/db4/ref/dumpload/text.html
+share/doc/db4/ref/dumpload/utility.html
+share/doc/db4/ref/env/security.html
+share/doc/db4/ref/env/error.html
+share/doc/db4/ref/env/faq.html
+share/doc/db4/ref/env/intro.html
+share/doc/db4/ref/env/naming.html
+share/doc/db4/ref/env/open.html
+share/doc/db4/ref/env/region.html
+share/doc/db4/ref/env/remote.html
+share/doc/db4/ref/env/create.html
+share/doc/db4/ref/intro/where.html
+share/doc/db4/ref/intro/dbis.html
+share/doc/db4/ref/intro/dbisnot.html
+share/doc/db4/ref/intro/distrib.html
+share/doc/db4/ref/intro/need.html
+share/doc/db4/ref/intro/products.html
+share/doc/db4/ref/intro/terrain.html
+share/doc/db4/ref/intro/what.html
+share/doc/db4/ref/intro/data.html
+share/doc/db4/ref/install/file.html
+share/doc/db4/ref/install/multiple.html
+share/doc/db4/ref/install/rpm.html
+share/doc/db4/ref/install/magic.txt
+share/doc/db4/ref/install/magic.s5.be.txt
+share/doc/db4/ref/install/magic.s5.le.txt
+share/doc/db4/ref/java/compat.html
+share/doc/db4/ref/java/conf.html
+share/doc/db4/ref/java/faq.html
+share/doc/db4/ref/java/program.html
+share/doc/db4/ref/lock/twopl.html
+share/doc/db4/ref/lock/cam_conv.html
+share/doc/db4/ref/lock/config.html
+share/doc/db4/ref/lock/dead.html
+share/doc/db4/ref/lock/intro.html
+share/doc/db4/ref/lock/max.html
+share/doc/db4/ref/lock/nondb.html
+share/doc/db4/ref/lock/notxn.html
+share/doc/db4/ref/lock/page.html
+share/doc/db4/ref/lock/stdmode.html
+share/doc/db4/ref/lock/timeout.html
+share/doc/db4/ref/lock/am_conv.html
+share/doc/db4/ref/log/config.html
+share/doc/db4/ref/log/intro.html
+share/doc/db4/ref/log/limits.html
+share/doc/db4/ref/upgrade.4.0/txn.html
+share/doc/db4/ref/upgrade.4.0/cxx.html
+share/doc/db4/ref/upgrade.4.0/deadlock.html
+share/doc/db4/ref/upgrade.4.0/disk.html
+share/doc/db4/ref/upgrade.4.0/env.html
+share/doc/db4/ref/upgrade.4.0/intro.html
+share/doc/db4/ref/upgrade.4.0/java.html
+share/doc/db4/ref/upgrade.4.0/lock.html
+share/doc/db4/ref/upgrade.4.0/lock_id_free.html
+share/doc/db4/ref/upgrade.4.0/log.html
+share/doc/db4/ref/upgrade.4.0/mp.html
+share/doc/db4/ref/upgrade.4.0/rpc.html
+share/doc/db4/ref/upgrade.4.0/set_lk_max.html
+share/doc/db4/ref/upgrade.4.0/toc.html
+share/doc/db4/ref/upgrade.4.0/asr.html
+share/doc/db4/ref/am/verify.html
+share/doc/db4/ref/am/count.html
+share/doc/db4/ref/am/curclose.html
+share/doc/db4/ref/am/curdel.html
+share/doc/db4/ref/am/curdup.html
+share/doc/db4/ref/am/curget.html
+share/doc/db4/ref/am/curput.html
+share/doc/db4/ref/am/cursor.html
+share/doc/db4/ref/am/delete.html
+share/doc/db4/ref/am/get.html
+share/doc/db4/ref/am/join.html
+share/doc/db4/ref/am/open.html
+share/doc/db4/ref/am/opensub.html
+share/doc/db4/ref/am/ops.html
+share/doc/db4/ref/am/put.html
+share/doc/db4/ref/am/second.html
+share/doc/db4/ref/am/stat.html
+share/doc/db4/ref/am/sync.html
+share/doc/db4/ref/am/truncate.html
+share/doc/db4/ref/am/upgrade.html
+share/doc/db4/ref/am/close.html
+share/doc/db4/ref/program/solaris.txt
+share/doc/db4/ref/program/compatible.html
+share/doc/db4/ref/program/copy.html
+share/doc/db4/ref/program/environ.html
+share/doc/db4/ref/program/errorret.html
+share/doc/db4/ref/program/extending.html
+share/doc/db4/ref/program/mt.html
+share/doc/db4/ref/program/namespace.html
+share/doc/db4/ref/program/runtime.html
+share/doc/db4/ref/program/scope.html
+share/doc/db4/ref/program/appsignals.html
+share/doc/db4/ref/refs/bdb_usenix.ps
+share/doc/db4/ref/refs/witold.html
+share/doc/db4/ref/refs/bdb_usenix.html
+share/doc/db4/ref/refs/refs.html
+share/doc/db4/ref/refs/embedded.html
+share/doc/db4/ref/refs/hash_usenix.ps
+share/doc/db4/ref/refs/libtp_usenix.ps
+share/doc/db4/ref/rep/trans.html
+share/doc/db4/ref/rep/comm.html
+share/doc/db4/ref/rep/elect.html
+share/doc/db4/ref/rep/ex.html
+share/doc/db4/ref/rep/ex_comm.html
+share/doc/db4/ref/rep/ex_rq.html
+share/doc/db4/ref/rep/faq.html
+share/doc/db4/ref/rep/id.html
+share/doc/db4/ref/rep/init.html
+share/doc/db4/ref/rep/intro.html
+share/doc/db4/ref/rep/logonly.html
+share/doc/db4/ref/rep/newsite.html
+share/doc/db4/ref/rep/partition.html
+share/doc/db4/ref/rep/pri.html
+share/doc/db4/ref/rep/app.html
+share/doc/db4/ref/rpc/client.html
+share/doc/db4/ref/rpc/intro.html
+share/doc/db4/ref/rpc/server.html
+share/doc/db4/ref/sendmail/intro.html
+share/doc/db4/ref/simple_tut/example.cs
+share/doc/db4/ref/simple_tut/del.html
+share/doc/db4/ref/simple_tut/errors.html
+share/doc/db4/ref/simple_tut/get.html
+share/doc/db4/ref/simple_tut/handles.html
+share/doc/db4/ref/simple_tut/intro.html
+share/doc/db4/ref/simple_tut/keydata.html
+share/doc/db4/ref/simple_tut/open.html
+share/doc/db4/ref/simple_tut/put.html
+share/doc/db4/ref/simple_tut/close.html
+share/doc/db4/ref/tcl/intro.html
+share/doc/db4/ref/tcl/error.html
+share/doc/db4/ref/tcl/faq.html
+share/doc/db4/ref/tcl/program.html
+share/doc/db4/ref/tcl/using.html
+share/doc/db4/ref/test/faq.html
+share/doc/db4/ref/test/run.html
+share/doc/db4/ref/transapp/writetest.cs
+share/doc/db4/ref/transapp/app.html
+share/doc/db4/ref/transapp/archival.html
+share/doc/db4/ref/transapp/checkpoint.html
+share/doc/db4/ref/transapp/cursor.html
+share/doc/db4/ref/transapp/data_open.html
+share/doc/db4/ref/transapp/deadlock.html
+share/doc/db4/ref/transapp/env_open.html
+share/doc/db4/ref/transapp/faq.html
+share/doc/db4/ref/transapp/filesys.html
+share/doc/db4/ref/transapp/hotfail.html
+share/doc/db4/ref/transapp/inc.html
+share/doc/db4/ref/transapp/intro.html
+share/doc/db4/ref/transapp/logfile.html
+share/doc/db4/ref/transapp/nested.html
+share/doc/db4/ref/transapp/put.html
+share/doc/db4/ref/transapp/read.html
+share/doc/db4/ref/transapp/reclimit.html
+share/doc/db4/ref/transapp/recovery.html
+share/doc/db4/ref/transapp/term.html
+share/doc/db4/ref/transapp/throughput.html
+share/doc/db4/ref/transapp/tune.html
+share/doc/db4/ref/transapp/why.html
+share/doc/db4/ref/transapp/transapp.cs
+share/doc/db4/ref/transapp/admin.html
+share/doc/db4/ref/txn/config.html
+share/doc/db4/ref/txn/intro.html
+share/doc/db4/ref/txn/limits.html
+share/doc/db4/ref/txn/other.html
+share/doc/db4/ref/upgrade/process.html
+share/doc/db4/ref/upgrade/version.html
+share/doc/db4/ref/upgrade.2.0/convert.html
+share/doc/db4/ref/upgrade.2.0/disk.html
+share/doc/db4/ref/upgrade.2.0/intro.html
+share/doc/db4/ref/upgrade.2.0/system.html
+share/doc/db4/ref/upgrade.2.0/toc.html
+share/doc/db4/ref/upgrade.3.0/xa.html
+share/doc/db4/ref/upgrade.3.0/cxx.html
+share/doc/db4/ref/upgrade.3.0/db.html
+share/doc/db4/ref/upgrade.3.0/db_cxx.html
+share/doc/db4/ref/upgrade.3.0/dbenv.html
+share/doc/db4/ref/upgrade.3.0/dbenv_cxx.html
+share/doc/db4/ref/upgrade.3.0/dbinfo.html
+share/doc/db4/ref/upgrade.3.0/disk.html
+share/doc/db4/ref/upgrade.3.0/eacces.html
+share/doc/db4/ref/upgrade.3.0/eagain.html
+share/doc/db4/ref/upgrade.3.0/envopen.html
+share/doc/db4/ref/upgrade.3.0/func.html
+share/doc/db4/ref/upgrade.3.0/intro.html
+share/doc/db4/ref/upgrade.3.0/java.html
+share/doc/db4/ref/upgrade.3.0/join.html
+share/doc/db4/ref/upgrade.3.0/jump_set.html
+share/doc/db4/ref/upgrade.3.0/lock_detect.html
+share/doc/db4/ref/upgrade.3.0/lock_notheld.html
+share/doc/db4/ref/upgrade.3.0/lock_put.html
+share/doc/db4/ref/upgrade.3.0/lock_stat.html
+share/doc/db4/ref/upgrade.3.0/log_register.html
+share/doc/db4/ref/upgrade.3.0/log_stat.html
+share/doc/db4/ref/upgrade.3.0/memp_stat.html
+share/doc/db4/ref/upgrade.3.0/open.html
+share/doc/db4/ref/upgrade.3.0/rmw.html
+share/doc/db4/ref/upgrade.3.0/stat.html
+share/doc/db4/ref/upgrade.3.0/toc.html
+share/doc/db4/ref/upgrade.3.0/txn_begin.html
+share/doc/db4/ref/upgrade.3.0/txn_commit.html
+share/doc/db4/ref/upgrade.3.0/txn_stat.html
+share/doc/db4/ref/upgrade.3.0/value_set.html
+share/doc/db4/ref/upgrade.3.0/close.html
+share/doc/db4/ref/upgrade.3.1/txn_check.html
+share/doc/db4/ref/upgrade.3.1/config.html
+share/doc/db4/ref/upgrade.3.1/disk.html
+share/doc/db4/ref/upgrade.3.1/dup.html
+share/doc/db4/ref/upgrade.3.1/env.html
+share/doc/db4/ref/upgrade.3.1/intro.html
+share/doc/db4/ref/upgrade.3.1/log_register.html
+share/doc/db4/ref/upgrade.3.1/logalloc.html
+share/doc/db4/ref/upgrade.3.1/memp_register.html
+share/doc/db4/ref/upgrade.3.1/put.html
+share/doc/db4/ref/upgrade.3.1/set_feedback.html
+share/doc/db4/ref/upgrade.3.1/set_paniccall.html
+share/doc/db4/ref/upgrade.3.1/set_tx_recover.html
+share/doc/db4/ref/upgrade.3.1/sysmem.html
+share/doc/db4/ref/upgrade.3.1/tcl.html
+share/doc/db4/ref/upgrade.3.1/toc.html
+share/doc/db4/ref/upgrade.3.1/tmp.html
+share/doc/db4/ref/upgrade.3.1/btstat.html
+share/doc/db4/ref/upgrade.3.2/tx_recover.html
+share/doc/db4/ref/upgrade.3.2/db_dump.html
+share/doc/db4/ref/upgrade.3.2/disk.html
+share/doc/db4/ref/upgrade.3.2/handle.html
+share/doc/db4/ref/upgrade.3.2/incomplete.html
+share/doc/db4/ref/upgrade.3.2/intro.html
+share/doc/db4/ref/upgrade.3.2/mutexlock.html
+share/doc/db4/ref/upgrade.3.2/notfound.html
+share/doc/db4/ref/upgrade.3.2/renumber.html
+share/doc/db4/ref/upgrade.3.2/set_flags.html
+share/doc/db4/ref/upgrade.3.2/toc.html
+share/doc/db4/ref/upgrade.3.2/callback.html
+share/doc/db4/ref/upgrade.3.3/txn_prepare.html
+share/doc/db4/ref/upgrade.3.3/bigfile.html
+share/doc/db4/ref/upgrade.3.3/conflict.html
+share/doc/db4/ref/upgrade.3.3/disk.html
+share/doc/db4/ref/upgrade.3.3/getswap.html
+share/doc/db4/ref/upgrade.3.3/gettype.html
+share/doc/db4/ref/upgrade.3.3/intro.html
+share/doc/db4/ref/upgrade.3.3/memp_fget.html
+share/doc/db4/ref/upgrade.3.3/rpc.html
+share/doc/db4/ref/upgrade.3.3/shared.html
+share/doc/db4/ref/upgrade.3.3/toc.html
+share/doc/db4/ref/upgrade.3.3/alloc.html
+share/doc/db4/ref/perl/intro.html
+share/doc/db4/ref/pindex.src
+share/doc/db4/sleepycat/legal.html
+share/doc/db4/sleepycat/license.html
+share/doc/db4/sleepycat/contact.html
+share/doc/db4/api_c/c_pindex.html
+share/doc/db4/api_c/db_associate.html
+share/doc/db4/api_c/pindex.src
+share/doc/db4/api_c/db_close.html
+share/doc/db4/api_c/db_cursor.html
+share/doc/db4/api_c/db_del.html
+share/doc/db4/api_c/db_fd.html
+share/doc/db4/api_c/db_get.html
+share/doc/db4/api_c/db_get_byteswapped.html
+share/doc/db4/api_c/db_get_type.html
+share/doc/db4/api_c/db_join.html
+share/doc/db4/api_c/db_key_range.html
+share/doc/db4/api_c/db_open.html
+share/doc/db4/api_c/db_put.html
+share/doc/db4/api_c/db_remove.html
+share/doc/db4/api_c/db_rename.html
+share/doc/db4/api_c/db_set_append_recno.html
+share/doc/db4/api_c/db_set_bt_compare.html
+share/doc/db4/api_c/db_set_bt_minkey.html
+share/doc/db4/api_c/db_set_bt_prefix.html
+share/doc/db4/api_c/db_set_cachesize.html
+share/doc/db4/api_c/db_set_dup_compare.html
+share/doc/db4/api_c/db_set_errcall.html
+share/doc/db4/api_c/db_set_errpfx.html
+share/doc/db4/api_c/db_set_feedback.html
+share/doc/db4/api_c/db_set_flags.html
+share/doc/db4/api_c/db_set_h_ffactor.html
+share/doc/db4/api_c/db_set_h_hash.html
+share/doc/db4/api_c/db_set_h_nelem.html
+share/doc/db4/api_c/db_set_lorder.html
+share/doc/db4/api_c/db_set_pagesize.html
+share/doc/db4/api_c/db_set_q_extentsize.html
+share/doc/db4/api_c/db_set_re_delim.html
+share/doc/db4/api_c/db_set_re_len.html
+share/doc/db4/api_c/db_set_re_pad.html
+share/doc/db4/api_c/db_stat.html
+share/doc/db4/api_c/db_set_re_source.html
+share/doc/db4/api_c/db_sync.html
+share/doc/db4/api_c/db_truncate.html
+share/doc/db4/api_c/db_upgrade.html
+share/doc/db4/api_c/db_verify.html
+share/doc/db4/api_c/dbc_close.html
+share/doc/db4/api_c/dbc_count.html
+share/doc/db4/api_c/dbc_del.html
+share/doc/db4/api_c/dbc_dup.html
+share/doc/db4/api_c/dbc_get.html
+share/doc/db4/api_c/dbc_put.html
+share/doc/db4/api_c/env_close.html
+share/doc/db4/api_c/env_open.html
+share/doc/db4/api_c/env_remove.html
+share/doc/db4/api_c/env_set_cachesize.html
+share/doc/db4/api_c/env_set_data_dir.html
+share/doc/db4/api_c/env_set_errcall.html
+share/doc/db4/api_c/env_set_errpfx.html
+share/doc/db4/api_c/env_set_feedback.html
+share/doc/db4/api_c/env_set_flags.html
+share/doc/db4/api_c/env_set_lg_bsize.html
+share/doc/db4/api_c/env_set_lg_dir.html
+share/doc/db4/api_c/env_set_lg_max.html
+share/doc/db4/api_c/env_set_lg_regionmax.html
+share/doc/db4/api_c/env_set_lk_conflicts.html
+share/doc/db4/api_c/env_set_lk_detect.html
+share/doc/db4/api_c/env_set_lk_max_lockers.html
+share/doc/db4/api_c/env_set_lk_max_locks.html
+share/doc/db4/api_c/env_set_lk_max_objects.html
+share/doc/db4/api_c/env_set_mp_mmapsize.html
+share/doc/db4/api_c/env_set_rec_init.html
+share/doc/db4/api_c/env_set_rpc_server.html
+share/doc/db4/api_c/env_set_shm_key.html
+share/doc/db4/api_c/env_set_tas_spins.html
+share/doc/db4/api_c/txn_id.html
+share/doc/db4/api_c/env_set_timeout.html
+share/doc/db4/api_c/env_set_tmp_dir.html
+share/doc/db4/api_c/env_set_tx_max.html
+share/doc/db4/api_c/env_set_tx_recover.html
+share/doc/db4/api_c/env_set_tx_timestamp.html
+share/doc/db4/api_c/env_set_verbose.html
+share/doc/db4/api_c/env_strerror.html
+share/doc/db4/api_c/env_version.html
+share/doc/db4/api_c/lock_detect.html
+share/doc/db4/api_c/lock_get.html
+share/doc/db4/api_c/lock_id.html
+share/doc/db4/api_c/lock_id_free.html
+share/doc/db4/api_c/lock_put.html
+share/doc/db4/api_c/lock_stat.html
+share/doc/db4/api_c/lock_vec.html
+share/doc/db4/api_c/log_archive.html
+share/doc/db4/api_c/log_compare.html
+share/doc/db4/api_c/log_cursor.html
+share/doc/db4/api_c/log_file.html
+share/doc/db4/api_c/log_flush.html
+share/doc/db4/api_c/log_put.html
+share/doc/db4/api_c/log_register.html
+share/doc/db4/api_c/log_stat.html
+share/doc/db4/api_c/log_unregister.html
+share/doc/db4/api_c/logc_close.html
+share/doc/db4/api_c/logc_get.html
+share/doc/db4/api_c/memp_fclose.html
+share/doc/db4/api_c/memp_fopen.html
+share/doc/db4/api_c/memp_fsync.html
+share/doc/db4/api_c/memp_register.html
+share/doc/db4/api_c/memp_stat.html
+share/doc/db4/api_c/memp_sync.html
+share/doc/db4/api_c/memp_trickle.html
+share/doc/db4/api_c/rep_elect.html
+share/doc/db4/api_c/rep_message.html
+share/doc/db4/api_c/rep_start.html
+share/doc/db4/api_c/rep_transport.html
+share/doc/db4/api_c/txn_abort.html
+share/doc/db4/api_c/txn_begin.html
+share/doc/db4/api_c/txn_checkpoint.html
+share/doc/db4/api_c/txn_commit.html
+share/doc/db4/api_c/txn_discard.html
+share/doc/db4/api_c/txn_prepare.html
+share/doc/db4/api_c/txn_recover.html
+share/doc/db4/api_c/txn_set_timeout.html
+share/doc/db4/api_c/txn_stat.html
+share/doc/db4/api_c/db_err.html
+share/doc/db4/api_c/db_set_alloc.html
+share/doc/db4/api_c/db_set_errfile.html
+share/doc/db4/api_c/db_set_paniccall.html
+share/doc/db4/api_c/dbt_bulk.html
+share/doc/db4/api_c/env_err.html
+share/doc/db4/api_c/env_set_alloc.html
+share/doc/db4/api_c/env_set_errfile.html
+share/doc/db4/api_c/env_set_paniccall.html
+share/doc/db4/api_c/memp_fget.html
+share/doc/db4/api_c/memp_fput.html
+share/doc/db4/api_c/memp_fset.html
+share/doc/db4/api_c/memp_set_clear_len.html
+share/doc/db4/api_c/memp_set_fileid.html
+share/doc/db4/api_c/memp_set_ftype.html
+share/doc/db4/api_c/memp_set_lsn_offset.html
+share/doc/db4/api_c/memp_set_pgcookie.html
+share/doc/db4/api_c/db_create.html
+share/doc/db4/api_c/db_lsn.html
+share/doc/db4/api_c/dbm.html
+share/doc/db4/api_c/dbt.html
+share/doc/db4/api_c/env_create.html
+share/doc/db4/api_c/hsearch.html
+share/doc/db4/api_c/memp_fcreate.html
+share/doc/db4/api_c/set_func_close.html
+share/doc/db4/api_c/set_func_dirfree.html
+share/doc/db4/api_c/set_func_dirlist.html
+share/doc/db4/api_c/set_func_exists.html
+share/doc/db4/api_c/set_func_free.html
+share/doc/db4/api_c/set_func_fsync.html
+share/doc/db4/api_c/set_func_ioinfo.html
+share/doc/db4/api_c/set_func_malloc.html
+share/doc/db4/api_c/set_func_map.html
+share/doc/db4/api_c/set_func_open.html
+share/doc/db4/api_c/set_func_read.html
+share/doc/db4/api_c/set_func_realloc.html
+share/doc/db4/api_c/set_func_rename.html
+share/doc/db4/api_c/set_func_seek.html
+share/doc/db4/api_c/set_func_sleep.html
+share/doc/db4/api_c/set_func_unlink.html
+share/doc/db4/api_c/set_func_unmap.html
+share/doc/db4/api_c/set_func_write.html
+share/doc/db4/api_c/set_func_yield.html
+share/doc/db4/api_c/c_index.html
+share/doc/db4/api_java/java_pindex.html
+share/doc/db4/api_java/db_associate.html
+share/doc/db4/api_java/pindex.src
+share/doc/db4/api_java/db_close.html
+share/doc/db4/api_java/db_cursor.html
+share/doc/db4/api_java/db_del.html
+share/doc/db4/api_java/db_fd.html
+share/doc/db4/api_java/db_get.html
+share/doc/db4/api_java/db_get_byteswapped.html
+share/doc/db4/api_java/db_get_type.html
+share/doc/db4/api_java/db_join.html
+share/doc/db4/api_java/db_key_range.html
+share/doc/db4/api_java/db_open.html
+share/doc/db4/api_java/db_put.html
+share/doc/db4/api_java/db_remove.html
+share/doc/db4/api_java/db_rename.html
+share/doc/db4/api_java/db_set_append_recno.html
+share/doc/db4/api_java/db_set_bt_compare.html
+share/doc/db4/api_java/db_set_bt_minkey.html
+share/doc/db4/api_java/db_set_bt_prefix.html
+share/doc/db4/api_java/db_set_cachesize.html
+share/doc/db4/api_java/db_set_dup_compare.html
+share/doc/db4/api_java/db_set_errcall.html
+share/doc/db4/api_java/db_set_errpfx.html
+share/doc/db4/api_java/db_set_feedback.html
+share/doc/db4/api_java/db_set_flags.html
+share/doc/db4/api_java/db_set_h_ffactor.html
+share/doc/db4/api_java/db_set_h_hash.html
+share/doc/db4/api_java/db_set_h_nelem.html
+share/doc/db4/api_java/db_set_lorder.html
+share/doc/db4/api_java/db_set_pagesize.html
+share/doc/db4/api_java/db_set_q_extentsize.html
+share/doc/db4/api_java/db_set_re_delim.html
+share/doc/db4/api_java/db_set_re_len.html
+share/doc/db4/api_java/db_set_re_pad.html
+share/doc/db4/api_java/db_stat.html
+share/doc/db4/api_java/db_set_re_source.html
+share/doc/db4/api_java/db_sync.html
+share/doc/db4/api_java/db_truncate.html
+share/doc/db4/api_java/db_upgrade.html
+share/doc/db4/api_java/db_verify.html
+share/doc/db4/api_java/dbc_close.html
+share/doc/db4/api_java/dbc_count.html
+share/doc/db4/api_java/dbc_del.html
+share/doc/db4/api_java/dbc_dup.html
+share/doc/db4/api_java/dbc_get.html
+share/doc/db4/api_java/dbc_put.html
+share/doc/db4/api_java/env_close.html
+share/doc/db4/api_java/env_open.html
+share/doc/db4/api_java/env_remove.html
+share/doc/db4/api_java/env_set_cachesize.html
+share/doc/db4/api_java/env_set_data_dir.html
+share/doc/db4/api_java/env_set_errcall.html
+share/doc/db4/api_java/env_set_errpfx.html
+share/doc/db4/api_java/env_set_feedback.html
+share/doc/db4/api_java/env_set_flags.html
+share/doc/db4/api_java/env_set_lg_bsize.html
+share/doc/db4/api_java/env_set_lg_dir.html
+share/doc/db4/api_java/env_set_lg_max.html
+share/doc/db4/api_java/env_set_lg_regionmax.html
+share/doc/db4/api_java/env_set_lk_conflicts.html
+share/doc/db4/api_java/env_set_lk_detect.html
+share/doc/db4/api_java/env_set_lk_max_lockers.html
+share/doc/db4/api_java/env_set_lk_max_locks.html
+share/doc/db4/api_java/env_set_lk_max_objects.html
+share/doc/db4/api_java/env_set_mp_mmapsize.html
+share/doc/db4/api_java/env_set_rec_init.html
+share/doc/db4/api_java/env_set_rpc_server.html
+share/doc/db4/api_java/env_set_shm_key.html
+share/doc/db4/api_java/env_set_tas_spins.html
+share/doc/db4/api_java/txn_id.html
+share/doc/db4/api_java/env_set_timeout.html
+share/doc/db4/api_java/env_set_tmp_dir.html
+share/doc/db4/api_java/env_set_tx_max.html
+share/doc/db4/api_java/env_set_tx_recover.html
+share/doc/db4/api_java/env_set_tx_timestamp.html
+share/doc/db4/api_java/env_set_verbose.html
+share/doc/db4/api_java/env_strerror.html
+share/doc/db4/api_java/env_version.html
+share/doc/db4/api_java/lock_detect.html
+share/doc/db4/api_java/lock_get.html
+share/doc/db4/api_java/lock_id.html
+share/doc/db4/api_java/lock_id_free.html
+share/doc/db4/api_java/lock_put.html
+share/doc/db4/api_java/lock_stat.html
+share/doc/db4/api_java/lock_vec.html
+share/doc/db4/api_java/log_archive.html
+share/doc/db4/api_java/log_compare.html
+share/doc/db4/api_java/log_cursor.html
+share/doc/db4/api_java/log_file.html
+share/doc/db4/api_java/log_flush.html
+share/doc/db4/api_java/log_put.html
+share/doc/db4/api_java/log_register.html
+share/doc/db4/api_java/log_stat.html
+share/doc/db4/api_java/log_unregister.html
+share/doc/db4/api_java/logc_close.html
+share/doc/db4/api_java/logc_get.html
+share/doc/db4/api_java/memp_fclose.html
+share/doc/db4/api_java/memp_fopen.html
+share/doc/db4/api_java/memp_fsync.html
+share/doc/db4/api_java/memp_register.html
+share/doc/db4/api_java/memp_stat.html
+share/doc/db4/api_java/memp_sync.html
+share/doc/db4/api_java/memp_trickle.html
+share/doc/db4/api_java/rep_elect.html
+share/doc/db4/api_java/rep_message.html
+share/doc/db4/api_java/rep_start.html
+share/doc/db4/api_java/rep_transport.html
+share/doc/db4/api_java/txn_abort.html
+share/doc/db4/api_java/txn_begin.html
+share/doc/db4/api_java/txn_checkpoint.html
+share/doc/db4/api_java/txn_commit.html
+share/doc/db4/api_java/txn_discard.html
+share/doc/db4/api_java/txn_prepare.html
+share/doc/db4/api_java/txn_recover.html
+share/doc/db4/api_java/txn_set_timeout.html
+share/doc/db4/api_java/txn_stat.html
+share/doc/db4/api_java/db_class.html
+share/doc/db4/api_java/dbc_class.html
+share/doc/db4/api_java/dbenv_class.html
+share/doc/db4/api_java/dbt_class.html
+share/doc/db4/api_java/env_set_error_stream.html
+share/doc/db4/api_java/except_class.html
+share/doc/db4/api_java/get_dbt.html
+share/doc/db4/api_java/get_errno.html
+share/doc/db4/api_java/lock_class.html
+share/doc/db4/api_java/logc_class.html
+share/doc/db4/api_java/lsn_class.html
+share/doc/db4/api_java/mem_class.html
+share/doc/db4/api_java/txn_class.html
+share/doc/db4/api_java/dbt_bulk_class.html
+share/doc/db4/api_java/deadlock_class.html
+share/doc/db4/api_java/runrec_class.html
+share/doc/db4/api_java/c_index.html
+share/doc/db4/api_cxx/cxx_pindex.html
+share/doc/db4/api_cxx/db_associate.html
+share/doc/db4/api_cxx/pindex.src
+share/doc/db4/api_cxx/db_close.html
+share/doc/db4/api_cxx/db_cursor.html
+share/doc/db4/api_cxx/db_del.html
+share/doc/db4/api_cxx/db_fd.html
+share/doc/db4/api_cxx/db_get.html
+share/doc/db4/api_cxx/db_get_byteswapped.html
+share/doc/db4/api_cxx/db_get_type.html
+share/doc/db4/api_cxx/db_join.html
+share/doc/db4/api_cxx/db_key_range.html
+share/doc/db4/api_cxx/db_open.html
+share/doc/db4/api_cxx/db_put.html
+share/doc/db4/api_cxx/db_remove.html
+share/doc/db4/api_cxx/db_rename.html
+share/doc/db4/api_cxx/db_set_append_recno.html
+share/doc/db4/api_cxx/db_set_bt_compare.html
+share/doc/db4/api_cxx/db_set_bt_minkey.html
+share/doc/db4/api_cxx/db_set_bt_prefix.html
+share/doc/db4/api_cxx/db_set_cachesize.html
+share/doc/db4/api_cxx/db_set_dup_compare.html
+share/doc/db4/api_cxx/db_set_errcall.html
+share/doc/db4/api_cxx/db_set_errpfx.html
+share/doc/db4/api_cxx/db_set_feedback.html
+share/doc/db4/api_cxx/db_set_flags.html
+share/doc/db4/api_cxx/db_set_h_ffactor.html
+share/doc/db4/api_cxx/db_set_h_hash.html
+share/doc/db4/api_cxx/db_set_h_nelem.html
+share/doc/db4/api_cxx/db_set_lorder.html
+share/doc/db4/api_cxx/db_set_pagesize.html
+share/doc/db4/api_cxx/db_set_q_extentsize.html
+share/doc/db4/api_cxx/db_set_re_delim.html
+share/doc/db4/api_cxx/db_set_re_len.html
+share/doc/db4/api_cxx/db_set_re_pad.html
+share/doc/db4/api_cxx/db_stat.html
+share/doc/db4/api_cxx/db_set_re_source.html
+share/doc/db4/api_cxx/db_sync.html
+share/doc/db4/api_cxx/db_truncate.html
+share/doc/db4/api_cxx/db_upgrade.html
+share/doc/db4/api_cxx/db_verify.html
+share/doc/db4/api_cxx/dbc_close.html
+share/doc/db4/api_cxx/dbc_count.html
+share/doc/db4/api_cxx/dbc_del.html
+share/doc/db4/api_cxx/dbc_dup.html
+share/doc/db4/api_cxx/dbc_get.html
+share/doc/db4/api_cxx/dbc_put.html
+share/doc/db4/api_cxx/env_close.html
+share/doc/db4/api_cxx/env_open.html
+share/doc/db4/api_cxx/env_remove.html
+share/doc/db4/api_cxx/env_set_cachesize.html
+share/doc/db4/api_cxx/env_set_data_dir.html
+share/doc/db4/api_cxx/env_set_errcall.html
+share/doc/db4/api_cxx/env_set_errpfx.html
+share/doc/db4/api_cxx/env_set_feedback.html
+share/doc/db4/api_cxx/env_set_flags.html
+share/doc/db4/api_cxx/env_set_lg_bsize.html
+share/doc/db4/api_cxx/env_set_lg_dir.html
+share/doc/db4/api_cxx/env_set_lg_max.html
+share/doc/db4/api_cxx/env_set_lg_regionmax.html
+share/doc/db4/api_cxx/env_set_lk_conflicts.html
+share/doc/db4/api_cxx/env_set_lk_detect.html
+share/doc/db4/api_cxx/env_set_lk_max_lockers.html
+share/doc/db4/api_cxx/env_set_lk_max_locks.html
+share/doc/db4/api_cxx/env_set_lk_max_objects.html
+share/doc/db4/api_cxx/env_set_mp_mmapsize.html
+share/doc/db4/api_cxx/env_set_rec_init.html
+share/doc/db4/api_cxx/env_set_rpc_server.html
+share/doc/db4/api_cxx/env_set_shm_key.html
+share/doc/db4/api_cxx/env_set_tas_spins.html
+share/doc/db4/api_cxx/txn_id.html
+share/doc/db4/api_cxx/env_set_timeout.html
+share/doc/db4/api_cxx/env_set_tmp_dir.html
+share/doc/db4/api_cxx/env_set_tx_max.html
+share/doc/db4/api_cxx/env_set_tx_recover.html
+share/doc/db4/api_cxx/env_set_tx_timestamp.html
+share/doc/db4/api_cxx/env_set_verbose.html
+share/doc/db4/api_cxx/env_strerror.html
+share/doc/db4/api_cxx/env_version.html
+share/doc/db4/api_cxx/lock_detect.html
+share/doc/db4/api_cxx/lock_get.html
+share/doc/db4/api_cxx/lock_id.html
+share/doc/db4/api_cxx/lock_id_free.html
+share/doc/db4/api_cxx/lock_put.html
+share/doc/db4/api_cxx/lock_stat.html
+share/doc/db4/api_cxx/lock_vec.html
+share/doc/db4/api_cxx/log_archive.html
+share/doc/db4/api_cxx/log_compare.html
+share/doc/db4/api_cxx/log_cursor.html
+share/doc/db4/api_cxx/log_file.html
+share/doc/db4/api_cxx/log_flush.html
+share/doc/db4/api_cxx/log_put.html
+share/doc/db4/api_cxx/log_register.html
+share/doc/db4/api_cxx/log_stat.html
+share/doc/db4/api_cxx/log_unregister.html
+share/doc/db4/api_cxx/logc_close.html
+share/doc/db4/api_cxx/logc_get.html
+share/doc/db4/api_cxx/memp_fclose.html
+share/doc/db4/api_cxx/memp_fopen.html
+share/doc/db4/api_cxx/memp_fsync.html
+share/doc/db4/api_cxx/memp_register.html
+share/doc/db4/api_cxx/memp_stat.html
+share/doc/db4/api_cxx/memp_sync.html
+share/doc/db4/api_cxx/memp_trickle.html
+share/doc/db4/api_cxx/rep_elect.html
+share/doc/db4/api_cxx/rep_message.html
+share/doc/db4/api_cxx/rep_start.html
+share/doc/db4/api_cxx/rep_transport.html
+share/doc/db4/api_cxx/txn_abort.html
+share/doc/db4/api_cxx/txn_begin.html
+share/doc/db4/api_cxx/txn_checkpoint.html
+share/doc/db4/api_cxx/txn_commit.html
+share/doc/db4/api_cxx/txn_discard.html
+share/doc/db4/api_cxx/txn_prepare.html
+share/doc/db4/api_cxx/txn_recover.html
+share/doc/db4/api_cxx/txn_set_timeout.html
+share/doc/db4/api_cxx/txn_stat.html
+share/doc/db4/api_cxx/db_err.html
+share/doc/db4/api_cxx/db_set_alloc.html
+share/doc/db4/api_cxx/db_set_errfile.html
+share/doc/db4/api_cxx/db_set_paniccall.html
+share/doc/db4/api_cxx/dbt_bulk.html
+share/doc/db4/api_cxx/env_err.html
+share/doc/db4/api_cxx/env_set_alloc.html
+share/doc/db4/api_cxx/env_set_errfile.html
+share/doc/db4/api_cxx/env_set_paniccall.html
+share/doc/db4/api_cxx/memp_fget.html
+share/doc/db4/api_cxx/memp_fput.html
+share/doc/db4/api_cxx/memp_fset.html
+share/doc/db4/api_cxx/memp_set_clear_len.html
+share/doc/db4/api_cxx/memp_set_fileid.html
+share/doc/db4/api_cxx/memp_set_ftype.html
+share/doc/db4/api_cxx/memp_set_lsn_offset.html
+share/doc/db4/api_cxx/memp_set_pgcookie.html
+share/doc/db4/api_cxx/db_class.html
+share/doc/db4/api_cxx/dbc_class.html
+share/doc/db4/api_cxx/dbenv_class.html
+share/doc/db4/api_cxx/dbt_class.html
+share/doc/db4/api_cxx/env_set_error_stream.html
+share/doc/db4/api_cxx/except_class.html
+share/doc/db4/api_cxx/get_dbt.html
+share/doc/db4/api_cxx/get_errno.html
+share/doc/db4/api_cxx/lock_class.html
+share/doc/db4/api_cxx/logc_class.html
+share/doc/db4/api_cxx/lsn_class.html
+share/doc/db4/api_cxx/mem_class.html
+share/doc/db4/api_cxx/what.html
+share/doc/db4/api_cxx/txn_class.html
+share/doc/db4/api_cxx/memp_fcreate.html
+share/doc/db4/api_cxx/mempfile_class.html
+share/doc/db4/api_cxx/c_index.html
+share/doc/db4/utility/db_verify.html
+share/doc/db4/utility/berkeley_db_svc.html
+share/doc/db4/utility/db_archive.html
+share/doc/db4/utility/db_checkpoint.html
+share/doc/db4/utility/db_deadlock.html
+share/doc/db4/utility/db_dump.html
+share/doc/db4/utility/db_load.html
+share/doc/db4/utility/db_printlog.html
+share/doc/db4/utility/db_recover.html
+share/doc/db4/utility/db_stat.html
+share/doc/db4/utility/db_upgrade.html
+share/doc/db4/utility/index.html
+share/doc/db4/api_tcl/tcl_pindex.html
+share/doc/db4/api_tcl/pindex.src
+share/doc/db4/api_tcl/db_count.html
+share/doc/db4/api_tcl/db_cursor.html
+share/doc/db4/api_tcl/db_del.html
+share/doc/db4/api_tcl/db_get.html
+share/doc/db4/api_tcl/db_get_join.html
+share/doc/db4/api_tcl/db_get_type.html
+share/doc/db4/api_tcl/db_is_byteswapped.html
+share/doc/db4/api_tcl/db_join.html
+share/doc/db4/api_tcl/db_open.html
+share/doc/db4/api_tcl/db_put.html
+share/doc/db4/api_tcl/db_rename.html
+share/doc/db4/api_tcl/db_remove.html
+share/doc/db4/api_tcl/db_stat.html
+share/doc/db4/api_tcl/db_sync.html
+share/doc/db4/api_tcl/db_truncate.html
+share/doc/db4/api_tcl/dbc_close.html
+share/doc/db4/api_tcl/dbc_del.html
+share/doc/db4/api_tcl/dbc_dup.html
+share/doc/db4/api_tcl/dbc_get.html
+share/doc/db4/api_tcl/dbc_put.html
+share/doc/db4/api_tcl/env_close.html
+share/doc/db4/api_tcl/env_open.html
+share/doc/db4/api_tcl/env_remove.html
+share/doc/db4/api_tcl/tcl_index.html
+share/doc/db4/api_tcl/txn.html
+share/doc/db4/api_tcl/txn_abort.html
+share/doc/db4/api_tcl/txn_commit.html
+share/doc/db4/api_tcl/version.html
+share/doc/db4/api_tcl/db_close.html
+share/doc/db4/images/api.gif
+share/doc/db4/images/next.gif
+share/doc/db4/images/prev.gif
+share/doc/db4/images/ps.gif
+share/doc/db4/images/ref.gif
+share/doc/db4/images/sleepycat.gif
+share/doc/db4/index.html
+share/doc/db4/reftoc.html
+@dirrm share/doc/db4/ref/mp
+@dirrm share/doc/db4/ref/xa
+@dirrm share/doc/db4/ref/am_conf
+@dirrm share/doc/db4/ref/am_misc
+@dirrm share/doc/db4/ref/arch
+@dirrm share/doc/db4/ref/build_unix
+@dirrm share/doc/db4/ref/build_vxworks
+@dirrm share/doc/db4/ref/build_win
+@dirrm share/doc/db4/ref/cam
+@dirrm share/doc/db4/ref/debug
+@dirrm share/doc/db4/ref/distrib
+@dirrm share/doc/db4/ref/dumpload
+@dirrm share/doc/db4/ref/env
+@dirrm share/doc/db4/ref/intro
+@dirrm share/doc/db4/ref/install
+@dirrm share/doc/db4/ref/java
+@dirrm share/doc/db4/ref/lock
+@dirrm share/doc/db4/ref/log
+@dirrm share/doc/db4/ref/upgrade.4.0
+@dirrm share/doc/db4/ref/am
+@dirrm share/doc/db4/ref/program
+@dirrm share/doc/db4/ref/refs
+@dirrm share/doc/db4/ref/rep
+@dirrm share/doc/db4/ref/rpc
+@dirrm share/doc/db4/ref/sendmail
+@dirrm share/doc/db4/ref/simple_tut
+@dirrm share/doc/db4/ref/splash
+@dirrm share/doc/db4/ref/tcl
+@dirrm share/doc/db4/ref/test
+@dirrm share/doc/db4/ref/transapp
+@dirrm share/doc/db4/ref/txn
+@dirrm share/doc/db4/ref/upgrade
+@dirrm share/doc/db4/ref/upgrade.2.0
+@dirrm share/doc/db4/ref/upgrade.3.0
+@dirrm share/doc/db4/ref/upgrade.3.1
+@dirrm share/doc/db4/ref/upgrade.3.2
+@dirrm share/doc/db4/ref/upgrade.3.3
+@dirrm share/doc/db4/ref/perl
+@dirrm share/doc/db4/sleepycat
+@dirrm share/doc/db4/api_c
+@dirrm share/doc/db4/api_java
+@dirrm share/doc/db4/api_cxx
+@dirrm share/doc/db4/utility
+@dirrm share/doc/db4/api_tcl
+@dirrm share/doc/db4/images
+@dirrm share/doc/db4/ref
+@dirrm share/doc/db4
+@dirrm include/db4
diff --git a/databases/db4/distinfo b/databases/db4/distinfo
new file mode 100644
index 00000000000..ef0e257af74
--- /dev/null
+++ b/databases/db4/distinfo
@@ -0,0 +1,6 @@
+$NetBSD: distinfo,v 1.1.1.1 2002/03/30 05:35:58 uebayasi Exp $
+
+SHA1 (db-4.0.14.tar.gz) = a0fcf0ec521ffb7a7ea342b1ec2ea9bc9f8402ee
+Size (db-4.0.14.tar.gz) = 2701799 bytes
+SHA1 (patch-aa) = 56cfc57a92b30ca25b8ccc46676a4e7d99ac4000
+SHA1 (patch-ab) = bfe64ff7ca92e73bb6c00a7333e57b30950fbf2e
diff --git a/databases/db4/patches/patch-aa b/databases/db4/patches/patch-aa
new file mode 100644
index 00000000000..3d2f36a54ea
--- /dev/null
+++ b/databases/db4/patches/patch-aa
@@ -0,0 +1,246 @@
+$NetBSD: patch-aa,v 1.1.1.1 2002/03/30 05:35:58 uebayasi Exp $
+
+--- ../dist/Makefile.orig Mon Mar 18 16:20:22 2002
++++ ../dist/Makefile.in Mon Mar 18 16:20:33 2002
+@@ -11,7 +11,7 @@
+ bindir= @bindir@
+ includedir=@includedir@
+ libdir= @libdir@
+-docdir= $(prefix)/docs
++docdir= $(prefix)/share/doc/db4
+
+ dmode= 755
+ emode= 555
+@@ -42,7 +42,7 @@
+ LIBTOOL= @LIBTOOL@
+
+ POSTLINK= @POSTLINK@
+-SOLINK= @MAKEFILE_SOLINK@
++SOLINK= @MAKEFILE_SOLINK@ -version-info @DB_VERSION_MINOR@:@DB_VERSION_PATCH@
+ SOFLAGS= @SOFLAGS@
+ SOMAJOR= @DB_VERSION_MAJOR@
+ SOVERSION= @DB_VERSION_MAJOR@.@DB_VERSION_MINOR@
+@@ -60,13 +60,13 @@
+ LIBS= @LIBS@
+ LIBSO_LIBS= @LIBSO_LIBS@
+
+-libdb= libdb.a
+-libso_base= libdb
+-libso= $(libso_base)-$(SOVERSION).@SOSUFFIX@
+-libso_static= $(libso_base)-$(SOVERSION).a
+-libso_target= $(libso_base)-$(SOVERSION).la
++libdb= $(libso_base).la
++libso_base= libdb4
++libso= $(libso_base).@SOSUFFIX@.$(SOVERSION)
++libso_static= $(libso_base).la
++libso_target= $(libso_base).la
+ libso_default= $(libso_base).@SOSUFFIX@
+-libso_major= $(libso_base)-$(SOMAJOR).@SOSUFFIX@
++libso_major= $(libso_base).@SOSUFFIX@.$(SOMAJOR)
+
+ ##################################################
+ # C++ API.
+@@ -79,13 +79,13 @@
+ XSOLINK= @MAKEFILE_XSOLINK@
+ LIBXSO_LIBS= @LIBXSO_LIBS@
+
+-libcxx= libdb_cxx.a
+-libxso_base= libdb_cxx
+-libxso= $(libxso_base)-$(SOVERSION).@SOSUFFIX@
+-libxso_static= $(libxso_base)-$(SOVERSION).a
+-libxso_target= $(libxso_base)-$(SOVERSION).la
++libcxx= libdb4_cxx.a
++libxso_base= libdb4_cxx
++libxso= $(libxso_base).@SOSUFFIX@.$(SOVERSION)
++libxso_static= $(libxso_base).a
++libxso_target= $(libxso_base).la
+ libxso_default= $(libxso_base).@SOSUFFIX@
+-libxso_major= $(libxso_base)-$(SOMAJOR).@SOSUFFIX@
++libxso_major= $(libxso_base).@SOSUFFIX@.$(SOMAJOR)
+
+ ##################################################
+ # Java API.
+@@ -105,15 +105,15 @@
+ JAVA_DBDIR= $(JAVA_SRCDIR)/$(JAVA_DBREL)
+ JAVA_EXDIR= $(JAVA_SRCDIR)/$(JAVA_EXREL)
+
+-libj_jarfile= db.jar
++libj_jarfile= db4.jar
+ libj_exjarfile= dbexamples.jar
+-libjso_base= libdb_java
+-libjso= $(libjso_base)-$(SOVERSION).@SOSUFFIX@
++libjso_base= libdb4_java
++libjso= $(libjso_base).@SOSUFFIX@.$(SOVERSION)
+ libjso_static= $(libjso_base)-$(SOVERSION).a
+-libjso_target= $(libjso_base)-$(SOVERSION).la
++libjso_target= $(libjso_base).la
+ libjso_default= $(libjso_base).@SOSUFFIX@
+-libjso_major= $(libjso_base)-$(SOMAJOR).@SOSUFFIX@
+-libjso_g= $(libjso_base)-$(SOVERSION)_g.@SOSUFFIX@
++libjso_major= $(libjso_base).@SOSUFFIX@.$(SOMAJOR)
++libjso_g= $(libjso_base)_g.@SOSUFFIX@.$(SOVERSION)
+
+ ##################################################
+ # TCL API.
+@@ -122,12 +122,12 @@
+ ##################################################
+ TCFLAGS= @TCFLAGS@
+ LIBTSO_LIBS= @LIBTSO_LIBS@
+-libtso_base= libdb_tcl
+-libtso= $(libtso_base)-$(SOVERSION).@SOSUFFIX@
++libtso_base= libdb4_tcl
++libtso= $(libtso_base).@SOSUFFIX@.$(SOVERSION)
+ libtso_static= $(libtso_base)-$(SOVERSION).a
+-libtso_target= $(libtso_base)-$(SOVERSION).la
++libtso_target= $(libtso_base).la
+ libtso_default= $(libtso_base).@SOSUFFIX@
+-libtso_major= $(libtso_base)-$(SOMAJOR).@SOSUFFIX@
++libtso_major= $(libtso_base).@SOSUFFIX@.$(SOMAJOR)
+
+ ##################################################
+ # db_dump185 UTILITY
+@@ -235,8 +235,9 @@
+ db_server_proc@o@ db_server_svc@o@ db_server_util@o@ gen_db_server@o@
+
+ UTIL_PROGS=\
+- @ADDITIONAL_PROGS@ db_archive db_checkpoint db_deadlock \
+- db_dump db_load db_printlog db_recover db_stat db_upgrade db_verify
++ @ADDITIONAL_PROGS@ db4_archive db4_checkpoint db4_deadlock \
++ db4_dump db4_load db4_printlog db4_recover db4_stat db4_upgrade \
++ db4_verify
+
+ ##################################################
+ # List of files installed into the library directory.
+@@ -281,14 +282,6 @@
+ ##################################################
+ library_build: @INSTALL_LIBS@ @ADDITIONAL_LANG@ $(UTIL_PROGS)
+
+-$(libdb): $(C_OBJS)
+- $(ar) cr $@ $(C_OBJS)
+- test ! -f $(ranlib) || $(ranlib) $@
+-
+-$(libcxx): $(CXX_OBJS) $(C_OBJS)
+- $(ar) cr $@ $(CXX_OBJS) $(C_OBJS)
+- test ! -f $(ranlib) || $(ranlib) $@
+-
+ $(libso_target): $(C_OBJS)
+ $(SOLINK) $(SOFLAGS) $(LDFLAGS) -o $@ $(C_OBJS) $(LIBSO_LIBS)
+
+@@ -312,7 +305,7 @@
+
+ $(libj_jarfile): $(JAVA_DBSRCS)
+ @test -d $(JAVA_CLASSTOP) || \
+- ($(mkdir) -p $(JAVA_CLASSTOP) && $(chmod) $(dmode) $(JAVA_CLASSTOP))
++ ($(mkdir) -p $(JAVA_CLASSTOP) && $(chmod) $(dmode) $(JAVA_CLASSTOP))
+ $(JAVAC) -d $(JAVA_CLASSTOP) $(JAVACFLAGS) $(JAVA_DBSRCS)
+ cd $(JAVA_CLASSTOP) && $(JAR) cf ../$(libj_jarfile) $(JAVA_DBREL)
+
+@@ -325,58 +318,58 @@
+ ##################################################
+ # Utilities
+ ##################################################
+-berkeley_db_svc: $(RPC_SRV_OBJS) util_log@o@ $(DEF_LIB)
++berkeley_db4_svc: $(RPC_SRV_OBJS) util_log@o@ $(DEF_LIB)
+ $(CCLINK) -o $@ $(LDFLAGS) \
+ $(RPC_SRV_OBJS) util_log@o@ $(DEF_LIB) $(LIBS)
+ $(POSTLINK) $@
+
+-db_archive: db_archive@o@ util_sig@o@ $(DEF_LIB)
++db4_archive: db_archive@o@ util_sig@o@ $(DEF_LIB)
+ $(CCLINK) -o $@ $(LDFLAGS) \
+ db_archive@o@ util_sig@o@ $(DEF_LIB) $(LIBS)
+ $(POSTLINK) $@
+
+-db_checkpoint: db_checkpoint@o@ util_log@o@ util_sig@o@ $(DEF_LIB)
++db4_checkpoint: db_checkpoint@o@ util_log@o@ util_sig@o@ $(DEF_LIB)
+ $(CCLINK) -o $@ $(LDFLAGS) \
+ db_checkpoint@o@ util_log@o@ util_sig@o@ $(DEF_LIB) $(LIBS)
+ $(POSTLINK) $@
+
+-db_deadlock: db_deadlock@o@ util_log@o@ util_sig@o@ $(DEF_LIB)
++db4_deadlock: db_deadlock@o@ util_log@o@ util_sig@o@ $(DEF_LIB)
+ $(CCLINK) -o $@ $(LDFLAGS) \
+ db_deadlock@o@ util_log@o@ util_sig@o@ $(DEF_LIB) $(LIBS)
+ $(POSTLINK) $@
+
+-db_dump: db_dump@o@ util_sig@o@ $(DEF_LIB)
++db4_dump: db_dump@o@ util_sig@o@ $(DEF_LIB)
+ $(CCLINK) -o $@ $(LDFLAGS) db_dump@o@ util_sig@o@ $(DEF_LIB) $(LIBS)
+ $(POSTLINK) $@
+
+-db_dump185: db_dump185@o@ @LIBOBJS@
++db4_dump185: db_dump185@o@ @LIBOBJS@
+ $(CCLINK) -o $@ $(LDFLAGS) db_dump185@o@ @LIBOBJS@ $(DB185LIB)
+ $(POSTLINK) $@
+
+-db_load: db_load@o@ util_sig@o@ $(DEF_LIB)
++db4_load: db_load@o@ util_sig@o@ $(DEF_LIB)
+ $(CCLINK) -o $@ $(LDFLAGS) db_load@o@ util_sig@o@ $(DEF_LIB) $(LIBS)
+ $(POSTLINK) $@
+
+-db_printlog: db_printlog@o@ util_sig@o@ $(DEF_LIB)
++db4_printlog: db_printlog@o@ util_sig@o@ $(DEF_LIB)
+ $(CCLINK) -o $@ $(LDFLAGS) \
+ db_printlog@o@ util_sig@o@ $(DEF_LIB) $(LIBS)
+ $(POSTLINK) $@
+
+-db_recover: db_recover@o@ util_sig@o@ $(DEF_LIB)
++db4_recover: db_recover@o@ util_sig@o@ $(DEF_LIB)
+ $(CCLINK) -o $@ $(LDFLAGS) \
+ db_recover@o@ util_sig@o@ $(DEF_LIB) $(LIBS)
+ $(POSTLINK) $@
+
+-db_stat: db_stat@o@ util_sig@o@ $(DEF_LIB)
++db4_stat: db_stat@o@ util_sig@o@ $(DEF_LIB)
+ $(CCLINK) -o $@ $(LDFLAGS) db_stat@o@ util_sig@o@ $(DEF_LIB) $(LIBS)
+ $(POSTLINK) $@
+
+-db_upgrade: db_upgrade@o@ util_sig@o@ $(DEF_LIB)
++db4_upgrade: db_upgrade@o@ util_sig@o@ $(DEF_LIB)
+ $(CCLINK) -o $@ $(LDFLAGS) \
+ db_upgrade@o@ util_sig@o@ $(DEF_LIB) $(LIBS)
+ $(POSTLINK) $@
+
+-db_verify: db_verify@o@ util_sig@o@ $(DEF_LIB)
++db4_verify: db_verify@o@ util_sig@o@ $(DEF_LIB)
+ $(CCLINK) -o $@ $(LDFLAGS) \
+ db_verify@o@ util_sig@o@ $(DEF_LIB) $(LIBS)
+ $(POSTLINK) $@
+@@ -397,15 +390,11 @@
+ INCINC= cxx_common.h cxx_except.h
+ install_include:
+ @echo "Installing DB include files: $(includedir) ..."
+- @test -d $(includedir) || \
+- ($(mkdir) -p $(includedir) && $(chmod) $(dmode) $(includedir))
+- @cd $(includedir) && $(rm) -f $(INCDOT) $(INCINC)
+- @$(cp) -p $(INCDOT) $(includedir)
+- @cd $(srcdir)/include/ && $(cp) -p $(INCINC) $(includedir)
+- @cd $(includedir) && $(chmod) $(fmode) $(INCDOT) $(INCINC)
++ ${BSD_INSTALL_DATA_DIR} $(includedir)
++ ${BSD_INSTALL_DATA} $(INCDOT) $(includedir)
++ @cd $(srcdir)/include/ && ${BSD_INSTALL_DATA} $(INCINC) $(includedir)
+
+ uninstall_include:
+- @cd $(includedir) && $(rm) -f $(INCDOT) $(INCINC)
+
+ install_lib:
+ @echo "Installing DB library: $(libdir) ..."
+@@ -414,8 +403,6 @@
+ @cd $(libdir) && $(rm) -f $(LIB_INSTALL_FILE_LIST)
+ @$(INSTALLER) @INSTALL_LIBS@ $(libdir)
+ @(cd $(libdir) && \
+- test -f $(libso) && $(ln) -s $(libso) $(libso_default); \
+- test -f $(libso) && $(ln) -s $(libso) $(libso_major); \
+ test -f $(libso_static) && $(ln) -s $(libso_static) $(libdb); \
+ test -f $(libxso) && $(ln) -s $(libxso) $(libxso_default); \
+ test -f $(libxso) && $(ln) -s $(libxso) $(libxso_major); \
+@@ -461,8 +448,7 @@
+ sleepycat utility
+ install_docs:
+ @echo "Installing documentation: $(docdir) ..."
+- @test -d $(docdir) || \
+- ($(mkdir) -p $(docdir) && $(chmod) $(dmode) $(docdir))
++ ${BSD_INSTALL_DATA_DIR} $(docdir)
+ @cd $(docdir) && $(rm) -rf $(DOCLIST)
+ @cd $(srcdir)/docs && $(cp) -pr $(DOCLIST) $(docdir)/
+
diff --git a/databases/db4/patches/patch-ab b/databases/db4/patches/patch-ab
new file mode 100644
index 00000000000..cc2712ef188
--- /dev/null
+++ b/databases/db4/patches/patch-ab
@@ -0,0 +1,40 @@
+$NetBSD: patch-ab,v 1.1.1.1 2002/03/30 05:35:59 uebayasi Exp $
+
+--- ../dist/configure.orig Sun Nov 18 10:45:49 2001
++++ ../dist/configure Mon Mar 18 16:19:01 2002
+@@ -4443,6 +4443,7 @@
+ if test "$GXX" = "yes"; then
+ GXX_VERSION=`${MAKEFILE_CXX} --version`
+ case ${GXX_VERSION} in
++ egcs*) CXXFLAGS="-fexceptions $CXXFLAGS";;
+ 1.*|2.[01234567].*|*-1.*|*-2.[01234567].*)
+ db_cv_gxx_except=yes;;
+ esac
+@@ -8777,7 +8778,8 @@
+ release=""
+ libname=libfoo
+ eval library_names=\"$library_names_spec\"
+-SOSUFFIX=`echo "$library_names" | sed -e 's/.*\.\([a-zA-Z0-9_]*\).*/\1/'`
++SOSUFFIX=`./libtool --config | sed -e '/^library_names_spec=/!d' -e 's/.*\.\([a-zA-Z0-9_]*\).*/\1/'`
++
+ echo "$as_me:8781: result: $SOSUFFIX" >&5
+ echo "${ECHO_T}$SOSUFFIX" >&6
+
+@@ -8794,7 +8796,7 @@
+ INSTALLER="\$(LIBTOOL) --mode=install cp"
+
+ MAKEFILE_CC="\$(LIBTOOL) --mode=compile ${MAKEFILE_CC}"
+-MAKEFILE_SOLINK="\$(LIBTOOL) --mode=link ${MAKEFILE_CCLINK} -avoid-version"
++MAKEFILE_SOLINK="\$(LIBTOOL) --mode=link ${MAKEFILE_CCLINK}"
+ MAKEFILE_CCLINK="\$(LIBTOOL) --mode=link ${MAKEFILE_CCLINK}"
+ MAKEFILE_CXX="\$(LIBTOOL) --mode=compile ${MAKEFILE_CXX}"
+ MAKEFILE_XSOLINK="\$(LIBTOOL) --mode=link ${MAKEFILE_CXXLINK} -avoid-version"
+@@ -9173,7 +9175,7 @@
+ EOF
+
+ RPC_CLIENT_OBJS="\$(RPC_CLIENT_OBJS)"
+- ADDITIONAL_PROGS="berkeley_db_svc $ADDITIONAL_PROGS"
++ ADDITIONAL_PROGS="berkeley_db4_svc $ADDITIONAL_PROGS"
+
+ EMBEDIX_ECD_RPC="/usr/bin/berkeley_db_svc"
+