summaryrefslogtreecommitdiff
path: root/databases
diff options
context:
space:
mode:
authortv <tv@pkgsrc.org>1999-04-19 21:19:00 +0000
committertv <tv@pkgsrc.org>1999-04-19 21:19:00 +0000
commit3a9f1a46c37539056a0572e7d09d87b72b186095 (patch)
tree00277ee070870fc148a286b83f7ebfba0fad1953 /databases
parent2faa58cd00a541faeda991c89e7c859a1fb0aaf8 (diff)
downloadpkgsrc-3a9f1a46c37539056a0572e7d09d87b72b186095.tar.gz
Build/run problems fixed:
- DO NOT INSTALL DOCS IN ${PREFIX}/docs. They belong in ${PREFIX}/share/doc. - Add SEGV-preventing patch from Sleepycat's web site. I did not enable C++ and DB 1.85 compat API in this update to make the change during freeze time minimal; for maximum flexibility in case more than just Sendmail wants to use this pkg!, the former should be enabled at next update, and the latter cannot be enabled until Sleepycat adds a fix I have sent them (or I add the fix to the patches directory).
Diffstat (limited to 'databases')
-rw-r--r--databases/db/Makefile4
-rw-r--r--databases/db/patches/patch-2.7.3.125
-rw-r--r--databases/db/patches/patch-aa386
-rw-r--r--databases/db/pkg/PLIST1060
4 files changed, 573 insertions, 902 deletions
diff --git a/databases/db/Makefile b/databases/db/Makefile
index 707ac71f445..c553429a8b9 100644
--- a/databases/db/Makefile
+++ b/databases/db/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.1.1.1 1999/04/09 23:10:28 tron Exp $
+# $NetBSD: Makefile,v 1.2 1999/04/19 21:19:00 tv Exp $
DISTNAME= db-2.7.3
CATEGORIES= databases
@@ -15,6 +15,6 @@ CONFIGURE_SCRIPT= ../dist/configure
WRKSRC= ${WRKDIR}/${PKGNAME}/build_unix
post-install:
- ${CHOWN} -R ${BINOWN}:${BINGRP} ${PREFIX}/docs/db
+ ${CHOWN} -R ${BINOWN}:${BINGRP} ${PREFIX}/share/doc/db
.include "../../mk/bsd.pkg.mk"
diff --git a/databases/db/patches/patch-2.7.3.1 b/databases/db/patches/patch-2.7.3.1
new file mode 100644
index 00000000000..1d30e8dc9ac
--- /dev/null
+++ b/databases/db/patches/patch-2.7.3.1
@@ -0,0 +1,25 @@
+$NetBSD: patch-2.7.3.1,v 1.1 1999/04/19 21:19:01 tv Exp $
+
+*** log/log_register.c.orig Fri Jan 15 10:35:52 1999
+--- log/log_register.c Fri Feb 12 08:35:00 1999
+***************
+*** 70,78 ****
+ */
+ for (maxid = 0, fnp = SH_TAILQ_FIRST(&dblp->lp->fq, __fname);
+ fnp != NULL; fnp = SH_TAILQ_NEXT(fnp, q, __fname)) {
+! if (fnp->ref == 0 && reuse_fnp == NULL) {
+! /* Entry is not in use. */
+! reuse_fnp = fnp;
+ continue;
+ }
+ if (!memcmp(dbp->fileid, fnp->ufid, DB_FILE_ID_LEN)) {
+--- 70,78 ----
+ */
+ for (maxid = 0, fnp = SH_TAILQ_FIRST(&dblp->lp->fq, __fname);
+ fnp != NULL; fnp = SH_TAILQ_NEXT(fnp, q, __fname)) {
+! if (fnp->ref == 0) { /* Entry is not in use. */
+! if (reuse_fnp == NULL)
+! reuse_fnp = fnp;
+ continue;
+ }
+ if (!memcmp(dbp->fileid, fnp->ufid, DB_FILE_ID_LEN)) {
diff --git a/databases/db/patches/patch-aa b/databases/db/patches/patch-aa
index 64b3ab66f28..a59c129efd8 100644
--- a/databases/db/patches/patch-aa
+++ b/databases/db/patches/patch-aa
@@ -1,8 +1,17 @@
-$NetBSD: patch-aa,v 1.1.1.1 1999/04/09 23:10:28 tron Exp $
+$NetBSD: patch-aa,v 1.2 1999/04/19 21:19:01 tv Exp $
---- ../dist/Makefile.in.orig Mon Dec 7 20:05:59 1998
-+++ ../dist/Makefile.in Sat Apr 10 00:52:52 1999
-@@ -43,49 +43,47 @@
+--- dist/Makefile.in.orig Mon Dec 7 14:05:59 1998
++++ dist/Makefile.in Mon Apr 19 16:30:04 1999
+@@ -3,7 +3,7 @@
+ srcdir= @srcdir@/..
+ CPPFLAGS=-I. -I$(srcdir)/include @CPPFLAGS@
+ CFLAGS= -c @CFLAGS@ $(CPPFLAGS)
+-CC= @CC@
++CC= $(LIBTOOL) @CC@
+ CXXFLAGS=-c @CXXFLAGS@ $(CPPFLAGS)
+ CXX= @CXX@
+ LDFLAGS=@LDFLAGS@
+@@ -43,13 +43,11 @@
LOBJS= @LIBOBJS@
POBJS= err.o getlong.o
@@ -18,51 +27,6 @@ $NetBSD: patch-aa,v 1.1.1.1 1999/04/09 23:10:28 tron Exp $
DBA= db_archive.o $(POBJS)
db_archive: $(DBA) $(libdb)
-- $(CC) -o $@ $(LDFLAGS) $(DBA) $(libdb) $(LIBS)
-+ $(LIBTOOL) --mode=link $(CC) -o $@ $(LDFLAGS) $(DBA) $(libdb) $(LIBS)
-
- DBB= db_checkpoint.o $(POBJS)
- db_checkpoint: $(DBB) $(libdb)
-- $(CC) -o $@ $(LDFLAGS) $(DBB) $(libdb) $(LIBS)
-+ $(LIBTOOL) --mode=link $(CC) -o $@ $(LDFLAGS) $(DBB) $(libdb) $(LIBS)
-
- DBC= db_deadlock.o $(POBJS)
- db_deadlock: $(DBC) $(libdb)
-- $(CC) -o $@ $(LDFLAGS) $(DBC) $(libdb) $(LIBS)
-+ $(LIBTOOL) --mode=link $(CC) -o $@ $(LDFLAGS) $(DBC) $(libdb) $(LIBS)
-
- DBD= db_dump.o $(POBJS)
- db_dump: $(DBD) $(libdb)
-- $(CC) -o $@ $(LDFLAGS) $(DBD) $(libdb) $(LIBS)
-+ $(LIBTOOL) --mode=link $(CC) -o $@ $(LDFLAGS) $(DBD) $(libdb) $(LIBS)
-
- DBE= db_dump185.o $(POBJS)
- db_dump185: $(DBE)
-- $(CC) -o $@ $(LDFLAGS) $(DBE) $(LIBS)
-+ $(LIBTOOL) --mode=link $(CC) -o $@ $(LDFLAGS) $(DBE) $(LIBS)
-
- DBF= db_load.o $(POBJS)
- db_load: $(DBF) $(libdb)
-- $(CC) -o $@ $(LDFLAGS) $(DBF) $(libdb) $(LIBS)
-+ $(LIBTOOL) --mode=link $(CC) -o $@ $(LDFLAGS) $(DBF) $(libdb) $(LIBS)
-
- DBG= db_printlog.o $(POBJS)
- db_printlog: $(DBG) $(libdb)
-- $(CC) -o $@ $(LDFLAGS) $(DBG) $(libdb) $(LIBS)
-+ $(LIBTOOL) --mode=link $(CC) -o $@ $(LDFLAGS) $(DBG) $(libdb) $(LIBS)
-
- DBH= db_recover.o $(POBJS)
- db_recover: $(DBH) $(libdb)
-- $(CC) -o $@ $(LDFLAGS) $(DBH) $(libdb) $(LIBS)
-+ $(LIBTOOL) --mode=link $(CC) -o $@ $(LDFLAGS) $(DBH) $(libdb) $(LIBS)
-
- DBI= db_stat.o $(POBJS)
- db_stat: $(DBI) $(libdb)
-- $(CC) -o $@ $(LDFLAGS) $(DBI) $(libdb) $(LIBS)
-+ $(LIBTOOL) --mode=link $(CC) -o $@ $(LDFLAGS) $(DBI) $(libdb) $(LIBS)
-
- EPROGS= ex_access ex_appinit ex_btrec ex_lock ex_mpool ex_thread ex_tpcb
- DBJ= ex_access.o
@@ -141,11 +139,11 @@
$(rm) -f confdefs.h db.h db_int.h db_185.h include.tcl
@@ -76,7 +40,7 @@ $NetBSD: patch-aa,v 1.1.1.1 1999/04/09 23:10:28 tron Exp $
+datadir=$(prefix)/share/db
+includedir=$(prefix)/include/db2
+libdir= $(prefix)/lib
-+mandir= $(prefix)/docs/db
++mandir= $(prefix)/share/doc/db
dmode= 755
emode= 555
@@ -94,7 +58,7 @@ $NetBSD: patch-aa,v 1.1.1.1 1999/04/09 23:10:28 tron Exp $
- @cd $(libdir) && $(rm) -f $(libdb)
- @$(cp) -p $(libdb) $(libdir)
- @cd $(libdir) && $(chmod) $(fmode) $(libdb)
-+ @$(LIBTOOL) --mode=install $(BSD_INSTALL_DATA) $(libdb) $(libdir)
++ @$(LIBTOOL) $(BSD_INSTALL_DATA) $(libdb) $(libdir)
@echo "Installing DB utilities: $(bindir) ..."
- @test -d $(bindir) || \
- ($(mkdir) -p $(bindir) && $(chmod) $(dmode) $(bindir))
@@ -102,325 +66,7 @@ $NetBSD: patch-aa,v 1.1.1.1 1999/04/09 23:10:28 tron Exp $
- @$(cp) -p $(PROGS) $(bindir)
- @cd $(bindir) && (test ! -f $(strip) || $(strip) $(PROGS))
- @cd $(bindir) && $(chmod) $(emode) $(PROGS)
-+ @$(LIBTOOL) --mode=install $(BSD_INSTALL_PROGRAM) $(PROGS) $(bindir)
++ @$(LIBTOOL) $(BSD_INSTALL_PROGRAM) $(PROGS) $(bindir)
@echo "Installing documentation: $(mandir) ..."
@test -d $(mandir) || \
($(mkdir) -p $(mandir) && $(chmod) $(dmode) $(mandir))
-@@ -226,63 +214,63 @@
-
- # DB files.
- db.o: $(srcdir)/db/db.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
- db_am.o: $(srcdir)/db/db_am.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
- db_auto.o: $(srcdir)/db/db_auto.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
- db_conv.o: $(srcdir)/db/db_conv.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
- db_dispatch.o: $(srcdir)/db/db_dispatch.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
- db_dup.o: $(srcdir)/db/db_dup.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
- db_iface.o: $(srcdir)/db/db_iface.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
- db_join.o: $(srcdir)/db/db_join.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
- db_overflow.o: $(srcdir)/db/db_overflow.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
- db_pr.o: $(srcdir)/db/db_pr.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
- db_rec.o: $(srcdir)/db/db_rec.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
- db_ret.o: $(srcdir)/db/db_ret.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
-
- # Btree source files.
- bt_compare.o: $(srcdir)/btree/bt_compare.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
- bt_conv.o: $(srcdir)/btree/bt_conv.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
- bt_curadj.o: $(srcdir)/btree/bt_curadj.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
- bt_cursor.o: $(srcdir)/btree/bt_cursor.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
- bt_delete.o: $(srcdir)/btree/bt_delete.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
- bt_open.o: $(srcdir)/btree/bt_open.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
- bt_page.o: $(srcdir)/btree/bt_page.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
- bt_put.o: $(srcdir)/btree/bt_put.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
- bt_rec.o: $(srcdir)/btree/bt_rec.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
- bt_recno.o: $(srcdir)/btree/bt_recno.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
- bt_rsearch.o: $(srcdir)/btree/bt_rsearch.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
- bt_search.o: $(srcdir)/btree/bt_search.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
- bt_split.o: $(srcdir)/btree/bt_split.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
- bt_stack.o: $(srcdir)/btree/bt_stack.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
- bt_stat.o: $(srcdir)/btree/bt_stat.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
- btree_auto.o: $(srcdir)/btree/btree_auto.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
-
- # C++ interface files.
- cxx_app.o: $(srcdir)/cxx/cxx_app.cpp
-@@ -302,77 +290,77 @@
-
- # Hash source files.
- hash_auto.o: $(srcdir)/hash/hash_auto.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
- hash.o: $(srcdir)/hash/hash.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
- hash_conv.o: $(srcdir)/hash/hash_conv.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
- hash_dup.o: $(srcdir)/hash/hash_dup.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
- hash_func.o: $(srcdir)/hash/hash_func.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
- hash_page.o: $(srcdir)/hash/hash_page.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
- hash_rec.o: $(srcdir)/hash/hash_rec.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
- hash_stat.o: $(srcdir)/hash/hash_stat.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
-
- # Lock source files.
- lock.o: $(srcdir)/lock/lock.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
- lock_conflict.o:$(srcdir)/lock/lock_conflict.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
- lock_deadlock.o:$(srcdir)/lock/lock_deadlock.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
- lock_region.o:$(srcdir)/lock/lock_region.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
- lock_util.o:$(srcdir)/lock/lock_util.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
-
- # Log source files.
- log.o: $(srcdir)/log/log.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
- log_archive.o: $(srcdir)/log/log_archive.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
- log_auto.o: $(srcdir)/log/log_auto.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
- log_compare.o: $(srcdir)/log/log_compare.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
- log_findckp.o: $(srcdir)/log/log_findckp.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
- log_get.o: $(srcdir)/log/log_get.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
- log_put.o: $(srcdir)/log/log_put.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
- log_rec.o: $(srcdir)/log/log_rec.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
- log_register.o: $(srcdir)/log/log_register.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
-
- # Mpool source files.
- mp_bh.o: $(srcdir)/mp/mp_bh.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
- mp_fget.o: $(srcdir)/mp/mp_fget.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
- mp_fopen.o: $(srcdir)/mp/mp_fopen.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
- mp_fput.o: $(srcdir)/mp/mp_fput.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
- mp_fset.o: $(srcdir)/mp/mp_fset.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
- mp_open.o: $(srcdir)/mp/mp_open.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
- mp_pr.o: $(srcdir)/mp/mp_pr.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
- mp_region.o: $(srcdir)/mp/mp_region.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
- mp_sync.o: $(srcdir)/mp/mp_sync.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
-
- # Mutex source files.
- mutex.o: $(srcdir)/mutex/mutex.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
- # XXX
- # UTS4 spinlocks
- uts4_cc.o: $(srcdir)/mutex/uts4_cc.s
-@@ -380,81 +368,81 @@
-
- # Transaction source files.
- txn.o: $(srcdir)/txn/txn.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
- txn_auto.o: $(srcdir)/txn/txn_auto.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
- txn_rec.o: $(srcdir)/txn/txn_rec.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
-
- # XA source files.
- xa.o: $(srcdir)/xa/xa.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
- xa_db.o: $(srcdir)/xa/xa_db.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
- xa_map.o: $(srcdir)/xa/xa_map.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
-
- # Historic interfaces.
- hsearch.o: $(srcdir)/hsearch/hsearch.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
- dbm.o: $(srcdir)/dbm/dbm.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
- db185.o: $(srcdir)/db185/db185.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
-
- # Common source files.
- db_appinit.o: $(srcdir)/common/db_appinit.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
- db_apprec.o: $(srcdir)/common/db_apprec.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
- db_byteorder.o: $(srcdir)/common/db_byteorder.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
- db_err.o: $(srcdir)/common/db_err.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
- db_log2.o: $(srcdir)/common/db_log2.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
- db_region.o: $(srcdir)/common/db_region.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
- db_salloc.o: $(srcdir)/common/db_salloc.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
- db_shash.o: $(srcdir)/common/db_shash.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
-
- # OS specific source files.
- os_abs.o: $(srcdir)/os/os_abs.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
- os_alloc.o: $(srcdir)/os/os_alloc.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
- os_config.o: $(srcdir)/os/os_config.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
- os_dir.o: $(srcdir)/os/os_dir.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
- os_fid.o: $(srcdir)/os/os_fid.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
- os_fsync.o: $(srcdir)/os/os_fsync.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
- os_map.o: $(srcdir)/os/os_map.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
- os_oflags.o: $(srcdir)/os/os_oflags.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
- os_open.o: $(srcdir)/os/os_open.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
- os_rpath.o: $(srcdir)/os/os_rpath.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
- os_rw.o: $(srcdir)/os/os_rw.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
- os_seek.o: $(srcdir)/os/os_seek.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
- os_sleep.o: $(srcdir)/os/os_sleep.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
- os_spin.o: $(srcdir)/os/os_spin.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
- os_stat.o: $(srcdir)/os/os_stat.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
- os_tmpdir.o: $(srcdir)/os/os_tmpdir.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
- os_unlink.o: $(srcdir)/os/os_unlink.c
-- $(CC) $(CFLAGS) $?
-+ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) $?
-
- # Test programs.
- .dbtestrc: db.h $(srcdir)/test/test.tcl
diff --git a/databases/db/pkg/PLIST b/databases/db/pkg/PLIST
index c8454adf627..c89b2da91dd 100644
--- a/databases/db/pkg/PLIST
+++ b/databases/db/pkg/PLIST
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.1.1.1 1999/04/09 23:10:28 tron Exp $
+@comment $NetBSD: PLIST,v 1.2 1999/04/19 21:19:01 tv Exp $
bin/db_load
bin/db_dump
bin/db_deadlock
@@ -12,533 +12,533 @@ include/db2/db_cxx.h
include/db2/db.h
lib/libdb2.a
lib/libdb2.so.2.7
-docs/db/api_c/Db/close.html
-docs/db/api_c/Db/cursor.html
-docs/db/api_c/Db/del.html
-docs/db/api_c/Db/fd.html
-docs/db/api_c/Db/get.html
-docs/db/api_c/Db/join.html
-docs/db/api_c/Db/open.html
-docs/db/api_c/Db/put.html
-docs/db/api_c/Db/stat.html
-docs/db/api_c/Db/sync.html
-docs/db/api_c/DbEnv/appexit.html
-docs/db/api_c/DbEnv/appinit.html
-docs/db/api_c/DbEnv/env.html
-docs/db/api_c/DbEnv/version.html
-docs/db/api_c/DbInfo/info.html
-docs/db/api_c/DbLock/put.html
-docs/db/api_c/DbLockTab/close.html
-docs/db/api_c/DbLockTab/detect.html
-docs/db/api_c/DbLockTab/get.html
-docs/db/api_c/DbLockTab/id.html
-docs/db/api_c/DbLockTab/open.html
-docs/db/api_c/DbLockTab/stat.html
-docs/db/api_c/DbLockTab/unlink.html
-docs/db/api_c/DbLockTab/vec.html
-docs/db/api_c/DbLog/archive.html
-docs/db/api_c/DbLog/close.html
-docs/db/api_c/DbLog/compare.html
-docs/db/api_c/DbLog/db_register.html
-docs/db/api_c/DbLog/db_unregister.html
-docs/db/api_c/DbLog/file.html
-docs/db/api_c/DbLog/flush.html
-docs/db/api_c/DbLog/get.html
-docs/db/api_c/DbLog/lsn.html
-docs/db/api_c/DbLog/open.html
-docs/db/api_c/DbLog/put.html
-docs/db/api_c/DbLog/stat.html
-docs/db/api_c/DbLog/unlink.html
-docs/db/api_c/DbMpool/close.html
-docs/db/api_c/DbMpool/db_register.html
-docs/db/api_c/DbMpool/open.html
-docs/db/api_c/DbMpool/stat.html
-docs/db/api_c/DbMpool/sync.html
-docs/db/api_c/DbMpool/trickle.html
-docs/db/api_c/DbMpool/unlink.html
-docs/db/api_c/DbMpoolFile/close.html
-docs/db/api_c/DbMpoolFile/get.html
-docs/db/api_c/DbMpoolFile/open.html
-docs/db/api_c/DbMpoolFile/put.html
-docs/db/api_c/DbMpoolFile/set.html
-docs/db/api_c/DbMpoolFile/sync.html
-docs/db/api_c/DbTxn/abort.html
-docs/db/api_c/DbTxn/commit.html
-docs/db/api_c/DbTxn/id.html
-docs/db/api_c/DbTxn/prepare.html
-docs/db/api_c/DbTxnMgr/begin.html
-docs/db/api_c/DbTxnMgr/checkpoint.html
-docs/db/api_c/DbTxnMgr/close.html
-docs/db/api_c/DbTxnMgr/open.html
-docs/db/api_c/DbTxnMgr/stat.html
-docs/db/api_c/DbTxnMgr/unlink.html
-docs/db/api_c/Dbc/close.html
-docs/db/api_c/Dbc/del.html
-docs/db/api_c/Dbc/get.html
-docs/db/api_c/Dbc/put.html
-docs/db/api_c/Dbt/dbt.html
-docs/db/api_c/historic/dbm.html
-docs/db/api_c/historic/hsearch.html
-docs/db/api_c/index/flags.html
-docs/db/api_c/index/function.html
-docs/db/api_c/index/structure.html
-docs/db/api_c/internal/db_jump_set.html
-docs/db/api_c/internal/db_value_set.html
-docs/db/api_cxx/Db/class.html
-docs/db/api_cxx/Db/close.html
-docs/db/api_cxx/Db/cursor.html
-docs/db/api_cxx/Db/del.html
-docs/db/api_cxx/Db/fd.html
-docs/db/api_cxx/Db/get.html
-docs/db/api_cxx/Db/get_byteswapped.html
-docs/db/api_cxx/Db/get_type.html
-docs/db/api_cxx/Db/join.html
-docs/db/api_cxx/Db/open.html
-docs/db/api_cxx/Db/put.html
-docs/db/api_cxx/Db/stat.html
-docs/db/api_cxx/Db/sync.html
-docs/db/api_cxx/DbEnv/appexit.html
-docs/db/api_cxx/DbEnv/appinit.html
-docs/db/api_cxx/DbEnv/class.html
-docs/db/api_cxx/DbEnv/get_lg_info.html
-docs/db/api_cxx/DbEnv/get_lk_info.html
-docs/db/api_cxx/DbEnv/get_mp_info.html
-docs/db/api_cxx/DbEnv/get_tx_info.html
-docs/db/api_cxx/DbEnv/set_errcall.html
-docs/db/api_cxx/DbEnv/set_errfile.html
-docs/db/api_cxx/DbEnv/set_error_model.html
-docs/db/api_cxx/DbEnv/set_error_stream.html
-docs/db/api_cxx/DbEnv/set_errpfx.html
-docs/db/api_cxx/DbEnv/set_lg_max.html
-docs/db/api_cxx/DbEnv/set_lk_conflicts.html
-docs/db/api_cxx/DbEnv/set_lk_detect.html
-docs/db/api_cxx/DbEnv/set_lk_max.html
-docs/db/api_cxx/DbEnv/set_lk_modes.html
-docs/db/api_cxx/DbEnv/set_lorder.html
-docs/db/api_cxx/DbEnv/set_mp_mmapsize.html
-docs/db/api_cxx/DbEnv/set_mp_size.html
-docs/db/api_cxx/DbEnv/set_tx_max.html
-docs/db/api_cxx/DbEnv/set_tx_recover.html
-docs/db/api_cxx/DbEnv/set_verbose.html
-docs/db/api_cxx/DbEnv/version.html
-docs/db/api_cxx/DbException/class.html
-docs/db/api_cxx/DbException/get_errno.html
-docs/db/api_cxx/DbException/what.html
-docs/db/api_cxx/DbInfo/class.html
-docs/db/api_cxx/DbInfo/set_bt_compare.html
-docs/db/api_cxx/DbInfo/set_bt_maxkey.html
-docs/db/api_cxx/DbInfo/set_bt_minkey.html
-docs/db/api_cxx/DbInfo/set_bt_prefix.html
-docs/db/api_cxx/DbInfo/set_cachesize.html
-docs/db/api_cxx/DbInfo/set_compare.html
-docs/db/api_cxx/DbInfo/set_flags.html
-docs/db/api_cxx/DbInfo/set_h_ffactor.html
-docs/db/api_cxx/DbInfo/set_h_hash.html
-docs/db/api_cxx/DbInfo/set_h_nelem.html
-docs/db/api_cxx/DbInfo/set_lorder.html
-docs/db/api_cxx/DbInfo/set_malloc.html
-docs/db/api_cxx/DbInfo/set_pagesize.html
-docs/db/api_cxx/DbInfo/set_re_delim.html
-docs/db/api_cxx/DbInfo/set_re_len.html
-docs/db/api_cxx/DbInfo/set_re_pad.html
-docs/db/api_cxx/DbInfo/set_re_source.html
-docs/db/api_cxx/DbLock/class.html
-docs/db/api_cxx/DbLock/put.html
-docs/db/api_cxx/DbLockTab/class.html
-docs/db/api_cxx/DbLockTab/close.html
-docs/db/api_cxx/DbLockTab/detect.html
-docs/db/api_cxx/DbLockTab/get.html
-docs/db/api_cxx/DbLockTab/id.html
-docs/db/api_cxx/DbLockTab/open.html
-docs/db/api_cxx/DbLockTab/stat.html
-docs/db/api_cxx/DbLockTab/unlink.html
-docs/db/api_cxx/DbLockTab/vec.html
-docs/db/api_cxx/DbLog/archive.html
-docs/db/api_cxx/DbLog/class.html
-docs/db/api_cxx/DbLog/close.html
-docs/db/api_cxx/DbLog/compare.html
-docs/db/api_cxx/DbLog/db_register.html
-docs/db/api_cxx/DbLog/db_unregister.html
-docs/db/api_cxx/DbLog/file.html
-docs/db/api_cxx/DbLog/flush.html
-docs/db/api_cxx/DbLog/get.html
-docs/db/api_cxx/DbLog/open.html
-docs/db/api_cxx/DbLog/put.html
-docs/db/api_cxx/DbLog/stat.html
-docs/db/api_cxx/DbLog/unlink.html
-docs/db/api_cxx/DbLsn/class.html
-docs/db/api_cxx/DbMpool/class.html
-docs/db/api_cxx/DbMpool/close.html
-docs/db/api_cxx/DbMpool/db_register.html
-docs/db/api_cxx/DbMpool/open.html
-docs/db/api_cxx/DbMpool/stat.html
-docs/db/api_cxx/DbMpool/sync.html
-docs/db/api_cxx/DbMpool/trickle.html
-docs/db/api_cxx/DbMpool/unlink.html
-docs/db/api_cxx/DbMpoolFile/class.html
-docs/db/api_cxx/DbMpoolFile/close.html
-docs/db/api_cxx/DbMpoolFile/get.html
-docs/db/api_cxx/DbMpoolFile/open.html
-docs/db/api_cxx/DbMpoolFile/put.html
-docs/db/api_cxx/DbMpoolFile/set.html
-docs/db/api_cxx/DbMpoolFile/sync.html
-docs/db/api_cxx/DbTxn/abort.html
-docs/db/api_cxx/DbTxn/class.html
-docs/db/api_cxx/DbTxn/commit.html
-docs/db/api_cxx/DbTxn/id.html
-docs/db/api_cxx/DbTxn/prepare.html
-docs/db/api_cxx/DbTxnMgr/begin.html
-docs/db/api_cxx/DbTxnMgr/checkpoint.html
-docs/db/api_cxx/DbTxnMgr/class.html
-docs/db/api_cxx/DbTxnMgr/close.html
-docs/db/api_cxx/DbTxnMgr/open.html
-docs/db/api_cxx/DbTxnMgr/stat.html
-docs/db/api_cxx/DbTxnMgr/unlink.html
-docs/db/api_cxx/Dbc/class.html
-docs/db/api_cxx/Dbc/close.html
-docs/db/api_cxx/Dbc/del.html
-docs/db/api_cxx/Dbc/get.html
-docs/db/api_cxx/Dbc/put.html
-docs/db/api_cxx/Dbt/class.html
-docs/db/api_cxx/index/class.html
-docs/db/api_java/Db/class.html
-docs/db/api_java/Db/close.html
-docs/db/api_java/Db/cursor.html
-docs/db/api_java/Db/del.html
-docs/db/api_java/Db/fd.html
-docs/db/api_java/Db/get.html
-docs/db/api_java/Db/get_byteswapped.html
-docs/db/api_java/Db/get_type.html
-docs/db/api_java/Db/join.html
-docs/db/api_java/Db/open.html
-docs/db/api_java/Db/put.html
-docs/db/api_java/Db/stat.html
-docs/db/api_java/Db/sync.html
-docs/db/api_java/DbEnv/appexit.html
-docs/db/api_java/DbEnv/appinit.html
-docs/db/api_java/DbEnv/class.html
-docs/db/api_java/DbEnv/get_lg_info.html
-docs/db/api_java/DbEnv/get_lk_info.html
-docs/db/api_java/DbEnv/get_mp_info.html
-docs/db/api_java/DbEnv/get_tx_info.html
-docs/db/api_java/DbEnv/set_errcall.html
-docs/db/api_java/DbEnv/set_error_stream.html
-docs/db/api_java/DbEnv/set_errpfx.html
-docs/db/api_java/DbEnv/set_lg_max.html
-docs/db/api_java/DbEnv/set_lk_conflicts.html
-docs/db/api_java/DbEnv/set_lk_detect.html
-docs/db/api_java/DbEnv/set_lk_max.html
-docs/db/api_java/DbEnv/set_lk_modes.html
-docs/db/api_java/DbEnv/set_lorder.html
-docs/db/api_java/DbEnv/set_mp_mmapsize.html
-docs/db/api_java/DbEnv/set_mp_size.html
-docs/db/api_java/DbEnv/set_tx_max.html
-docs/db/api_java/DbEnv/set_verbose.html
-docs/db/api_java/DbEnv/version.html
-docs/db/api_java/DbException/class.html
-docs/db/api_java/DbException/get_errno.html
-docs/db/api_java/DbInfo/class.html
-docs/db/api_java/DbInfo/set_bt_compare.html
-docs/db/api_java/DbInfo/set_bt_maxkey.html
-docs/db/api_java/DbInfo/set_bt_minkey.html
-docs/db/api_java/DbInfo/set_bt_prefix.html
-docs/db/api_java/DbInfo/set_cachesize.html
-docs/db/api_java/DbInfo/set_compare.html
-docs/db/api_java/DbInfo/set_flags.html
-docs/db/api_java/DbInfo/set_h_ffactor.html
-docs/db/api_java/DbInfo/set_h_hash.html
-docs/db/api_java/DbInfo/set_h_nelem.html
-docs/db/api_java/DbInfo/set_lorder.html
-docs/db/api_java/DbInfo/set_malloc.html
-docs/db/api_java/DbInfo/set_pagesize.html
-docs/db/api_java/DbInfo/set_re_delim.html
-docs/db/api_java/DbInfo/set_re_len.html
-docs/db/api_java/DbInfo/set_re_pad.html
-docs/db/api_java/DbInfo/set_re_source.html
-docs/db/api_java/DbLock/class.html
-docs/db/api_java/DbLock/put.html
-docs/db/api_java/DbLockTab/class.html
-docs/db/api_java/DbLockTab/close.html
-docs/db/api_java/DbLockTab/detect.html
-docs/db/api_java/DbLockTab/get.html
-docs/db/api_java/DbLockTab/id.html
-docs/db/api_java/DbLockTab/open.html
-docs/db/api_java/DbLockTab/stat.html
-docs/db/api_java/DbLockTab/unlink.html
-docs/db/api_java/DbLockTab/vec.html
-docs/db/api_java/DbLog/archive.html
-docs/db/api_java/DbLog/class.html
-docs/db/api_java/DbLog/close.html
-docs/db/api_java/DbLog/compare.html
-docs/db/api_java/DbLog/db_register.html
-docs/db/api_java/DbLog/db_unregister.html
-docs/db/api_java/DbLog/file.html
-docs/db/api_java/DbLog/flush.html
-docs/db/api_java/DbLog/get.html
-docs/db/api_java/DbLog/open.html
-docs/db/api_java/DbLog/put.html
-docs/db/api_java/DbLog/stat.html
-docs/db/api_java/DbLog/unlink.html
-docs/db/api_java/DbLsn/class.html
-docs/db/api_java/DbMpool/class.html
-docs/db/api_java/DbMpool/close.html
-docs/db/api_java/DbMpool/db_register.html
-docs/db/api_java/DbMpool/open.html
-docs/db/api_java/DbMpool/stat.html
-docs/db/api_java/DbMpool/sync.html
-docs/db/api_java/DbMpool/trickle.html
-docs/db/api_java/DbMpool/unlink.html
-docs/db/api_java/DbMpoolFile/class.html
-docs/db/api_java/DbMpoolFile/close.html
-docs/db/api_java/DbMpoolFile/get.html
-docs/db/api_java/DbMpoolFile/open.html
-docs/db/api_java/DbMpoolFile/put.html
-docs/db/api_java/DbMpoolFile/set.html
-docs/db/api_java/DbMpoolFile/sync.html
-docs/db/api_java/DbRunRecoveryException/class.html
-docs/db/api_java/DbTxn/abort.html
-docs/db/api_java/DbTxn/class.html
-docs/db/api_java/DbTxn/commit.html
-docs/db/api_java/DbTxn/id.html
-docs/db/api_java/DbTxn/prepare.html
-docs/db/api_java/DbTxnMgr/begin.html
-docs/db/api_java/DbTxnMgr/checkpoint.html
-docs/db/api_java/DbTxnMgr/class.html
-docs/db/api_java/DbTxnMgr/close.html
-docs/db/api_java/DbTxnMgr/open.html
-docs/db/api_java/DbTxnMgr/stat.html
-docs/db/api_java/DbTxnMgr/unlink.html
-docs/db/api_java/Dbc/class.html
-docs/db/api_java/Dbc/close.html
-docs/db/api_java/Dbc/del.html
-docs/db/api_java/Dbc/get.html
-docs/db/api_java/Dbc/put.html
-docs/db/api_java/Dbt/class.html
-docs/db/api_java/index/class.html
-docs/db/build/java.html
-docs/db/build/shared.html
-docs/db/build/shared_gcc.html
-docs/db/build/shared_hp.html
-docs/db/build/unix.html
-docs/db/build/unix_faq.html
-docs/db/build/win16.html
-docs/db/build/win32.html
-docs/db/build/win_faq.html
-docs/db/distrib/layout.html
-docs/db/images/folder.gif
-docs/db/images/folder_open.gif
-docs/db/images/next.gif
-docs/db/images/prev.gif
-docs/db/images/ps.gif
-docs/db/images/sleepycat.gif
-docs/db/images/toc.gif
-docs/db/index.html
-docs/db/packages/hash_usenix.ps
-docs/db/packages/index.html
-docs/db/packages/libtp_usenix.ps
-docs/db/packages/witold.html
-docs/db/ref/am/bt_compare.html
-docs/db/ref/am/bt_dup.html
-docs/db/ref/am/bt_maxkey.html
-docs/db/ref/am/bt_minkey.html
-docs/db/ref/am/bt_prefix.html
-docs/db/ref/am/bt_recnum.html
-docs/db/ref/am/byteorder.html
-docs/db/ref/am/cachesize.html
-docs/db/ref/am/close.html
-docs/db/ref/am/compare.html
-docs/db/ref/am/curclose.html
-docs/db/ref/am/curdel.html
-docs/db/ref/am/curget.html
-docs/db/ref/am/curput.html
-docs/db/ref/am/cursor.html
-docs/db/ref/am/delete.html
-docs/db/ref/am/get.html
-docs/db/ref/am/h_dup.html
-docs/db/ref/am/h_ffactor.html
-docs/db/ref/am/h_hash.html
-docs/db/ref/am/h_nelem.html
-docs/db/ref/am/intro.html
-docs/db/ref/am/join.html
-docs/db/ref/am/logrec.html
-docs/db/ref/am/malloc.html
-docs/db/ref/am/ops.html
-docs/db/ref/am/pagesize.html
-docs/db/ref/am/partial.html
-docs/db/ref/am/put.html
-docs/db/ref/am/re_delim.html
-docs/db/ref/am/re_len.html
-docs/db/ref/am/re_pad.html
-docs/db/ref/am/re_source.html
-docs/db/ref/am/renumber.html
-docs/db/ref/am/select.html
-docs/db/ref/am/stat.html
-docs/db/ref/am/sync.html
-docs/db/ref/arch/apis.html
-docs/db/ref/arch/bigpic.gif
-docs/db/ref/arch/bigpic.html
-docs/db/ref/arch/env.html
-docs/db/ref/arch/extending.html
-docs/db/ref/arch/progmodel.html
-docs/db/ref/arch/script.html
-docs/db/ref/arch/smallpic.gif
-docs/db/ref/arch/subsystem.html
-docs/db/ref/arch/utilities.html
-docs/db/ref/cam/intro.html
-docs/db/ref/debug/runtime.html
-docs/db/ref/dumpload/format.html
-docs/db/ref/dumpload/text.html
-docs/db/ref/dumpload/utility.html
-docs/db/ref/env/create.html
-docs/db/ref/env/naming.html
-docs/db/ref/env/open.html
-docs/db/ref/env/region.html
-docs/db/ref/env/security.html
-docs/db/ref/install/file.html
-docs/db/ref/install/magic.s5.be.txt
-docs/db/ref/install/magic.s5.le.txt
-docs/db/ref/install/magic.txt
-docs/db/ref/intro/distrib.html
-docs/db/ref/intro/do.html
-docs/db/ref/intro/what.html
-docs/db/ref/intro/where.html
-docs/db/ref/lock/stdmode.html
-docs/db/ref/log/config.html
-docs/db/ref/log/intro.html
-docs/db/ref/log/limits.html
-docs/db/ref/mp/config.html
-docs/db/ref/mp/intro.html
-docs/db/ref/perl/intro.html
-docs/db/ref/program/appsignals.html
-docs/db/ref/program/byteorder.html
-docs/db/ref/program/compatible.html
-docs/db/ref/program/convert.html
-docs/db/ref/program/dbsizes.html
-docs/db/ref/program/environ.html
-docs/db/ref/program/errorret.html
-docs/db/ref/program/java.html
-docs/db/ref/program/runtime.html
-docs/db/ref/program/solaris.txt
-docs/db/ref/program/thread.html
-docs/db/ref/program/version.html
-docs/db/ref/sendmail/intro.html
-docs/db/ref/simple_tut/close.html
-docs/db/ref/simple_tut/del.html
-docs/db/ref/simple_tut/errors.html
-docs/db/ref/simple_tut/example.txt
-docs/db/ref/simple_tut/get.html
-docs/db/ref/simple_tut/intro.html
-docs/db/ref/simple_tut/keydata.html
-docs/db/ref/simple_tut/open.html
-docs/db/ref/simple_tut/put.html
-docs/db/ref/toc.html
-docs/db/ref/transapp/admin.html
-docs/db/ref/transapp/apps.html
-docs/db/ref/transapp/archival.html
-docs/db/ref/transapp/checkpoint.html
-docs/db/ref/transapp/deadlock.html
-docs/db/ref/transapp/filesys.html
-docs/db/ref/transapp/intro.html
-docs/db/ref/transapp/recovery.html
-docs/db/ref/transapp/throughput.html
-docs/db/ref/transapp/writetest.txt
-docs/db/ref/txn/config.html
-docs/db/ref/txn/limits.html
-docs/db/ref/txn/other.html
-docs/db/ref/txn/stability.html
-docs/db/sleepycat/contact.html
-docs/db/sleepycat/products.html
-docs/db/test/build.html
-docs/db/test/build_faq.html
-docs/db/test/debug.html
-docs/db/test/run.html
-docs/db/utility/db_archive.html
-docs/db/utility/db_checkpoint.html
-docs/db/utility/db_deadlock.html
-docs/db/utility/db_dump.html
-docs/db/utility/db_load.html
-docs/db/utility/db_recover.html
-docs/db/utility/db_stat.html
-docs/db/utility/index.html
-@exec mkdir -p %D/docs/db/api_java/special
-@exec mkdir -p %D/docs/db/api_cxx/special
-@exec mkdir -p %D/docs/db/api_c/special
-@dirrm docs/db/utility
-@dirrm docs/db/test
-@dirrm docs/db/sleepycat
-@dirrm docs/db/ref/txn
-@dirrm docs/db/ref/transapp
-@dirrm docs/db/ref/simple_tut
-@dirrm docs/db/ref/sendmail
-@dirrm docs/db/ref/program
-@dirrm docs/db/ref/perl
-@dirrm docs/db/ref/mp
-@dirrm docs/db/ref/log
-@dirrm docs/db/ref/lock
-@dirrm docs/db/ref/intro
-@dirrm docs/db/ref/install
-@dirrm docs/db/ref/env
-@dirrm docs/db/ref/dumpload
-@dirrm docs/db/ref/debug
-@dirrm docs/db/ref/cam
-@dirrm docs/db/ref/arch
-@dirrm docs/db/ref/am
-@dirrm docs/db/ref
-@dirrm docs/db/packages
-@dirrm docs/db/images
-@dirrm docs/db/distrib
-@dirrm docs/db/build
-@dirrm docs/db/api_java/special
-@dirrm docs/db/api_java/index
-@dirrm docs/db/api_java/Dbt
-@dirrm docs/db/api_java/Dbc
-@dirrm docs/db/api_java/DbTxnMgr
-@dirrm docs/db/api_java/DbTxn
-@dirrm docs/db/api_java/DbRunRecoveryException
-@dirrm docs/db/api_java/DbMpoolFile
-@dirrm docs/db/api_java/DbMpool
-@dirrm docs/db/api_java/DbLsn
-@dirrm docs/db/api_java/DbLog
-@dirrm docs/db/api_java/DbLockTab
-@dirrm docs/db/api_java/DbLock
-@dirrm docs/db/api_java/DbInfo
-@dirrm docs/db/api_java/DbException
-@dirrm docs/db/api_java/DbEnv
-@dirrm docs/db/api_java/Db
-@dirrm docs/db/api_java
-@dirrm docs/db/api_cxx/special
-@dirrm docs/db/api_cxx/index
-@dirrm docs/db/api_cxx/Dbt
-@dirrm docs/db/api_cxx/Dbc
-@dirrm docs/db/api_cxx/DbTxnMgr
-@dirrm docs/db/api_cxx/DbTxn
-@dirrm docs/db/api_cxx/DbMpoolFile
-@dirrm docs/db/api_cxx/DbMpool
-@dirrm docs/db/api_cxx/DbLsn
-@dirrm docs/db/api_cxx/DbLog
-@dirrm docs/db/api_cxx/DbLockTab
-@dirrm docs/db/api_cxx/DbLock
-@dirrm docs/db/api_cxx/DbInfo
-@dirrm docs/db/api_cxx/DbException
-@dirrm docs/db/api_cxx/DbEnv
-@dirrm docs/db/api_cxx/Db
-@dirrm docs/db/api_cxx
-@dirrm docs/db/api_c/special
-@dirrm docs/db/api_c/internal
-@dirrm docs/db/api_c/index
-@dirrm docs/db/api_c/historic
-@dirrm docs/db/api_c/Dbt
-@dirrm docs/db/api_c/Dbc
-@dirrm docs/db/api_c/DbTxnMgr
-@dirrm docs/db/api_c/DbTxn
-@dirrm docs/db/api_c/DbMpoolFile
-@dirrm docs/db/api_c/DbMpool
-@dirrm docs/db/api_c/DbLog
-@dirrm docs/db/api_c/DbLockTab
-@dirrm docs/db/api_c/DbLock
-@dirrm docs/db/api_c/DbInfo
-@dirrm docs/db/api_c/DbEnv
-@dirrm docs/db/api_c/Db
-@dirrm docs/db/api_c
-@dirrm docs/db
+share/doc/db/api_c/Db/close.html
+share/doc/db/api_c/Db/cursor.html
+share/doc/db/api_c/Db/del.html
+share/doc/db/api_c/Db/fd.html
+share/doc/db/api_c/Db/get.html
+share/doc/db/api_c/Db/join.html
+share/doc/db/api_c/Db/open.html
+share/doc/db/api_c/Db/put.html
+share/doc/db/api_c/Db/stat.html
+share/doc/db/api_c/Db/sync.html
+share/doc/db/api_c/DbEnv/appexit.html
+share/doc/db/api_c/DbEnv/appinit.html
+share/doc/db/api_c/DbEnv/env.html
+share/doc/db/api_c/DbEnv/version.html
+share/doc/db/api_c/DbInfo/info.html
+share/doc/db/api_c/DbLock/put.html
+share/doc/db/api_c/DbLockTab/close.html
+share/doc/db/api_c/DbLockTab/detect.html
+share/doc/db/api_c/DbLockTab/get.html
+share/doc/db/api_c/DbLockTab/id.html
+share/doc/db/api_c/DbLockTab/open.html
+share/doc/db/api_c/DbLockTab/stat.html
+share/doc/db/api_c/DbLockTab/unlink.html
+share/doc/db/api_c/DbLockTab/vec.html
+share/doc/db/api_c/DbLog/archive.html
+share/doc/db/api_c/DbLog/close.html
+share/doc/db/api_c/DbLog/compare.html
+share/doc/db/api_c/DbLog/db_register.html
+share/doc/db/api_c/DbLog/db_unregister.html
+share/doc/db/api_c/DbLog/file.html
+share/doc/db/api_c/DbLog/flush.html
+share/doc/db/api_c/DbLog/get.html
+share/doc/db/api_c/DbLog/lsn.html
+share/doc/db/api_c/DbLog/open.html
+share/doc/db/api_c/DbLog/put.html
+share/doc/db/api_c/DbLog/stat.html
+share/doc/db/api_c/DbLog/unlink.html
+share/doc/db/api_c/DbMpool/close.html
+share/doc/db/api_c/DbMpool/db_register.html
+share/doc/db/api_c/DbMpool/open.html
+share/doc/db/api_c/DbMpool/stat.html
+share/doc/db/api_c/DbMpool/sync.html
+share/doc/db/api_c/DbMpool/trickle.html
+share/doc/db/api_c/DbMpool/unlink.html
+share/doc/db/api_c/DbMpoolFile/close.html
+share/doc/db/api_c/DbMpoolFile/get.html
+share/doc/db/api_c/DbMpoolFile/open.html
+share/doc/db/api_c/DbMpoolFile/put.html
+share/doc/db/api_c/DbMpoolFile/set.html
+share/doc/db/api_c/DbMpoolFile/sync.html
+share/doc/db/api_c/DbTxn/abort.html
+share/doc/db/api_c/DbTxn/commit.html
+share/doc/db/api_c/DbTxn/id.html
+share/doc/db/api_c/DbTxn/prepare.html
+share/doc/db/api_c/DbTxnMgr/begin.html
+share/doc/db/api_c/DbTxnMgr/checkpoint.html
+share/doc/db/api_c/DbTxnMgr/close.html
+share/doc/db/api_c/DbTxnMgr/open.html
+share/doc/db/api_c/DbTxnMgr/stat.html
+share/doc/db/api_c/DbTxnMgr/unlink.html
+share/doc/db/api_c/Dbc/close.html
+share/doc/db/api_c/Dbc/del.html
+share/doc/db/api_c/Dbc/get.html
+share/doc/db/api_c/Dbc/put.html
+share/doc/db/api_c/Dbt/dbt.html
+share/doc/db/api_c/historic/dbm.html
+share/doc/db/api_c/historic/hsearch.html
+share/doc/db/api_c/index/flags.html
+share/doc/db/api_c/index/function.html
+share/doc/db/api_c/index/structure.html
+share/doc/db/api_c/internal/db_jump_set.html
+share/doc/db/api_c/internal/db_value_set.html
+share/doc/db/api_cxx/Db/class.html
+share/doc/db/api_cxx/Db/close.html
+share/doc/db/api_cxx/Db/cursor.html
+share/doc/db/api_cxx/Db/del.html
+share/doc/db/api_cxx/Db/fd.html
+share/doc/db/api_cxx/Db/get.html
+share/doc/db/api_cxx/Db/get_byteswapped.html
+share/doc/db/api_cxx/Db/get_type.html
+share/doc/db/api_cxx/Db/join.html
+share/doc/db/api_cxx/Db/open.html
+share/doc/db/api_cxx/Db/put.html
+share/doc/db/api_cxx/Db/stat.html
+share/doc/db/api_cxx/Db/sync.html
+share/doc/db/api_cxx/DbEnv/appexit.html
+share/doc/db/api_cxx/DbEnv/appinit.html
+share/doc/db/api_cxx/DbEnv/class.html
+share/doc/db/api_cxx/DbEnv/get_lg_info.html
+share/doc/db/api_cxx/DbEnv/get_lk_info.html
+share/doc/db/api_cxx/DbEnv/get_mp_info.html
+share/doc/db/api_cxx/DbEnv/get_tx_info.html
+share/doc/db/api_cxx/DbEnv/set_errcall.html
+share/doc/db/api_cxx/DbEnv/set_errfile.html
+share/doc/db/api_cxx/DbEnv/set_error_model.html
+share/doc/db/api_cxx/DbEnv/set_error_stream.html
+share/doc/db/api_cxx/DbEnv/set_errpfx.html
+share/doc/db/api_cxx/DbEnv/set_lg_max.html
+share/doc/db/api_cxx/DbEnv/set_lk_conflicts.html
+share/doc/db/api_cxx/DbEnv/set_lk_detect.html
+share/doc/db/api_cxx/DbEnv/set_lk_max.html
+share/doc/db/api_cxx/DbEnv/set_lk_modes.html
+share/doc/db/api_cxx/DbEnv/set_lorder.html
+share/doc/db/api_cxx/DbEnv/set_mp_mmapsize.html
+share/doc/db/api_cxx/DbEnv/set_mp_size.html
+share/doc/db/api_cxx/DbEnv/set_tx_max.html
+share/doc/db/api_cxx/DbEnv/set_tx_recover.html
+share/doc/db/api_cxx/DbEnv/set_verbose.html
+share/doc/db/api_cxx/DbEnv/version.html
+share/doc/db/api_cxx/DbException/class.html
+share/doc/db/api_cxx/DbException/get_errno.html
+share/doc/db/api_cxx/DbException/what.html
+share/doc/db/api_cxx/DbInfo/class.html
+share/doc/db/api_cxx/DbInfo/set_bt_compare.html
+share/doc/db/api_cxx/DbInfo/set_bt_maxkey.html
+share/doc/db/api_cxx/DbInfo/set_bt_minkey.html
+share/doc/db/api_cxx/DbInfo/set_bt_prefix.html
+share/doc/db/api_cxx/DbInfo/set_cachesize.html
+share/doc/db/api_cxx/DbInfo/set_compare.html
+share/doc/db/api_cxx/DbInfo/set_flags.html
+share/doc/db/api_cxx/DbInfo/set_h_ffactor.html
+share/doc/db/api_cxx/DbInfo/set_h_hash.html
+share/doc/db/api_cxx/DbInfo/set_h_nelem.html
+share/doc/db/api_cxx/DbInfo/set_lorder.html
+share/doc/db/api_cxx/DbInfo/set_malloc.html
+share/doc/db/api_cxx/DbInfo/set_pagesize.html
+share/doc/db/api_cxx/DbInfo/set_re_delim.html
+share/doc/db/api_cxx/DbInfo/set_re_len.html
+share/doc/db/api_cxx/DbInfo/set_re_pad.html
+share/doc/db/api_cxx/DbInfo/set_re_source.html
+share/doc/db/api_cxx/DbLock/class.html
+share/doc/db/api_cxx/DbLock/put.html
+share/doc/db/api_cxx/DbLockTab/class.html
+share/doc/db/api_cxx/DbLockTab/close.html
+share/doc/db/api_cxx/DbLockTab/detect.html
+share/doc/db/api_cxx/DbLockTab/get.html
+share/doc/db/api_cxx/DbLockTab/id.html
+share/doc/db/api_cxx/DbLockTab/open.html
+share/doc/db/api_cxx/DbLockTab/stat.html
+share/doc/db/api_cxx/DbLockTab/unlink.html
+share/doc/db/api_cxx/DbLockTab/vec.html
+share/doc/db/api_cxx/DbLog/archive.html
+share/doc/db/api_cxx/DbLog/class.html
+share/doc/db/api_cxx/DbLog/close.html
+share/doc/db/api_cxx/DbLog/compare.html
+share/doc/db/api_cxx/DbLog/db_register.html
+share/doc/db/api_cxx/DbLog/db_unregister.html
+share/doc/db/api_cxx/DbLog/file.html
+share/doc/db/api_cxx/DbLog/flush.html
+share/doc/db/api_cxx/DbLog/get.html
+share/doc/db/api_cxx/DbLog/open.html
+share/doc/db/api_cxx/DbLog/put.html
+share/doc/db/api_cxx/DbLog/stat.html
+share/doc/db/api_cxx/DbLog/unlink.html
+share/doc/db/api_cxx/DbLsn/class.html
+share/doc/db/api_cxx/DbMpool/class.html
+share/doc/db/api_cxx/DbMpool/close.html
+share/doc/db/api_cxx/DbMpool/db_register.html
+share/doc/db/api_cxx/DbMpool/open.html
+share/doc/db/api_cxx/DbMpool/stat.html
+share/doc/db/api_cxx/DbMpool/sync.html
+share/doc/db/api_cxx/DbMpool/trickle.html
+share/doc/db/api_cxx/DbMpool/unlink.html
+share/doc/db/api_cxx/DbMpoolFile/class.html
+share/doc/db/api_cxx/DbMpoolFile/close.html
+share/doc/db/api_cxx/DbMpoolFile/get.html
+share/doc/db/api_cxx/DbMpoolFile/open.html
+share/doc/db/api_cxx/DbMpoolFile/put.html
+share/doc/db/api_cxx/DbMpoolFile/set.html
+share/doc/db/api_cxx/DbMpoolFile/sync.html
+share/doc/db/api_cxx/DbTxn/abort.html
+share/doc/db/api_cxx/DbTxn/class.html
+share/doc/db/api_cxx/DbTxn/commit.html
+share/doc/db/api_cxx/DbTxn/id.html
+share/doc/db/api_cxx/DbTxn/prepare.html
+share/doc/db/api_cxx/DbTxnMgr/begin.html
+share/doc/db/api_cxx/DbTxnMgr/checkpoint.html
+share/doc/db/api_cxx/DbTxnMgr/class.html
+share/doc/db/api_cxx/DbTxnMgr/close.html
+share/doc/db/api_cxx/DbTxnMgr/open.html
+share/doc/db/api_cxx/DbTxnMgr/stat.html
+share/doc/db/api_cxx/DbTxnMgr/unlink.html
+share/doc/db/api_cxx/Dbc/class.html
+share/doc/db/api_cxx/Dbc/close.html
+share/doc/db/api_cxx/Dbc/del.html
+share/doc/db/api_cxx/Dbc/get.html
+share/doc/db/api_cxx/Dbc/put.html
+share/doc/db/api_cxx/Dbt/class.html
+share/doc/db/api_cxx/index/class.html
+share/doc/db/api_java/Db/class.html
+share/doc/db/api_java/Db/close.html
+share/doc/db/api_java/Db/cursor.html
+share/doc/db/api_java/Db/del.html
+share/doc/db/api_java/Db/fd.html
+share/doc/db/api_java/Db/get.html
+share/doc/db/api_java/Db/get_byteswapped.html
+share/doc/db/api_java/Db/get_type.html
+share/doc/db/api_java/Db/join.html
+share/doc/db/api_java/Db/open.html
+share/doc/db/api_java/Db/put.html
+share/doc/db/api_java/Db/stat.html
+share/doc/db/api_java/Db/sync.html
+share/doc/db/api_java/DbEnv/appexit.html
+share/doc/db/api_java/DbEnv/appinit.html
+share/doc/db/api_java/DbEnv/class.html
+share/doc/db/api_java/DbEnv/get_lg_info.html
+share/doc/db/api_java/DbEnv/get_lk_info.html
+share/doc/db/api_java/DbEnv/get_mp_info.html
+share/doc/db/api_java/DbEnv/get_tx_info.html
+share/doc/db/api_java/DbEnv/set_errcall.html
+share/doc/db/api_java/DbEnv/set_error_stream.html
+share/doc/db/api_java/DbEnv/set_errpfx.html
+share/doc/db/api_java/DbEnv/set_lg_max.html
+share/doc/db/api_java/DbEnv/set_lk_conflicts.html
+share/doc/db/api_java/DbEnv/set_lk_detect.html
+share/doc/db/api_java/DbEnv/set_lk_max.html
+share/doc/db/api_java/DbEnv/set_lk_modes.html
+share/doc/db/api_java/DbEnv/set_lorder.html
+share/doc/db/api_java/DbEnv/set_mp_mmapsize.html
+share/doc/db/api_java/DbEnv/set_mp_size.html
+share/doc/db/api_java/DbEnv/set_tx_max.html
+share/doc/db/api_java/DbEnv/set_verbose.html
+share/doc/db/api_java/DbEnv/version.html
+share/doc/db/api_java/DbException/class.html
+share/doc/db/api_java/DbException/get_errno.html
+share/doc/db/api_java/DbInfo/class.html
+share/doc/db/api_java/DbInfo/set_bt_compare.html
+share/doc/db/api_java/DbInfo/set_bt_maxkey.html
+share/doc/db/api_java/DbInfo/set_bt_minkey.html
+share/doc/db/api_java/DbInfo/set_bt_prefix.html
+share/doc/db/api_java/DbInfo/set_cachesize.html
+share/doc/db/api_java/DbInfo/set_compare.html
+share/doc/db/api_java/DbInfo/set_flags.html
+share/doc/db/api_java/DbInfo/set_h_ffactor.html
+share/doc/db/api_java/DbInfo/set_h_hash.html
+share/doc/db/api_java/DbInfo/set_h_nelem.html
+share/doc/db/api_java/DbInfo/set_lorder.html
+share/doc/db/api_java/DbInfo/set_malloc.html
+share/doc/db/api_java/DbInfo/set_pagesize.html
+share/doc/db/api_java/DbInfo/set_re_delim.html
+share/doc/db/api_java/DbInfo/set_re_len.html
+share/doc/db/api_java/DbInfo/set_re_pad.html
+share/doc/db/api_java/DbInfo/set_re_source.html
+share/doc/db/api_java/DbLock/class.html
+share/doc/db/api_java/DbLock/put.html
+share/doc/db/api_java/DbLockTab/class.html
+share/doc/db/api_java/DbLockTab/close.html
+share/doc/db/api_java/DbLockTab/detect.html
+share/doc/db/api_java/DbLockTab/get.html
+share/doc/db/api_java/DbLockTab/id.html
+share/doc/db/api_java/DbLockTab/open.html
+share/doc/db/api_java/DbLockTab/stat.html
+share/doc/db/api_java/DbLockTab/unlink.html
+share/doc/db/api_java/DbLockTab/vec.html
+share/doc/db/api_java/DbLog/archive.html
+share/doc/db/api_java/DbLog/class.html
+share/doc/db/api_java/DbLog/close.html
+share/doc/db/api_java/DbLog/compare.html
+share/doc/db/api_java/DbLog/db_register.html
+share/doc/db/api_java/DbLog/db_unregister.html
+share/doc/db/api_java/DbLog/file.html
+share/doc/db/api_java/DbLog/flush.html
+share/doc/db/api_java/DbLog/get.html
+share/doc/db/api_java/DbLog/open.html
+share/doc/db/api_java/DbLog/put.html
+share/doc/db/api_java/DbLog/stat.html
+share/doc/db/api_java/DbLog/unlink.html
+share/doc/db/api_java/DbLsn/class.html
+share/doc/db/api_java/DbMpool/class.html
+share/doc/db/api_java/DbMpool/close.html
+share/doc/db/api_java/DbMpool/db_register.html
+share/doc/db/api_java/DbMpool/open.html
+share/doc/db/api_java/DbMpool/stat.html
+share/doc/db/api_java/DbMpool/sync.html
+share/doc/db/api_java/DbMpool/trickle.html
+share/doc/db/api_java/DbMpool/unlink.html
+share/doc/db/api_java/DbMpoolFile/class.html
+share/doc/db/api_java/DbMpoolFile/close.html
+share/doc/db/api_java/DbMpoolFile/get.html
+share/doc/db/api_java/DbMpoolFile/open.html
+share/doc/db/api_java/DbMpoolFile/put.html
+share/doc/db/api_java/DbMpoolFile/set.html
+share/doc/db/api_java/DbMpoolFile/sync.html
+share/doc/db/api_java/DbRunRecoveryException/class.html
+share/doc/db/api_java/DbTxn/abort.html
+share/doc/db/api_java/DbTxn/class.html
+share/doc/db/api_java/DbTxn/commit.html
+share/doc/db/api_java/DbTxn/id.html
+share/doc/db/api_java/DbTxn/prepare.html
+share/doc/db/api_java/DbTxnMgr/begin.html
+share/doc/db/api_java/DbTxnMgr/checkpoint.html
+share/doc/db/api_java/DbTxnMgr/class.html
+share/doc/db/api_java/DbTxnMgr/close.html
+share/doc/db/api_java/DbTxnMgr/open.html
+share/doc/db/api_java/DbTxnMgr/stat.html
+share/doc/db/api_java/DbTxnMgr/unlink.html
+share/doc/db/api_java/Dbc/class.html
+share/doc/db/api_java/Dbc/close.html
+share/doc/db/api_java/Dbc/del.html
+share/doc/db/api_java/Dbc/get.html
+share/doc/db/api_java/Dbc/put.html
+share/doc/db/api_java/Dbt/class.html
+share/doc/db/api_java/index/class.html
+share/doc/db/build/java.html
+share/doc/db/build/shared.html
+share/doc/db/build/shared_gcc.html
+share/doc/db/build/shared_hp.html
+share/doc/db/build/unix.html
+share/doc/db/build/unix_faq.html
+share/doc/db/build/win16.html
+share/doc/db/build/win32.html
+share/doc/db/build/win_faq.html
+share/doc/db/distrib/layout.html
+share/doc/db/images/folder.gif
+share/doc/db/images/folder_open.gif
+share/doc/db/images/next.gif
+share/doc/db/images/prev.gif
+share/doc/db/images/ps.gif
+share/doc/db/images/sleepycat.gif
+share/doc/db/images/toc.gif
+share/doc/db/index.html
+share/doc/db/packages/hash_usenix.ps
+share/doc/db/packages/index.html
+share/doc/db/packages/libtp_usenix.ps
+share/doc/db/packages/witold.html
+share/doc/db/ref/am/bt_compare.html
+share/doc/db/ref/am/bt_dup.html
+share/doc/db/ref/am/bt_maxkey.html
+share/doc/db/ref/am/bt_minkey.html
+share/doc/db/ref/am/bt_prefix.html
+share/doc/db/ref/am/bt_recnum.html
+share/doc/db/ref/am/byteorder.html
+share/doc/db/ref/am/cachesize.html
+share/doc/db/ref/am/close.html
+share/doc/db/ref/am/compare.html
+share/doc/db/ref/am/curclose.html
+share/doc/db/ref/am/curdel.html
+share/doc/db/ref/am/curget.html
+share/doc/db/ref/am/curput.html
+share/doc/db/ref/am/cursor.html
+share/doc/db/ref/am/delete.html
+share/doc/db/ref/am/get.html
+share/doc/db/ref/am/h_dup.html
+share/doc/db/ref/am/h_ffactor.html
+share/doc/db/ref/am/h_hash.html
+share/doc/db/ref/am/h_nelem.html
+share/doc/db/ref/am/intro.html
+share/doc/db/ref/am/join.html
+share/doc/db/ref/am/logrec.html
+share/doc/db/ref/am/malloc.html
+share/doc/db/ref/am/ops.html
+share/doc/db/ref/am/pagesize.html
+share/doc/db/ref/am/partial.html
+share/doc/db/ref/am/put.html
+share/doc/db/ref/am/re_delim.html
+share/doc/db/ref/am/re_len.html
+share/doc/db/ref/am/re_pad.html
+share/doc/db/ref/am/re_source.html
+share/doc/db/ref/am/renumber.html
+share/doc/db/ref/am/select.html
+share/doc/db/ref/am/stat.html
+share/doc/db/ref/am/sync.html
+share/doc/db/ref/arch/apis.html
+share/doc/db/ref/arch/bigpic.gif
+share/doc/db/ref/arch/bigpic.html
+share/doc/db/ref/arch/env.html
+share/doc/db/ref/arch/extending.html
+share/doc/db/ref/arch/progmodel.html
+share/doc/db/ref/arch/script.html
+share/doc/db/ref/arch/smallpic.gif
+share/doc/db/ref/arch/subsystem.html
+share/doc/db/ref/arch/utilities.html
+share/doc/db/ref/cam/intro.html
+share/doc/db/ref/debug/runtime.html
+share/doc/db/ref/dumpload/format.html
+share/doc/db/ref/dumpload/text.html
+share/doc/db/ref/dumpload/utility.html
+share/doc/db/ref/env/create.html
+share/doc/db/ref/env/naming.html
+share/doc/db/ref/env/open.html
+share/doc/db/ref/env/region.html
+share/doc/db/ref/env/security.html
+share/doc/db/ref/install/file.html
+share/doc/db/ref/install/magic.s5.be.txt
+share/doc/db/ref/install/magic.s5.le.txt
+share/doc/db/ref/install/magic.txt
+share/doc/db/ref/intro/distrib.html
+share/doc/db/ref/intro/do.html
+share/doc/db/ref/intro/what.html
+share/doc/db/ref/intro/where.html
+share/doc/db/ref/lock/stdmode.html
+share/doc/db/ref/log/config.html
+share/doc/db/ref/log/intro.html
+share/doc/db/ref/log/limits.html
+share/doc/db/ref/mp/config.html
+share/doc/db/ref/mp/intro.html
+share/doc/db/ref/perl/intro.html
+share/doc/db/ref/program/appsignals.html
+share/doc/db/ref/program/byteorder.html
+share/doc/db/ref/program/compatible.html
+share/doc/db/ref/program/convert.html
+share/doc/db/ref/program/dbsizes.html
+share/doc/db/ref/program/environ.html
+share/doc/db/ref/program/errorret.html
+share/doc/db/ref/program/java.html
+share/doc/db/ref/program/runtime.html
+share/doc/db/ref/program/solaris.txt
+share/doc/db/ref/program/thread.html
+share/doc/db/ref/program/version.html
+share/doc/db/ref/sendmail/intro.html
+share/doc/db/ref/simple_tut/close.html
+share/doc/db/ref/simple_tut/del.html
+share/doc/db/ref/simple_tut/errors.html
+share/doc/db/ref/simple_tut/example.txt
+share/doc/db/ref/simple_tut/get.html
+share/doc/db/ref/simple_tut/intro.html
+share/doc/db/ref/simple_tut/keydata.html
+share/doc/db/ref/simple_tut/open.html
+share/doc/db/ref/simple_tut/put.html
+share/doc/db/ref/toc.html
+share/doc/db/ref/transapp/admin.html
+share/doc/db/ref/transapp/apps.html
+share/doc/db/ref/transapp/archival.html
+share/doc/db/ref/transapp/checkpoint.html
+share/doc/db/ref/transapp/deadlock.html
+share/doc/db/ref/transapp/filesys.html
+share/doc/db/ref/transapp/intro.html
+share/doc/db/ref/transapp/recovery.html
+share/doc/db/ref/transapp/throughput.html
+share/doc/db/ref/transapp/writetest.txt
+share/doc/db/ref/txn/config.html
+share/doc/db/ref/txn/limits.html
+share/doc/db/ref/txn/other.html
+share/doc/db/ref/txn/stability.html
+share/doc/db/sleepycat/contact.html
+share/doc/db/sleepycat/products.html
+share/doc/db/test/build.html
+share/doc/db/test/build_faq.html
+share/doc/db/test/debug.html
+share/doc/db/test/run.html
+share/doc/db/utility/db_archive.html
+share/doc/db/utility/db_checkpoint.html
+share/doc/db/utility/db_deadlock.html
+share/doc/db/utility/db_dump.html
+share/doc/db/utility/db_load.html
+share/doc/db/utility/db_recover.html
+share/doc/db/utility/db_stat.html
+share/doc/db/utility/index.html
+@exec mkdir -p %D/share/doc/db/api_java/special
+@exec mkdir -p %D/share/doc/db/api_cxx/special
+@exec mkdir -p %D/share/doc/db/api_c/special
+@dirrm share/doc/db/utility
+@dirrm share/doc/db/test
+@dirrm share/doc/db/sleepycat
+@dirrm share/doc/db/ref/txn
+@dirrm share/doc/db/ref/transapp
+@dirrm share/doc/db/ref/simple_tut
+@dirrm share/doc/db/ref/sendmail
+@dirrm share/doc/db/ref/program
+@dirrm share/doc/db/ref/perl
+@dirrm share/doc/db/ref/mp
+@dirrm share/doc/db/ref/log
+@dirrm share/doc/db/ref/lock
+@dirrm share/doc/db/ref/intro
+@dirrm share/doc/db/ref/install
+@dirrm share/doc/db/ref/env
+@dirrm share/doc/db/ref/dumpload
+@dirrm share/doc/db/ref/debug
+@dirrm share/doc/db/ref/cam
+@dirrm share/doc/db/ref/arch
+@dirrm share/doc/db/ref/am
+@dirrm share/doc/db/ref
+@dirrm share/doc/db/packages
+@dirrm share/doc/db/images
+@dirrm share/doc/db/distrib
+@dirrm share/doc/db/build
+@dirrm share/doc/db/api_java/special
+@dirrm share/doc/db/api_java/index
+@dirrm share/doc/db/api_java/Dbt
+@dirrm share/doc/db/api_java/Dbc
+@dirrm share/doc/db/api_java/DbTxnMgr
+@dirrm share/doc/db/api_java/DbTxn
+@dirrm share/doc/db/api_java/DbRunRecoveryException
+@dirrm share/doc/db/api_java/DbMpoolFile
+@dirrm share/doc/db/api_java/DbMpool
+@dirrm share/doc/db/api_java/DbLsn
+@dirrm share/doc/db/api_java/DbLog
+@dirrm share/doc/db/api_java/DbLockTab
+@dirrm share/doc/db/api_java/DbLock
+@dirrm share/doc/db/api_java/DbInfo
+@dirrm share/doc/db/api_java/DbException
+@dirrm share/doc/db/api_java/DbEnv
+@dirrm share/doc/db/api_java/Db
+@dirrm share/doc/db/api_java
+@dirrm share/doc/db/api_cxx/special
+@dirrm share/doc/db/api_cxx/index
+@dirrm share/doc/db/api_cxx/Dbt
+@dirrm share/doc/db/api_cxx/Dbc
+@dirrm share/doc/db/api_cxx/DbTxnMgr
+@dirrm share/doc/db/api_cxx/DbTxn
+@dirrm share/doc/db/api_cxx/DbMpoolFile
+@dirrm share/doc/db/api_cxx/DbMpool
+@dirrm share/doc/db/api_cxx/DbLsn
+@dirrm share/doc/db/api_cxx/DbLog
+@dirrm share/doc/db/api_cxx/DbLockTab
+@dirrm share/doc/db/api_cxx/DbLock
+@dirrm share/doc/db/api_cxx/DbInfo
+@dirrm share/doc/db/api_cxx/DbException
+@dirrm share/doc/db/api_cxx/DbEnv
+@dirrm share/doc/db/api_cxx/Db
+@dirrm share/doc/db/api_cxx
+@dirrm share/doc/db/api_c/special
+@dirrm share/doc/db/api_c/internal
+@dirrm share/doc/db/api_c/index
+@dirrm share/doc/db/api_c/historic
+@dirrm share/doc/db/api_c/Dbt
+@dirrm share/doc/db/api_c/Dbc
+@dirrm share/doc/db/api_c/DbTxnMgr
+@dirrm share/doc/db/api_c/DbTxn
+@dirrm share/doc/db/api_c/DbMpoolFile
+@dirrm share/doc/db/api_c/DbMpool
+@dirrm share/doc/db/api_c/DbLog
+@dirrm share/doc/db/api_c/DbLockTab
+@dirrm share/doc/db/api_c/DbLock
+@dirrm share/doc/db/api_c/DbInfo
+@dirrm share/doc/db/api_c/DbEnv
+@dirrm share/doc/db/api_c/Db
+@dirrm share/doc/db/api_c
+@dirrm share/doc/db
@dirrm include/db2