From 5cf448e10f9d24bbede2ac6794f9b75bf8e50154 Mon Sep 17 00:00:00 2001 From: tron Date: Fri, 9 Apr 1999 23:10:28 +0000 Subject: New "db" package: Sleepycat Software's Berkeley DB version 2 This package is dedicated to Christoph Badura. --- databases/db/Makefile | 20 ++ databases/db/files/md5 | 3 + databases/db/patches/patch-aa | 426 +++++++++++++++++++++++++++++++++ databases/db/pkg/COMMENT | 1 + databases/db/pkg/DESCR | 23 ++ databases/db/pkg/PLIST | 544 ++++++++++++++++++++++++++++++++++++++++++ 6 files changed, 1017 insertions(+) create mode 100644 databases/db/Makefile create mode 100644 databases/db/files/md5 create mode 100644 databases/db/patches/patch-aa create mode 100644 databases/db/pkg/COMMENT create mode 100644 databases/db/pkg/DESCR create mode 100644 databases/db/pkg/PLIST (limited to 'databases/db') diff --git a/databases/db/Makefile b/databases/db/Makefile new file mode 100644 index 00000000000..707ac71f445 --- /dev/null +++ b/databases/db/Makefile @@ -0,0 +1,20 @@ +# $NetBSD: Makefile,v 1.1.1.1 1999/04/09 23:10:28 tron Exp $ + +DISTNAME= db-2.7.3 +CATEGORIES= databases +MASTER_SITES= ftp://ftp.terra.net/pub/sleepycat/ \ + ftp://ftp.cs.tu-berlin.de/pub/misc/berkeley-db/ + +MAINTAINER= tron@netbsd.org +HOMEPAGE= http://www.sleepycat.com/ + +USE_LIBTOOL= yes +GNU_CONFIGURE= yes +CONFIGURE_SCRIPT= ../dist/configure + +WRKSRC= ${WRKDIR}/${PKGNAME}/build_unix + +post-install: + ${CHOWN} -R ${BINOWN}:${BINGRP} ${PREFIX}/docs/db + +.include "../../mk/bsd.pkg.mk" diff --git a/databases/db/files/md5 b/databases/db/files/md5 new file mode 100644 index 00000000000..f3f66d05479 --- /dev/null +++ b/databases/db/files/md5 @@ -0,0 +1,3 @@ +$NetBSD: md5,v 1.1.1.1 1999/04/09 23:10:28 tron Exp $ + +MD5 (db-2.7.3.tar.gz) = 578b52be966cb6f3a804e43af39be839 diff --git a/databases/db/patches/patch-aa b/databases/db/patches/patch-aa new file mode 100644 index 00000000000..64b3ab66f28 --- /dev/null +++ b/databases/db/patches/patch-aa @@ -0,0 +1,426 @@ +$NetBSD: patch-aa,v 1.1.1.1 1999/04/09 23:10:28 tron 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 @@ + LOBJS= @LIBOBJS@ + POBJS= err.o getlong.o + +-libdb= libdb.a ++libdb= libdb2.la + all: $(libdb) $(PROGS) + + $(libdb): db.h $(OBJS) $(LOBJS) +- $(rm) -f $@ +- $(ar) $@ $(OBJS) $(LOBJS) +- test ! -f $(ranlib) || $(ranlib) $@ ++ $(LIBTOOL) --mode=link @CC@ -rpath $(prefix)/lib -version-info 2:7 -o $@ $(OBJS:.o=.lo) $(LOBJS:.o=.lo) + + 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 + + prefix= @prefix@ +-bindir= $(prefix)/BerkeleyDB/bin +-datadir=$(prefix)/BerkeleyDB/share +-includedir=$(prefix)/BerkeleyDB/include +-libdir= $(prefix)/BerkeleyDB/lib +-mandir= $(prefix)/BerkeleyDB/docs ++bindir= $(prefix)/bin ++datadir=$(prefix)/share/db ++includedir=$(prefix)/include/db2 ++libdir= $(prefix)/lib ++mandir= $(prefix)/docs/db + + dmode= 755 + emode= 555 +@@ -161,22 +159,12 @@ + @echo "Installing DB include files: $(includedir) ..." + @test -d $(includedir) || \ + ($(mkdir) -p $(includedir) && $(chmod) $(dmode) $(includedir)) +- @cd $(includedir) && $(rm) -f db.h db_185.h db_cxx.h +- @$(cp) -p db.h db_185.h $(srcdir)/include/db_cxx.h $(includedir) ++ @$(BSD_INSTALL_DATA) db.h db_185.h $(srcdir)/include/db_cxx.h $(includedir) + @cd $(includedir) && $(chmod) $(fmode) db.h db_185.h db_cxx.h + @echo "Installing DB library: $(libdir) ..." +- @test -d $(libdir) || \ +- ($(mkdir) -p $(libdir) && $(chmod) $(dmode) $(libdir)) +- @cd $(libdir) && $(rm) -f $(libdb) +- @$(cp) -p $(libdb) $(libdir) +- @cd $(libdir) && $(chmod) $(fmode) $(libdb) ++ @$(LIBTOOL) --mode=install $(BSD_INSTALL_DATA) $(libdb) $(libdir) + @echo "Installing DB utilities: $(bindir) ..." +- @test -d $(bindir) || \ +- ($(mkdir) -p $(bindir) && $(chmod) $(dmode) $(bindir)) +- @cd $(bindir) && $(rm) -f $(PROGS) +- @$(cp) -p $(PROGS) $(bindir) +- @cd $(bindir) && (test ! -f $(strip) || $(strip) $(PROGS)) +- @cd $(bindir) && $(chmod) $(emode) $(PROGS) ++ @$(LIBTOOL) --mode=install $(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/COMMENT b/databases/db/pkg/COMMENT new file mode 100644 index 00000000000..4ab58f8bfa8 --- /dev/null +++ b/databases/db/pkg/COMMENT @@ -0,0 +1 @@ +Sleepycat Software's Berkeley DB version 2 diff --git a/databases/db/pkg/DESCR b/databases/db/pkg/DESCR new file mode 100644 index 00000000000..262096316e7 --- /dev/null +++ b/databases/db/pkg/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/db/pkg/PLIST b/databases/db/pkg/PLIST new file mode 100644 index 00000000000..c8454adf627 --- /dev/null +++ b/databases/db/pkg/PLIST @@ -0,0 +1,544 @@ +@comment $NetBSD: PLIST,v 1.1.1.1 1999/04/09 23:10:28 tron Exp $ +bin/db_load +bin/db_dump +bin/db_deadlock +bin/db_archive +bin/db_recover +bin/db_printlog +bin/db_checkpoint +bin/db_stat +include/db2/db_185.h +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 +@dirrm include/db2 -- cgit v1.2.3