split import of versions v3 and v4 of Berkeley DB

This commit is contained in:
sturm 2003-12-08 17:37:52 +00:00
parent d3974ed2ec
commit 5dbadd83c2
28 changed files with 2459 additions and 0 deletions

61
databases/db/Makefile.inc Normal file
View File

@ -0,0 +1,61 @@
# $OpenBSD: Makefile.inc,v 1.1.1.1 2003/12/08 17:37:52 sturm Exp $
COMMENT= "Berkeley DB package, revision ${REVISION}"
DISTNAME= db-${VERSION}
CATEGORIES= databases
HOMEPAGE= http://www.sleepycat.com/
MASTER_SITES= ${HOMEPAGE}/update/snapshot/
# License: BSD + SleepyCat's additions.
# Must purchase license to redistribute if not distributing the source.
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
CONFIGURE_STYLE= gnu dest
CONFIGURE_SCRIPT= ../dist/configure
CONFIGURE_ARGS+= --enable-compat185 \
--enable-dump185 \
--enable-cxx \
--enable-static \
--includedir=$$\{prefix}/include/db${DEST_SUBDIR} \
--libdir=$$\{prefix}/lib/db${DEST_SUBDIR} \
${CONFIGURE_SHARED}
MODGNU_CONFIG_GUESS_DIRS= ${WRKSRC} ${WRKSRC}/dist
WRKBUILD= ${WRKDIST}/build_unix
FLAVORS= tcl
FLAVOR?=
.if ${FLAVOR:L:Mtcl}
NOT_FOR_ARCHS= ${NO_SHARED_ARCHS}
TCL_VERSION= 8.3
LIB_DEPENDS+= tcl83.1.3::lang/tcl/${TCL_VERSION}
CFLAGS+= -I${LOCALBASE}/include/tcl${TCL_VERSION}
CONFIGURE_ARGS+=--enable-tcl \
--with-tcl=${LOCALBASE}/lib/tcl${TCL_VERSION}
# this compiles slightly different code, some tests fail nevertheless
#CONFIGURE_ARGS+=--enable-test
do-regress:
@cd ${WRKBUILD}; tclsh${TCL_VERSION} ${FILESDIR}/regress.tcl
.else
CONFIGURE_ARGS+=--disable-tcl
# regression tests need tcl
NO_REGRESS= Yes
.endif
post-install:
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/db${DEST_SUBDIR}
cd ${WRKSRC}/examples_c; ${INSTALL_DATA} *.c \
${PREFIX}/share/examples/db${DEST_SUBDIR}
cd ${WRKSRC}/examples_cxx; ${INSTALL_DATA} *.cpp \
${PREFIX}/share/examples/db${DEST_SUBDIR}

8
databases/db/v3/Makefile Normal file
View File

@ -0,0 +1,8 @@
# $OpenBSD: Makefile,v 1.1.1.1 2003/12/08 17:37:55 sturm Exp $
REVISION= 3
VERSION= ${REVISION}.1.17
DEST_SUBDIR=
.include <bsd.port.mk>

3
databases/db/v3/distinfo Normal file
View File

@ -0,0 +1,3 @@
MD5 (db-3.1.17.tar.gz) = 5baeb94fb934d0bf783ea42117c400be
RMD160 (db-3.1.17.tar.gz) = 25db7f5910ecaec05c41d1280f7abbba041c3b9b
SHA1 (db-3.1.17.tar.gz) = b84408a1422dc0dd90a8cb485257022a00451149

View File

@ -0,0 +1,4 @@
# $OpenBSD: regress.tcl,v 1.1.1.1 2003/12/08 17:37:55 sturm Exp $
source ../test/test.tcl
run_all

View File

@ -0,0 +1,11 @@
$OpenBSD: patch-db_db_cam_c,v 1.1.1.1 2003/12/08 17:37:55 sturm Exp $
--- db/db_cam.c.orig 2003-12-07 13:54:14.000000000 +0100
+++ db/db_cam.c 2003-12-07 13:54:43.000000000 +0100
@@ -13,6 +13,7 @@ static const char revid[] = "$Id: db_cam
#ifndef NO_SYSTEM_INCLUDES
#include <sys/types.h>
+#include <string.h>
#include <errno.h>
#endif

View File

@ -0,0 +1,84 @@
$OpenBSD: patch-dist_Makefile_in,v 1.1.1.1 2003/12/08 17:37:55 sturm Exp $
--- dist/Makefile.in.orig 2000-07-18 17:37:35.000000000 +0200
+++ dist/Makefile.in 2003-12-07 12:09:59.000000000 +0100
@@ -34,11 +34,11 @@ SOVERSION= @DB_VERSION_MAJOR@.@DB_VERSIO
libdb= libdb.a
libso_base= libdb
-libso_linkname= $(libso_base)-$(SOVERSION).la
-libso= $(libso_base)-$(SOVERSION).@SOSUFFIX@
-libso_target= $(libso_base)-$(SOVERSION).la
+libso_linkname= $(libso_base).la
+libso= $(libso_base).@SOSUFFIX@.$(SOVERSION)
+libso_target= $(libso_base).la
libso_default= $(libso_base).@SOSUFFIX@
-libso_major= $(libso_base)-$(SOMAJOR).@SOSUFFIX@
+libso_major= $(libso_base).@SOSUFFIX@.$(SOMAJOR)
##################################################
# C++
@@ -49,10 +49,10 @@ libso_major= $(libso_base)-$(SOMAJOR).@S
##################################################
libcxx= libdb_cxx.a
libxso_base= libdb_cxx
-libxso= $(libxso_base)-$(SOVERSION).@SOSUFFIX@
-libxso_target= $(libxso_base)-$(SOVERSION).la
+libxso= $(libxso_base).@SOSUFFIX@.$(SOVERSION)
+libxso_target= $(libxso_base).la
libxso_default= $(libxso_base).@SOSUFFIX@
-libxso_major= $(libxso_base)-$(SOMAJOR).@SOSUFFIX@
+libxso_major= $(libxso_base).@SOSUFFIX@.$(SOMAJOR)
##################################################
# JAVA
@@ -71,11 +71,11 @@ JAVA_DBDIR= $(JAVA_SRCDIR)/com/sleepycat
JAVA_EXDIR= $(JAVA_SRCDIR)/com/sleepycat/examples
libjso_base= libdb_java
-libjso= $(libjso_base)-$(SOVERSION).@SOSUFFIX@
-libjso_target= $(libjso_base)-$(SOVERSION).la
+libjso= $(libjso_base).@SOSUFFIX@.$(SOVERSION)
+libjso_target= $(libjso_base).la
libjso_default= $(libjso_base).@SOSUFFIX@
-libjso_major= $(libjso_base)-$(SOMAJOR).@SOSUFFIX@
-libjso_g= $(libjso_base)-$(SOVERSION)_g.@SOSUFFIX@
+libjso_major= $(libjso_base).@SOSUFFIX@.$(SOVERSION)
+libjso_g= $(libjso_base)_g.@SOSUFFIX@.$(SOVERSION)
##################################################
# TCL
@@ -86,10 +86,10 @@ libjso_g= $(libjso_base)-$(SOVERSION)_g.
##################################################
TCFLAGS= @TCFLAGS@
libtso_base= libdb_tcl
-libtso= $(libtso_base)-$(SOVERSION).@SOSUFFIX@
-libtso_target= $(libtso_base)-$(SOVERSION).la
+libtso= $(libtso_base).@SOSUFFIX@.$(SOVERSION)
+libtso_target= $(libtso_base).la
libtso_default= $(libtso_base).@SOSUFFIX@
-libtso_major= $(libtso_base)-$(SOMAJOR).@SOSUFFIX@
+libtso_major= $(libtso_base).@SOSUFFIX@.$(SOMAJOR)
##################################################
# DB_DUMP185 UTILITY
@@ -112,7 +112,8 @@ exec_prefix=@exec_prefix@
bindir= @bindir@
includedir=@includedir@
libdir= @libdir@
-docdir= $(prefix)/docs
+libsdir= $(prefix)/lib
+docdir= $(prefix)/share/doc/db
dmode= 755
emode= 555
@@ -424,9 +425,9 @@ install_dynamic: install_setup
@cd $(libdir) && \
$(rm) -f $(libso) $(libso_default) $(libso_major)
@$(INSTALLER) $(libso_target) $(libdir)
+ @cd $(libsdir) && $(ln) -s db/$(libso)
@cd $(libdir) && $(ln) -s $(libso) $(libso_default)
@cd $(libdir) && $(ln) -s $(libso) $(libso_major)
- @$(LIBTOOL) --mode=finish $(libdir)
install_dynamic_cxx: install_setup
@echo "Installing DB C++ library: $(libdir) ..."

View File

@ -0,0 +1,29 @@
$OpenBSD: patch-dist_configure,v 1.1.1.1 2003/12/08 17:37:55 sturm Exp $
--- dist/configure.orig 2000-07-31 18:57:56.000000000 +0200
+++ dist/configure 2003-12-07 12:08:58.000000000 +0100
@@ -1602,7 +1602,6 @@ echo "configure:1601: checking libtool c
${CONFIG_SHELL-/bin/sh} $srcdir/ltconfig \
--no-verify $srcdir/ltmain.sh \
--output=./libtool $host_os \
- --disable-static \
|| { echo "configure: error: libtool configure failed" 1>&2; exit 1; }
SOSUFFIX=`sed -e '/^library_names_spec=/!d' -e 's/.*\.\([a-zA-Z0-9_]*\).*/\1/' ./libtool`
@@ -1617,7 +1616,7 @@ echo "configure:1601: checking libtool c
INSTALLER="\$(LIBTOOL) --mode=install cp"
POSTLINK="\$(LIBTOOL) --mode=execute true"
- SOLINK="\$(LIBTOOL) --mode=link ${SAVE_CC} -avoid-version"
+ SOLINK="\$(LIBTOOL) --mode=link ${SAVE_CC} -version-info @DB_VERSION_MAJOR@:@DB_VERSION_MINOR@"
SOFLAGS="-rpath \$(libdir)"
o=".lo"
fi
@@ -3911,7 +3910,7 @@ else
#line 3912 "configure"
#include "confdefs.h"
main(){
-#if defined(i386)
+#if defined(__i386__)
#if defined(__GNUC__)
exit(0);
#endif

View File

@ -0,0 +1,80 @@
$OpenBSD: patch-dist_ltconfig,v 1.1.1.1 2003/12/08 17:37:55 sturm Exp $
--- dist/ltconfig.orig Tue May 2 19:03:13 2000
+++ dist/ltconfig Thu Aug 30 21:10:07 2001
@@ -501,7 +501,14 @@ fi
if test -n "$RANLIB"; then
old_archive_cmds="$old_archive_cmds~\$RANLIB \$oldlib"
- old_postinstall_cmds="\$RANLIB \$oldlib~$old_postinstall_cmds"
+ case "$host_os" in
+ openbsd*)
+ old_postinstall_cmds="\$RANLIB -t \$oldlib~$old_postinstall_cmds"
+ ;;
+ *)
+ old_postinstall_cmds="\$RANLIB \$oldlib~$old_postinstall_cmds"
+ ;;
+ esac
fi
# Set sane defaults for `DLLTOOL', `OBJDUMP', and `AS', used on cygwin.
@@ -1105,6 +1112,9 @@ cygwin* | mingw*)
with_gnu_ld=no
fi
;;
+openbsd*)
+ with_gnu_ld=no
+ ;;
esac
@@ -1400,10 +1410,21 @@ else
;;
openbsd*)
- archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linkopts'
- hardcode_libdir_flag_spec='-R$libdir'
hardcode_direct=yes
hardcode_shlibpath_var=no
+ case "$host_os" in
+ openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*)
+ archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linkopts'
+ hardcode_libdir_flag_spec='-R$libdir'
+ ;;
+ *)
+ archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $linkopts'
+ hardcode_libdir_flag_spec='${wl}-rpath,$libdir'
+ if test "`echo __ELF__ | $CC -E - | grep __ELF__`" = "" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
+ export_dynamic_flag_spec='${wl}-E'
+ fi
+ ;;
+ esac
;;
os2*)
@@ -2009,9 +2030,23 @@ netbsd*)
openbsd*)
version_type=sunos
- if test "$with_gnu_ld" = yes; then
- need_lib_prefix=no
- need_version=no
+ need_lib_prefix=no
+ need_version=no
+ file_magic_cmd=/usr/bin/file
+ file_magic_test_file=`echo /usr/lib/libc.so.*`
+ if test "`echo __ELF__ | $CC -E - | grep __ELF__`" = "" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
+ deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [LM]SB shared object'
+ case "$host_os" in
+ openbsd2.[89] | openbsd2.[89].*)
+ shlibpath_overrides_runpath=no
+ ;;
+ *)
+ shlibpath_overrides_runpath=yes
+ ;;
+ esac
+ else
+ deplibs_check_method='file_magic OpenBSD.* shared library'
+ shlibpath_overrides_runpath=yes
fi
library_names_spec='${libname}${release}.so$versuffix ${libname}.so$versuffix'
finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir'

View File

@ -0,0 +1,84 @@
$OpenBSD: patch-dist_ltmain_sh,v 1.1.1.1 2003/12/08 17:37:55 sturm Exp $
--- dist/ltmain.sh.orig Sun Jul 30 20:45:53 2000
+++ dist/ltmain.sh Thu Aug 30 21:12:05 2001
@@ -1079,6 +1079,17 @@ compiler."
# These systems don't actually have c library (as such)
continue
;;
+ *-*-openbsd*)
+ # Do not include libc due to us having libc/libc_r.
+ continue
+ ;;
+ esac
+ elif test "$arg" = "-lc_r"; then
+ case "$host" in
+ *-*-openbsd*)
+ # Do not include libc_r directly, use -pthread flag.
+ continue
+ ;;
esac
elif test "$arg" = "-lm"; then
case "$host" in
@@ -1091,6 +1102,10 @@ compiler."
deplibs="$deplibs $arg"
;;
+ -?thread)
+ deplibs="$deplibs $arg"
+ ;;
+
-module)
module=yes
continue
@@ -1796,6 +1811,10 @@ compiler."
# these systems don't actually have a c library (as such)!
;;
+ *-*-openbsd*)
+ # Do not include libc due to us having libc/libc_r.
+ ;;
+
#### local change for Sleepycat DB: [#2380]
# The following case is added, since the linker's -pthread
# option implicitly controls use of -lc or -lc_r.
@@ -3563,40 +3582,6 @@ libdir='$install_libdir'\
# Exit here if they wanted silent mode.
test "$show" = : && exit 0
- echo "----------------------------------------------------------------------"
- echo "Libraries have been installed in:"
- for libdir in $libdirs; do
- echo " $libdir"
- done
- echo
- echo "If you ever happen to want to link against installed libraries"
- echo "in a given directory, LIBDIR, you must either use libtool, and"
- echo "specify the full pathname of the library, or use \`-LLIBDIR'"
- echo "flag during linking and do at least one of the following:"
- if test -n "$shlibpath_var"; then
- echo " - add LIBDIR to the \`$shlibpath_var' environment variable"
- echo " during execution"
- fi
- if test -n "$runpath_var"; then
- echo " - add LIBDIR to the \`$runpath_var' environment variable"
- echo " during linking"
- fi
- if test -n "$hardcode_libdir_flag_spec"; then
- libdir=LIBDIR
- eval flag=\"$hardcode_libdir_flag_spec\"
-
- echo " - use the \`$flag' linker flag"
- fi
- if test -n "$admincmds"; then
- echo " - have your system administrator run these commands:$admincmds"
- fi
- if test -f /etc/ld.so.conf; then
- echo " - have your system administrator add LIBDIR to \`/etc/ld.so.conf'"
- fi
- echo
- echo "See any operating system documentation about shared libraries for"
- echo "more information, such as the ld(1) and ld.so(8) manual pages."
- echo "----------------------------------------------------------------------"
exit 0
;;

View File

@ -0,0 +1,12 @@
$OpenBSD: patch-dist_s_tcl,v 1.1.1.1 2003/12/08 17:37:55 sturm Exp $
--- dist/s_tcl.orig Thu May 11 21:36:08 2000
+++ dist/s_tcl Thu Aug 30 21:01:38 2001
@@ -11,7 +11,7 @@ f=../test/include.tcl
echo "Building $f"
rm -f $f
(echo "set tclsh_path @TCL_TCLSH@" && \
- echo "set tcllib .libs/libdb_tcl-@DB_VERSION_MAJOR@.@DB_VERSION_MINOR@.@SOSUFFIX@" && \
+ echo "set tcllib .libs/libdb_tcl.@SOSUFFIX@.@DB_VERSION_MAJOR@.@DB_VERSION_MINOR@" && \
echo "set rpc_server localhost" && \
echo "set test_path @srcdir@/../test" && \
echo "" && \

View File

@ -0,0 +1,21 @@
$OpenBSD: patch-env_env_open_c,v 1.1.1.1 2003/12/08 17:37:55 sturm Exp $
--- env/env_open.c.orig Tue Jun 17 01:25:53 2003
+++ env/env_open.c Tue Jun 17 01:26:27 2003
@@ -784,7 +784,7 @@ illegal: __db_err(dbenv, "mis-formatted
return (dbenv->set_lg_dir(dbenv, value));
if (!strcasecmp(name, "set_lk_detect")) {
- if (sscanf(value, "%40s %c", arg, &v4) != 1)
+ if (sscanf(value, "%39s %c", arg, &v4) != 1)
goto badarg;
if (!strcasecmp(value, "db_lock_default"))
flags = DB_LOCK_DEFAULT;
@@ -840,7 +840,7 @@ illegal: __db_err(dbenv, "mis-formatted
}
if (!strcasecmp(name, "set_verbose")) {
- if (sscanf(value, "%40s %c", arg, &v4) != 1)
+ if (sscanf(value, "%39s %c", arg, &v4) != 1)
goto badarg;
if (!strcasecmp(value, "db_verb_chkpoint"))

View File

@ -0,0 +1,10 @@
$OpenBSD: patch-test_include_tcl,v 1.1.1.1 2003/12/08 17:37:55 sturm Exp $
--- test/include.tcl.orig Mon Jul 31 19:58:22 2000
+++ test/include.tcl Thu Aug 30 21:02:41 2001
@@ -1,5 +1,5 @@
set tclsh_path @TCL_TCLSH@
-set tcllib .libs/libdb_tcl-@DB_VERSION_MAJOR@.@DB_VERSION_MINOR@.@SOSUFFIX@
+set tcllib .libs/libdb_tcl.@SOSUFFIX@.@DB_VERSION_MAJOR@.@DB_VERSION_MINOR@
set rpc_server localhost
set test_path @srcdir@/../test

19
databases/db/v3/pkg/DESCR Normal file
View File

@ -0,0 +1,19 @@
Berkeley DB is a programmatic toolkit that provides fast, reliable,
scalable, and mission-critical database support to software developers.
Berkeley DB provides data management services for some of the most
demanding high-end server applications in the world. Vendors of
industry-leading messaging, directory, billing and provisioning servers as
well as the biggest portal, ASP and commerce sites on the Internet rely on
Berkeley DB. Berkeley DB's high performance and scalability support
thousands of simultaneous users working on databases as large as 256
terabytes.
At the same time, Berkeley DB's small footprint, in-process execution
model, simple function-call API and low administrative overhead make it
ideal for use in embedded systems. Vendors of telecommunications switches,
routers and wired and wireless network gateways choose Berkeley DB to
manage critical information in their products.
Flavors:
* tcl -- adds TCL module

View File

@ -0,0 +1,5 @@
@comment $OpenBSD: PFRAG.shared,v 1.1.1.1 2003/12/08 17:37:57 sturm Exp $
lib/db/libdb.so.3.1
lib/db/libdb_cxx.so.3.1
lib/libdb.so.3.1
DYNLIBDIR(%D/lib)

View File

@ -0,0 +1,41 @@
@comment $OpenBSD: PFRAG.tcl,v 1.1.1.1 2003/12/08 17:37:57 sturm Exp $
lib/db/libdb_tcl.a
lib/db/libdb_tcl.la
lib/db/libdb_tcl.so.3.1
share/doc/db/api_tcl/db_close.html
share/doc/db/api_tcl/db_count.html
share/doc/db/api_tcl/db_cursor.html
share/doc/db/api_tcl/db_del.html
share/doc/db/api_tcl/db_get.html
share/doc/db/api_tcl/db_get_join.html
share/doc/db/api_tcl/db_get_type.html
share/doc/db/api_tcl/db_is_byteswapped.html
share/doc/db/api_tcl/db_join.html
share/doc/db/api_tcl/db_open.html
share/doc/db/api_tcl/db_put.html
share/doc/db/api_tcl/db_remove.html
share/doc/db/api_tcl/db_rename.html
share/doc/db/api_tcl/db_stat.html
share/doc/db/api_tcl/db_sync.html
share/doc/db/api_tcl/dbc_close.html
share/doc/db/api_tcl/dbc_del.html
share/doc/db/api_tcl/dbc_dup.html
share/doc/db/api_tcl/dbc_get.html
share/doc/db/api_tcl/dbc_put.html
share/doc/db/api_tcl/env_close.html
share/doc/db/api_tcl/env_open.html
share/doc/db/api_tcl/env_remove.html
share/doc/db/api_tcl/pindex.src
share/doc/db/api_tcl/tcl_index.html
share/doc/db/api_tcl/tcl_pindex.html
share/doc/db/api_tcl/txn.html
share/doc/db/api_tcl/txn_abort.html
share/doc/db/api_tcl/txn_commit.html
share/doc/db/api_tcl/version.html
share/doc/db/ref/tcl/error.html
share/doc/db/ref/tcl/intro.html
share/doc/db/ref/tcl/program.html
share/doc/db/ref/tcl/using.html
share/doc/db/ref/upgrade.3.1/tcl.html
@dirrm share/doc/db/ref/tcl
@dirrm share/doc/db/api_tcl

709
databases/db/v3/pkg/PLIST Normal file
View File

@ -0,0 +1,709 @@
@comment $OpenBSD: PLIST,v 1.1.1.1 2003/12/08 17:37:57 sturm Exp $
@option no-default-conflict
@pkgcfl db-3*
%%tcl%%
bin/db_archive
bin/db_checkpoint
bin/db_deadlock
bin/db_dump
bin/db_dump185
bin/db_load
bin/db_printlog
bin/db_recover
bin/db_stat
bin/db_upgrade
bin/db_verify
include/db/db.h
include/db/db_185.h
include/db/db_cxx.h
lib/db/libdb.a
lib/db/libdb.la
@comment lib/db/libdb.so
@comment lib/db/libdb.so.3
lib/db/libdb_cxx.a
lib/db/libdb_cxx.la
@comment lib/db/libdb_cxx.so
@comment lib/db/libdb_cxx.so.3
share/doc/db/api_c/c_index.html
share/doc/db/api_c/c_pindex.html
share/doc/db/api_c/db_close.html
share/doc/db/api_c/db_create.html
share/doc/db/api_c/db_cursor.html
share/doc/db/api_c/db_del.html
share/doc/db/api_c/db_err.html
share/doc/db/api_c/db_fd.html
share/doc/db/api_c/db_get.html
share/doc/db/api_c/db_get_byteswapped.html
share/doc/db/api_c/db_get_type.html
share/doc/db/api_c/db_join.html
share/doc/db/api_c/db_key_range.html
share/doc/db/api_c/db_lsn.html
share/doc/db/api_c/db_open.html
share/doc/db/api_c/db_put.html
share/doc/db/api_c/db_remove.html
share/doc/db/api_c/db_rename.html
share/doc/db/api_c/db_set_bt_compare.html
share/doc/db/api_c/db_set_bt_minkey.html
share/doc/db/api_c/db_set_bt_prefix.html
share/doc/db/api_c/db_set_cachesize.html
share/doc/db/api_c/db_set_dup_compare.html
share/doc/db/api_c/db_set_errcall.html
share/doc/db/api_c/db_set_errfile.html
share/doc/db/api_c/db_set_errpfx.html
share/doc/db/api_c/db_set_feedback.html
share/doc/db/api_c/db_set_flags.html
share/doc/db/api_c/db_set_h_ffactor.html
share/doc/db/api_c/db_set_h_hash.html
share/doc/db/api_c/db_set_h_nelem.html
share/doc/db/api_c/db_set_lorder.html
share/doc/db/api_c/db_set_malloc.html
share/doc/db/api_c/db_set_pagesize.html
share/doc/db/api_c/db_set_paniccall.html
share/doc/db/api_c/db_set_re_delim.html
share/doc/db/api_c/db_set_re_len.html
share/doc/db/api_c/db_set_re_pad.html
share/doc/db/api_c/db_set_re_source.html
share/doc/db/api_c/db_set_realloc.html
share/doc/db/api_c/db_stat.html
share/doc/db/api_c/db_sync.html
share/doc/db/api_c/db_upgrade.html
share/doc/db/api_c/db_verify.html
share/doc/db/api_c/dbc_close.html
share/doc/db/api_c/dbc_count.html
share/doc/db/api_c/dbc_del.html
share/doc/db/api_c/dbc_dup.html
share/doc/db/api_c/dbc_get.html
share/doc/db/api_c/dbc_put.html
share/doc/db/api_c/dbm.html
share/doc/db/api_c/dbt.html
share/doc/db/api_c/env_close.html
share/doc/db/api_c/env_create.html
share/doc/db/api_c/env_open.html
share/doc/db/api_c/env_remove.html
share/doc/db/api_c/env_set_cachesize.html
share/doc/db/api_c/env_set_data_dir.html
share/doc/db/api_c/env_set_errcall.html
share/doc/db/api_c/env_set_errfile.html
share/doc/db/api_c/env_set_errpfx.html
share/doc/db/api_c/env_set_feedback.html
share/doc/db/api_c/env_set_lg_bsize.html
share/doc/db/api_c/env_set_lg_dir.html
share/doc/db/api_c/env_set_lg_max.html
share/doc/db/api_c/env_set_lk_conflicts.html
share/doc/db/api_c/env_set_lk_detect.html
share/doc/db/api_c/env_set_lk_max.html
share/doc/db/api_c/env_set_mp_mmapsize.html
share/doc/db/api_c/env_set_mutexlocks.html
share/doc/db/api_c/env_set_pageyield.html
share/doc/db/api_c/env_set_paniccall.html
share/doc/db/api_c/env_set_panicstate.html
share/doc/db/api_c/env_set_rec_init.html
share/doc/db/api_c/env_set_region_init.html
share/doc/db/api_c/env_set_server.html
share/doc/db/api_c/env_set_shm_key.html
share/doc/db/api_c/env_set_tas_spins.html
share/doc/db/api_c/env_set_tmp_dir.html
share/doc/db/api_c/env_set_tx_max.html
share/doc/db/api_c/env_set_tx_recover.html
share/doc/db/api_c/env_set_tx_timestamp.html
share/doc/db/api_c/env_set_verbose.html
share/doc/db/api_c/env_strerror.html
share/doc/db/api_c/env_version.html
share/doc/db/api_c/hsearch.html
share/doc/db/api_c/lock_detect.html
share/doc/db/api_c/lock_get.html
share/doc/db/api_c/lock_id.html
share/doc/db/api_c/lock_put.html
share/doc/db/api_c/lock_stat.html
share/doc/db/api_c/lock_vec.html
share/doc/db/api_c/log_archive.html
share/doc/db/api_c/log_compare.html
share/doc/db/api_c/log_file.html
share/doc/db/api_c/log_flush.html
share/doc/db/api_c/log_get.html
share/doc/db/api_c/log_put.html
share/doc/db/api_c/log_register.html
share/doc/db/api_c/log_stat.html
share/doc/db/api_c/log_unregister.html
share/doc/db/api_c/memp_fclose.html
share/doc/db/api_c/memp_fget.html
share/doc/db/api_c/memp_fopen.html
share/doc/db/api_c/memp_fput.html
share/doc/db/api_c/memp_fset.html
share/doc/db/api_c/memp_fsync.html
share/doc/db/api_c/memp_register.html
share/doc/db/api_c/memp_stat.html
share/doc/db/api_c/memp_sync.html
share/doc/db/api_c/memp_trickle.html
share/doc/db/api_c/pindex.src
share/doc/db/api_c/set_func_close.html
share/doc/db/api_c/set_func_dirfree.html
share/doc/db/api_c/set_func_dirlist.html
share/doc/db/api_c/set_func_exists.html
share/doc/db/api_c/set_func_free.html
share/doc/db/api_c/set_func_fsync.html
share/doc/db/api_c/set_func_ioinfo.html
share/doc/db/api_c/set_func_malloc.html
share/doc/db/api_c/set_func_map.html
share/doc/db/api_c/set_func_open.html
share/doc/db/api_c/set_func_read.html
share/doc/db/api_c/set_func_realloc.html
share/doc/db/api_c/set_func_rename.html
share/doc/db/api_c/set_func_seek.html
share/doc/db/api_c/set_func_sleep.html
share/doc/db/api_c/set_func_unlink.html
share/doc/db/api_c/set_func_unmap.html
share/doc/db/api_c/set_func_write.html
share/doc/db/api_c/set_func_yield.html
share/doc/db/api_c/txn_abort.html
share/doc/db/api_c/txn_begin.html
share/doc/db/api_c/txn_checkpoint.html
share/doc/db/api_c/txn_commit.html
share/doc/db/api_c/txn_id.html
share/doc/db/api_c/txn_prepare.html
share/doc/db/api_c/txn_stat.html
share/doc/db/api_cxx/cxx_index.html
share/doc/db/api_cxx/cxx_pindex.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_err.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_key_range.html
share/doc/db/api_cxx/db_open.html
share/doc/db/api_cxx/db_put.html
share/doc/db/api_cxx/db_remove.html
share/doc/db/api_cxx/db_rename.html
share/doc/db/api_cxx/db_set_bt_compare.html
share/doc/db/api_cxx/db_set_bt_minkey.html
share/doc/db/api_cxx/db_set_bt_prefix.html
share/doc/db/api_cxx/db_set_cachesize.html
share/doc/db/api_cxx/db_set_dup_compare.html
share/doc/db/api_cxx/db_set_errcall.html
share/doc/db/api_cxx/db_set_errfile.html
share/doc/db/api_cxx/db_set_errpfx.html
share/doc/db/api_cxx/db_set_feedback.html
share/doc/db/api_cxx/db_set_flags.html
share/doc/db/api_cxx/db_set_h_ffactor.html
share/doc/db/api_cxx/db_set_h_hash.html
share/doc/db/api_cxx/db_set_h_nelem.html
share/doc/db/api_cxx/db_set_lorder.html
share/doc/db/api_cxx/db_set_malloc.html
share/doc/db/api_cxx/db_set_pagesize.html
share/doc/db/api_cxx/db_set_paniccall.html
share/doc/db/api_cxx/db_set_re_delim.html
share/doc/db/api_cxx/db_set_re_len.html
share/doc/db/api_cxx/db_set_re_pad.html
share/doc/db/api_cxx/db_set_re_source.html
share/doc/db/api_cxx/db_set_realloc.html
share/doc/db/api_cxx/db_stat.html
share/doc/db/api_cxx/db_sync.html
share/doc/db/api_cxx/db_upgrade.html
share/doc/db/api_cxx/db_verify.html
share/doc/db/api_cxx/dbc_class.html
share/doc/db/api_cxx/dbc_close.html
share/doc/db/api_cxx/dbc_count.html
share/doc/db/api_cxx/dbc_del.html
share/doc/db/api_cxx/dbc_dup.html
share/doc/db/api_cxx/dbc_get.html
share/doc/db/api_cxx/dbc_put.html
share/doc/db/api_cxx/dbenv_class.html
share/doc/db/api_cxx/dbt_class.html
share/doc/db/api_cxx/env_close.html
share/doc/db/api_cxx/env_open.html
share/doc/db/api_cxx/env_remove.html
share/doc/db/api_cxx/env_set_cachesize.html
share/doc/db/api_cxx/env_set_data_dir.html
share/doc/db/api_cxx/env_set_errcall.html
share/doc/db/api_cxx/env_set_errfile.html
share/doc/db/api_cxx/env_set_error_stream.html
share/doc/db/api_cxx/env_set_errpfx.html
share/doc/db/api_cxx/env_set_feedback.html
share/doc/db/api_cxx/env_set_lg_bsize.html
share/doc/db/api_cxx/env_set_lg_dir.html
share/doc/db/api_cxx/env_set_lg_max.html
share/doc/db/api_cxx/env_set_lk_conflicts.html
share/doc/db/api_cxx/env_set_lk_detect.html
share/doc/db/api_cxx/env_set_lk_max.html
share/doc/db/api_cxx/env_set_mp_mmapsize.html
share/doc/db/api_cxx/env_set_mutexlocks.html
share/doc/db/api_cxx/env_set_pageyield.html
share/doc/db/api_cxx/env_set_paniccall.html
share/doc/db/api_cxx/env_set_panicstate.html
share/doc/db/api_cxx/env_set_rec_init.html
share/doc/db/api_cxx/env_set_region_init.html
share/doc/db/api_cxx/env_set_server.html
share/doc/db/api_cxx/env_set_shm_key.html
share/doc/db/api_cxx/env_set_tas_spins.html
share/doc/db/api_cxx/env_set_tmp_dir.html
share/doc/db/api_cxx/env_set_tx_max.html
share/doc/db/api_cxx/env_set_tx_recover.html
share/doc/db/api_cxx/env_set_tx_timestamp.html
share/doc/db/api_cxx/env_set_verbose.html
share/doc/db/api_cxx/env_strerror.html
share/doc/db/api_cxx/env_version.html
share/doc/db/api_cxx/except_class.html
share/doc/db/api_cxx/get_errno.html
share/doc/db/api_cxx/lock_class.html
share/doc/db/api_cxx/lock_detect.html
share/doc/db/api_cxx/lock_get.html
share/doc/db/api_cxx/lock_id.html
share/doc/db/api_cxx/lock_put.html
share/doc/db/api_cxx/lock_stat.html
share/doc/db/api_cxx/lock_vec.html
share/doc/db/api_cxx/log_archive.html
share/doc/db/api_cxx/log_compare.html
share/doc/db/api_cxx/log_file.html
share/doc/db/api_cxx/log_flush.html
share/doc/db/api_cxx/log_get.html
share/doc/db/api_cxx/log_put.html
share/doc/db/api_cxx/log_register.html
share/doc/db/api_cxx/log_stat.html
share/doc/db/api_cxx/log_unregister.html
share/doc/db/api_cxx/lsn_class.html
share/doc/db/api_cxx/memp_fclose.html
share/doc/db/api_cxx/memp_fget.html
share/doc/db/api_cxx/memp_fopen.html
share/doc/db/api_cxx/memp_fput.html
share/doc/db/api_cxx/memp_fset.html
share/doc/db/api_cxx/memp_fsync.html
share/doc/db/api_cxx/memp_register.html
share/doc/db/api_cxx/memp_stat.html
share/doc/db/api_cxx/memp_sync.html
share/doc/db/api_cxx/memp_trickle.html
share/doc/db/api_cxx/mempfile_class.html
share/doc/db/api_cxx/pindex.src
share/doc/db/api_cxx/txn_abort.html
share/doc/db/api_cxx/txn_begin.html
share/doc/db/api_cxx/txn_checkpoint.html
share/doc/db/api_cxx/txn_class.html
share/doc/db/api_cxx/txn_commit.html
share/doc/db/api_cxx/txn_id.html
share/doc/db/api_cxx/txn_prepare.html
share/doc/db/api_cxx/txn_stat.html
share/doc/db/api_cxx/what.html
@comment share/doc/db/api_java/db_class.html
@comment share/doc/db/api_java/db_close.html
@comment share/doc/db/api_java/db_cursor.html
@comment share/doc/db/api_java/db_del.html
@comment share/doc/db/api_java/db_fd.html
@comment share/doc/db/api_java/db_get.html
@comment share/doc/db/api_java/db_get_byteswapped.html
@comment share/doc/db/api_java/db_get_type.html
@comment share/doc/db/api_java/db_join.html
@comment share/doc/db/api_java/db_key_range.html
@comment share/doc/db/api_java/db_open.html
@comment share/doc/db/api_java/db_put.html
@comment share/doc/db/api_java/db_remove.html
@comment share/doc/db/api_java/db_rename.html
@comment share/doc/db/api_java/db_set_bt_minkey.html
@comment share/doc/db/api_java/db_set_cachesize.html
@comment share/doc/db/api_java/db_set_errcall.html
@comment share/doc/db/api_java/db_set_errpfx.html
@comment share/doc/db/api_java/db_set_feedback.html
@comment share/doc/db/api_java/db_set_flags.html
@comment share/doc/db/api_java/db_set_h_ffactor.html
@comment share/doc/db/api_java/db_set_h_nelem.html
@comment share/doc/db/api_java/db_set_lorder.html
@comment share/doc/db/api_java/db_set_pagesize.html
@comment share/doc/db/api_java/db_set_re_delim.html
@comment share/doc/db/api_java/db_set_re_len.html
@comment share/doc/db/api_java/db_set_re_pad.html
@comment share/doc/db/api_java/db_set_re_source.html
@comment share/doc/db/api_java/db_stat.html
@comment share/doc/db/api_java/db_sync.html
@comment share/doc/db/api_java/db_upgrade.html
@comment share/doc/db/api_java/db_verify.html
@comment share/doc/db/api_java/dbc_class.html
@comment share/doc/db/api_java/dbc_close.html
@comment share/doc/db/api_java/dbc_count.html
@comment share/doc/db/api_java/dbc_del.html
@comment share/doc/db/api_java/dbc_dup.html
@comment share/doc/db/api_java/dbc_get.html
@comment share/doc/db/api_java/dbc_put.html
@comment share/doc/db/api_java/dbenv_class.html
@comment share/doc/db/api_java/dbt_class.html
@comment share/doc/db/api_java/deadlock_class.html
@comment share/doc/db/api_java/env_close.html
@comment share/doc/db/api_java/env_open.html
@comment share/doc/db/api_java/env_remove.html
@comment share/doc/db/api_java/env_set_cachesize.html
@comment share/doc/db/api_java/env_set_data_dir.html
@comment share/doc/db/api_java/env_set_errcall.html
@comment share/doc/db/api_java/env_set_error_stream.html
@comment share/doc/db/api_java/env_set_errpfx.html
@comment share/doc/db/api_java/env_set_feedback.html
@comment share/doc/db/api_java/env_set_lg_bsize.html
@comment share/doc/db/api_java/env_set_lg_dir.html
@comment share/doc/db/api_java/env_set_lg_max.html
@comment share/doc/db/api_java/env_set_lk_conflicts.html
@comment share/doc/db/api_java/env_set_lk_detect.html
@comment share/doc/db/api_java/env_set_lk_max.html
@comment share/doc/db/api_java/env_set_mp_mmapsize.html
@comment share/doc/db/api_java/env_set_mutexlocks.html
@comment share/doc/db/api_java/env_set_pageyield.html
@comment share/doc/db/api_java/env_set_panicstate.html
@comment share/doc/db/api_java/env_set_rec_init.html
@comment share/doc/db/api_java/env_set_region_init.html
@comment share/doc/db/api_java/env_set_server.html
@comment share/doc/db/api_java/env_set_shm_key.html
@comment share/doc/db/api_java/env_set_tas_spins.html
@comment share/doc/db/api_java/env_set_tmp_dir.html
@comment share/doc/db/api_java/env_set_tx_max.html
@comment share/doc/db/api_java/env_set_tx_timestamp.html
@comment share/doc/db/api_java/env_set_verbose.html
@comment share/doc/db/api_java/env_strerror.html
@comment share/doc/db/api_java/env_version.html
@comment share/doc/db/api_java/except_class.html
@comment share/doc/db/api_java/get_errno.html
@comment share/doc/db/api_java/java_index.html
@comment share/doc/db/api_java/java_pindex.html
@comment share/doc/db/api_java/lock_class.html
@comment share/doc/db/api_java/lock_detect.html
@comment share/doc/db/api_java/lock_get.html
@comment share/doc/db/api_java/lock_id.html
@comment share/doc/db/api_java/lock_put.html
@comment share/doc/db/api_java/lock_stat.html
@comment share/doc/db/api_java/lock_vec.html
@comment share/doc/db/api_java/log_archive.html
@comment share/doc/db/api_java/log_compare.html
@comment share/doc/db/api_java/log_file.html
@comment share/doc/db/api_java/log_flush.html
@comment share/doc/db/api_java/log_get.html
@comment share/doc/db/api_java/log_put.html
@comment share/doc/db/api_java/log_register.html
@comment share/doc/db/api_java/log_stat.html
@comment share/doc/db/api_java/log_unregister.html
@comment share/doc/db/api_java/lsn_class.html
@comment share/doc/db/api_java/mem_class.html
@comment share/doc/db/api_java/memp_fclose.html
@comment share/doc/db/api_java/memp_fget.html
@comment share/doc/db/api_java/memp_fopen.html
@comment share/doc/db/api_java/memp_fput.html
@comment share/doc/db/api_java/memp_fset.html
@comment share/doc/db/api_java/memp_fsync.html
@comment share/doc/db/api_java/memp_register.html
@comment share/doc/db/api_java/memp_stat.html
@comment share/doc/db/api_java/memp_sync.html
@comment share/doc/db/api_java/memp_trickle.html
@comment share/doc/db/api_java/pindex.src
@comment share/doc/db/api_java/runrec_class.html
@comment share/doc/db/api_java/txn_abort.html
@comment share/doc/db/api_java/txn_begin.html
@comment share/doc/db/api_java/txn_checkpoint.html
@comment share/doc/db/api_java/txn_class.html
@comment share/doc/db/api_java/txn_commit.html
@comment share/doc/db/api_java/txn_id.html
@comment share/doc/db/api_java/txn_prepare.html
@comment share/doc/db/api_java/txn_stat.html
share/doc/db/images/api.gif
share/doc/db/images/next.gif
share/doc/db/images/prev.gif
share/doc/db/images/ps.gif
share/doc/db/images/ref.gif
share/doc/db/images/sleepycat.gif
share/doc/db/index.html
share/doc/db/ref/am/close.html
share/doc/db/ref/am/count.html
share/doc/db/ref/am/curclose.html
share/doc/db/ref/am/curdel.html
share/doc/db/ref/am/curdup.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/error.html
share/doc/db/ref/am/get.html
share/doc/db/ref/am/join.html
share/doc/db/ref/am/open.html
share/doc/db/ref/am/opensub.html
share/doc/db/ref/am/ops.html
share/doc/db/ref/am/partial.html
share/doc/db/ref/am/put.html
share/doc/db/ref/am/stat.html
share/doc/db/ref/am/sync.html
share/doc/db/ref/am/upgrade.html
share/doc/db/ref/am/verify.html
share/doc/db/ref/am_conf/bt_compare.html
share/doc/db/ref/am_conf/bt_minkey.html
share/doc/db/ref/am_conf/bt_prefix.html
share/doc/db/ref/am_conf/bt_recnum.html
share/doc/db/ref/am_conf/byteorder.html
share/doc/db/ref/am_conf/cachesize.html
share/doc/db/ref/am_conf/dup.html
share/doc/db/ref/am_conf/h_ffactor.html
share/doc/db/ref/am_conf/h_hash.html
share/doc/db/ref/am_conf/h_nelem.html
share/doc/db/ref/am_conf/intro.html
share/doc/db/ref/am_conf/logrec.html
share/doc/db/ref/am_conf/malloc.html
share/doc/db/ref/am_conf/pagesize.html
share/doc/db/ref/am_conf/re_source.html
share/doc/db/ref/am_conf/recno.html
share/doc/db/ref/am_conf/renumber.html
share/doc/db/ref/am_conf/select.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/progmodel.html
share/doc/db/ref/arch/script.html
share/doc/db/ref/arch/smallpic.gif
share/doc/db/ref/arch/utilities.html
share/doc/db/ref/build_unix/aix.html
share/doc/db/ref/build_unix/conf.html
share/doc/db/ref/build_unix/flags.html
share/doc/db/ref/build_unix/freebsd.html
share/doc/db/ref/build_unix/hpux.html
share/doc/db/ref/build_unix/install.html
share/doc/db/ref/build_unix/intro.html
share/doc/db/ref/build_unix/irix.html
share/doc/db/ref/build_unix/linux.html
share/doc/db/ref/build_unix/notes.html
share/doc/db/ref/build_unix/osf1.html
share/doc/db/ref/build_unix/sco.html
share/doc/db/ref/build_unix/shlib.html
share/doc/db/ref/build_unix/solaris.html
share/doc/db/ref/build_unix/sunos.html
share/doc/db/ref/build_unix/test.html
share/doc/db/ref/build_unix/ultrix.html
share/doc/db/ref/build_vxworks/faq.html
share/doc/db/ref/build_vxworks/intro.html
share/doc/db/ref/build_vxworks/notes.html
share/doc/db/ref/build_win/faq.html
share/doc/db/ref/build_win/intro.html
share/doc/db/ref/build_win/notes.html
share/doc/db/ref/build_win/test.html
share/doc/db/ref/cam/intro.html
share/doc/db/ref/debug/common.html
share/doc/db/ref/debug/compile.html
share/doc/db/ref/debug/intro.html
share/doc/db/ref/debug/printlog.html
share/doc/db/ref/debug/runtime.html
share/doc/db/ref/distrib/layout.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/error.html
share/doc/db/ref/env/intro.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/remote.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/products.html
share/doc/db/ref/intro/what.html
share/doc/db/ref/intro/where.html
@comment share/doc/db/ref/java/compat.html
@comment share/doc/db/ref/java/conf.html
@comment share/doc/db/ref/java/program.html
share/doc/db/ref/lock/am_conv.html
share/doc/db/ref/lock/cam_conv.html
share/doc/db/ref/lock/config.html
share/doc/db/ref/lock/dead.html
share/doc/db/ref/lock/intro.html
share/doc/db/ref/lock/nondb.html
share/doc/db/ref/lock/notxn.html
share/doc/db/ref/lock/page.html
share/doc/db/ref/lock/stdmode.html
share/doc/db/ref/lock/twopl.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/pindex.src
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/copy.html
share/doc/db/ref/program/dbsizes.html
share/doc/db/ref/program/diskspace.html
share/doc/db/ref/program/environ.html
share/doc/db/ref/program/errorret.html
share/doc/db/ref/program/extending.html
share/doc/db/ref/program/mt.html
share/doc/db/ref/program/namespace.html
share/doc/db/ref/program/runtime.html
share/doc/db/ref/program/solaris.txt
share/doc/db/ref/program/version.html
share/doc/db/ref/refs/bdb_usenix.html
share/doc/db/ref/refs/bdb_usenix.ps
share/doc/db/ref/refs/embedded.html
share/doc/db/ref/refs/hash_usenix.ps
share/doc/db/ref/refs/libtp_usenix.ps
share/doc/db/ref/refs/refs.html
share/doc/db/ref/refs/witold.html
share/doc/db/ref/rpc/client.html
share/doc/db/ref/rpc/intro.html
share/doc/db/ref/rpc/server.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/handles.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/test/run.html
share/doc/db/ref/toc.html
share/doc/db/ref/transapp/admin.html
share/doc/db/ref/transapp/app.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/recimp.html
share/doc/db/ref/transapp/reclimit.html
share/doc/db/ref/transapp/recovery.html
share/doc/db/ref/transapp/routine.html
share/doc/db/ref/transapp/term.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/intro.html
share/doc/db/ref/txn/limits.html
share/doc/db/ref/txn/nested.html
share/doc/db/ref/txn/other.html
share/doc/db/ref/txn/stability.html
share/doc/db/ref/upgrade.2.0/convert.html
share/doc/db/ref/upgrade.2.0/disk.html
share/doc/db/ref/upgrade.2.0/intro.html
share/doc/db/ref/upgrade.2.0/system.html
share/doc/db/ref/upgrade.3.0/close.html
share/doc/db/ref/upgrade.3.0/cxx.html
share/doc/db/ref/upgrade.3.0/db.html
share/doc/db/ref/upgrade.3.0/db_cxx.html
share/doc/db/ref/upgrade.3.0/dbenv.html
share/doc/db/ref/upgrade.3.0/dbenv_cxx.html
share/doc/db/ref/upgrade.3.0/dbinfo.html
share/doc/db/ref/upgrade.3.0/disk.html
share/doc/db/ref/upgrade.3.0/eacces.html
share/doc/db/ref/upgrade.3.0/eagain.html
share/doc/db/ref/upgrade.3.0/envopen.html
share/doc/db/ref/upgrade.3.0/func.html
share/doc/db/ref/upgrade.3.0/intro.html
@comment share/doc/db/ref/upgrade.3.0/java.html
share/doc/db/ref/upgrade.3.0/join.html
share/doc/db/ref/upgrade.3.0/jump_set.html
share/doc/db/ref/upgrade.3.0/lock_detect.html
share/doc/db/ref/upgrade.3.0/lock_notheld.html
share/doc/db/ref/upgrade.3.0/lock_put.html
share/doc/db/ref/upgrade.3.0/lock_stat.html
share/doc/db/ref/upgrade.3.0/log_register.html
share/doc/db/ref/upgrade.3.0/log_stat.html
share/doc/db/ref/upgrade.3.0/memp_stat.html
share/doc/db/ref/upgrade.3.0/open.html
share/doc/db/ref/upgrade.3.0/rmw.html
share/doc/db/ref/upgrade.3.0/stat.html
share/doc/db/ref/upgrade.3.0/txn_begin.html
share/doc/db/ref/upgrade.3.0/txn_commit.html
share/doc/db/ref/upgrade.3.0/txn_stat.html
share/doc/db/ref/upgrade.3.0/value_set.html
share/doc/db/ref/upgrade.3.0/xa.html
share/doc/db/ref/upgrade.3.1/btstat.html
share/doc/db/ref/upgrade.3.1/config.html
share/doc/db/ref/upgrade.3.1/disk.html
share/doc/db/ref/upgrade.3.1/dup.html
share/doc/db/ref/upgrade.3.1/env.html
share/doc/db/ref/upgrade.3.1/intro.html
share/doc/db/ref/upgrade.3.1/log_register.html
share/doc/db/ref/upgrade.3.1/logalloc.html
share/doc/db/ref/upgrade.3.1/memp_register.html
share/doc/db/ref/upgrade.3.1/put.html
share/doc/db/ref/upgrade.3.1/set_feedback.html
share/doc/db/ref/upgrade.3.1/set_paniccall.html
share/doc/db/ref/upgrade.3.1/set_tx_recover.html
share/doc/db/ref/upgrade.3.1/sysmem.html
share/doc/db/ref/upgrade.3.1/tmp.html
share/doc/db/ref/upgrade.3.1/txn_check.html
share/doc/db/ref/xa/config.html
share/doc/db/ref/xa/faq.html
share/doc/db/ref/xa/intro.html
share/doc/db/sleepycat/contact.html
share/doc/db/sleepycat/legal.html
share/doc/db/sleepycat/license.html
share/doc/db/utility/berkeley_db_svc.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_printlog.html
share/doc/db/utility/db_recover.html
share/doc/db/utility/db_stat.html
share/doc/db/utility/db_upgrade.html
share/doc/db/utility/db_verify.html
share/doc/db/utility/index.html
share/examples/db/AccessExample.cpp
share/examples/db/BtRecExample.cpp
share/examples/db/EnvExample.cpp
share/examples/db/LockExample.cpp
share/examples/db/MpoolExample.cpp
share/examples/db/TpcbExample.cpp
share/examples/db/ex_access.c
share/examples/db/ex_btrec.c
share/examples/db/ex_dbclient.c
share/examples/db/ex_env.c
share/examples/db/ex_lock.c
share/examples/db/ex_mpool.c
share/examples/db/ex_thread.c
share/examples/db/ex_tpcb.c
%%SHARED%%
@dirrm share/examples/db
@dirrm share/doc/db/utility
@dirrm share/doc/db/sleepycat
@dirrm share/doc/db/ref/xa
@dirrm share/doc/db/ref/upgrade.3.1
@dirrm share/doc/db/ref/upgrade.3.0
@dirrm share/doc/db/ref/upgrade.2.0
@dirrm share/doc/db/ref/txn
@dirrm share/doc/db/ref/transapp
@dirrm share/doc/db/ref/test
@dirrm share/doc/db/ref/simple_tut
@dirrm share/doc/db/ref/sendmail
@dirrm share/doc/db/ref/rpc
@dirrm share/doc/db/ref/refs
@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
@comment @dirrm share/doc/db/ref/java
@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/distrib
@dirrm share/doc/db/ref/debug
@dirrm share/doc/db/ref/cam
@dirrm share/doc/db/ref/build_win
@dirrm share/doc/db/ref/build_vxworks
@dirrm share/doc/db/ref/build_unix
@dirrm share/doc/db/ref/arch
@dirrm share/doc/db/ref/am_conf
@dirrm share/doc/db/ref/am
@dirrm share/doc/db/ref
@dirrm share/doc/db/images
@comment share/doc/db/api_java
@dirrm share/doc/db/api_cxx
@dirrm share/doc/db/api_c
@dirrm share/doc/db
@dirrm lib/db
@dirrm include/db

15
databases/db/v4/Makefile Normal file
View File

@ -0,0 +1,15 @@
# $OpenBSD: Makefile,v 1.1.1.1 2003/12/08 17:37:52 sturm Exp $
REVISION= 4
VERSION= ${REVISION}.1.25
MASTER_SITES0= ${MASTER_SITES:S/snapshot/4.1.25/}
PATCHFILES= patch.${VERSION}.1:0
DEST_SUBDIR= ${REVISION}
.if ${MACHINE_ARCH} == "sparc64"
PATCH_LIST= patch-* gcc-*
.endif
.include <bsd.port.mk>

6
databases/db/v4/distinfo Normal file
View File

@ -0,0 +1,6 @@
MD5 (db-4.1.25.tar.gz) = df71961002b552c0e72c6e4e358f27e1
MD5 (patch.4.1.25.1) = 1e073d12cd89f9345e281ca07368f74b
RMD160 (db-4.1.25.tar.gz) = 4647dada39e270d9218264df55887f934a851658
RMD160 (patch.4.1.25.1) = a4d8747b31481fc6a42dff5fbc07052d458bcd45
SHA1 (db-4.1.25.tar.gz) = fc462d40046e85f715db54fc8acece99f9a7bd4c
SHA1 (patch.4.1.25.1) = 755774f9c3d9a398d3e25f0b0a5ea7712e29a2c0

View File

@ -0,0 +1,4 @@
# $OpenBSD: regress.tcl,v 1.1.1.1 2003/12/08 17:37:55 sturm Exp $
source ../test/test.tcl
run_all

View File

@ -0,0 +1,11 @@
--- dist/Makefile.in.orig Fri Aug 30 20:11:56 2002
+++ dist/Makefile.in Wed Dec 3 20:44:10 2003
@@ -1203,7 +1206,7 @@
rijndael-api-fst@o@: $(srcdir)/crypto/rijndael/rijndael-api-fst.c
$(CC) $(CFLAGS) $?
sha1@o@: $(srcdir)/hmac/sha1.c
- $(CC) $(CFLAGS) $?
+ $(CC) $(CFLAGS) -O0 $?
txn@o@: $(srcdir)/txn/txn.c
$(CC) $(CFLAGS) $?
txn_auto@o@: $(srcdir)/txn/txn_auto.c

View File

@ -0,0 +1,134 @@
$OpenBSD: patch-dist_Makefile_in,v 1.1.1.1 2003/12/08 17:37:52 sturm Exp $
--- dist/Makefile.in.orig 2002-08-30 20:11:56.000000000 +0200
+++ dist/Makefile.in 2003-11-24 23:47:21.000000000 +0100
@@ -11,7 +11,7 @@ exec_prefix=@exec_prefix@
bindir= @bindir@
includedir=@includedir@
libdir= @libdir@
-docdir= $(prefix)/docs
+docdir= $(prefix)/share/doc/db4
dmode= 755
emode= 555
@@ -61,11 +62,11 @@ LIBSO_LIBS= @LIBSO_LIBS@
libdb= libdb.a
libso_base= libdb
-libso= $(libso_base)-$(SOVERSION).@SOSUFFIX@
+libso= $(libso_base).@SOSUFFIX@.$(SOVERSION)
libso_static= $(libso_base)-$(SOVERSION).a
-libso_target= $(libso_base)-$(SOVERSION).la
+libso_target= $(libso_base).la
libso_default= $(libso_base).@SOSUFFIX@
-libso_major= $(libso_base)-$(SOMAJOR).@SOSUFFIX@
+libso_major= $(libso_base).@SOSUFFIX@.$(SOMAJOR)
##################################################
# C++ API.
@@ -80,11 +81,11 @@ LIBXSO_LIBS= @LIBXSO_LIBS@
libcxx= libdb_cxx.a
libxso_base= libdb_cxx
-libxso= $(libxso_base)-$(SOVERSION).@SOSUFFIX@
+libxso= $(libxso_base).@SOSUFFIX@.$(SOVERSION)
libxso_static= $(libxso_base)-$(SOVERSION).a
-libxso_target= $(libxso_base)-$(SOVERSION).la
+libxso_target= $(libxso_base).la
libxso_default= $(libxso_base).@SOSUFFIX@
-libxso_major= $(libxso_base)-$(SOMAJOR).@SOSUFFIX@
+libxso_major= $(libxso_base).@SOSUFFIX@.$(SOMAJOR)
##################################################
# Java API.
@@ -126,11 +127,11 @@ libjso_g= $(libjso_base)-$(SOVERSION)_g.
TCFLAGS= @TCFLAGS@
LIBTSO_LIBS= @LIBTSO_LIBS@
libtso_base= libdb_tcl
-libtso= $(libtso_base)-$(SOVERSION).@MODSUFFIX@
-libtso_static= $(libtso_base)-$(SOVERSION).a
-libtso_target= $(libtso_base)-$(SOVERSION).la
+libtso= $(libtso_base).@MODSUFFIX@.$(SOVERSION)
+libtso_static= $(libtso_base).a
+libtso_target= $(libtso_base).la
libtso_default= $(libtso_base).@MODSUFFIX@
-libtso_major= $(libtso_base)-$(SOMAJOR).@MODSUFFIX@
+libtso_major= $(libtso_base).@MODSUFFIX@.$(SOMAJOR)
##################################################
# db_dump185 UTILITY
@@ -364,8 +365,8 @@ RPC_JAVASRV_SRCS=\
UTIL_PROGS=\
@ADDITIONAL_PROGS@ \
- db_archive db_checkpoint db_deadlock \
- db_dump db_load db_printlog db_recover db_stat db_upgrade db_verify
+ db4_archive db4_checkpoint db4_deadlock \
+ db4_dump db4_load db4_printlog db4_recover db4_stat db4_upgrade db4_verify
##################################################
# List of files installed into the library directory.
@@ -481,53 +482,53 @@ berkeley_db_javasvc: $(rpc_jarfile)
echo >> $@ exec java com.sleepycat.db.rpcserver.DbServer \$$@
chmod +x $@
-db_archive: db_archive@o@ util_sig@o@ $(DEF_LIB)
+db4_archive: db_archive@o@ util_sig@o@ $(DEF_LIB)
$(CCLINK) -o $@ $(LDFLAGS) \
db_archive@o@ util_sig@o@ $(DEF_LIB) $(LIBS)
$(POSTLINK) $@
-db_checkpoint: db_checkpoint@o@ util_log@o@ util_sig@o@ $(DEF_LIB)
+db4_checkpoint: db_checkpoint@o@ util_log@o@ util_sig@o@ $(DEF_LIB)
$(CCLINK) -o $@ $(LDFLAGS) \
db_checkpoint@o@ util_log@o@ util_sig@o@ $(DEF_LIB) $(LIBS)
$(POSTLINK) $@
-db_deadlock: db_deadlock@o@ util_log@o@ util_sig@o@ $(DEF_LIB)
+db4_deadlock: db_deadlock@o@ util_log@o@ util_sig@o@ $(DEF_LIB)
$(CCLINK) -o $@ $(LDFLAGS) \
db_deadlock@o@ util_log@o@ util_sig@o@ $(DEF_LIB) $(LIBS)
$(POSTLINK) $@
-db_dump: db_dump@o@ util_cache@o@ util_sig@o@ $(DEF_LIB)
+db4_dump: db_dump@o@ util_cache@o@ util_sig@o@ $(DEF_LIB)
$(CCLINK) -o $@ $(LDFLAGS) db_dump@o@ util_cache@o@ util_sig@o@ $(DEF_LIB) $(LIBS)
$(POSTLINK) $@
-db_dump185: db_dump185@o@ @LTLIBOBJS@
+db4_dump185: db_dump185@o@ @LTLIBOBJS@
$(CCLINK) -o $@ $(LDFLAGS) db_dump185@o@ @LTLIBOBJS@ $(DB185LIB)
$(POSTLINK) $@
-db_load: db_load@o@ util_cache@o@ util_sig@o@ $(DEF_LIB)
+db4_load: db_load@o@ util_cache@o@ util_sig@o@ $(DEF_LIB)
$(CCLINK) -o $@ $(LDFLAGS) db_load@o@ util_cache@o@ util_sig@o@ $(DEF_LIB) $(LIBS)
$(POSTLINK) $@
-db_printlog: db_printlog@o@ util_sig@o@ $(DEF_LIB)
+db4_printlog: db_printlog@o@ util_sig@o@ $(DEF_LIB)
$(CCLINK) -o $@ $(LDFLAGS) \
db_printlog@o@ util_sig@o@ $(DEF_LIB) $(LIBS)
$(POSTLINK) $@
-db_recover: db_recover@o@ util_sig@o@ $(DEF_LIB)
+db4_recover: db_recover@o@ util_sig@o@ $(DEF_LIB)
$(CCLINK) -o $@ $(LDFLAGS) \
db_recover@o@ util_sig@o@ $(DEF_LIB) $(LIBS)
$(POSTLINK) $@
-db_stat: db_stat@o@ util_cache@o@ util_sig@o@ $(DEF_LIB)
+db4_stat: db_stat@o@ util_cache@o@ util_sig@o@ $(DEF_LIB)
$(CCLINK) -o $@ $(LDFLAGS) db_stat@o@ util_cache@o@ util_sig@o@ $(DEF_LIB) $(LIBS)
$(POSTLINK) $@
-db_upgrade: db_upgrade@o@ util_sig@o@ $(DEF_LIB)
+db4_upgrade: db_upgrade@o@ util_sig@o@ $(DEF_LIB)
$(CCLINK) -o $@ $(LDFLAGS) \
db_upgrade@o@ util_sig@o@ $(DEF_LIB) $(LIBS)
$(POSTLINK) $@
-db_verify: db_verify@o@ util_cache@o@ util_sig@o@ $(DEF_LIB)
+db4_verify: db_verify@o@ util_cache@o@ util_sig@o@ $(DEF_LIB)
$(CCLINK) -o $@ $(LDFLAGS) \
db_verify@o@ util_cache@o@ util_sig@o@ $(DEF_LIB) $(LIBS)
$(POSTLINK) $@

View File

@ -0,0 +1,44 @@
$OpenBSD: patch-dist_configure,v 1.1.1.1 2003/12/08 17:37:52 sturm Exp $
--- dist/configure.orig Thu Dec 19 10:55:03 2002
+++ dist/configure Sat Jan 11 20:39:05 2003
@@ -5102,6 +5102,7 @@ openbsd*)
else
lt_cv_deplibs_check_method='file_magic OpenBSD.* shared library'
fi
+ lt_cv_deplibs_check_method=pass_all
;;
osf3* | osf4* | osf5*)
@@ -8013,8 +8014,8 @@ nto-qnx)
openbsd*)
version_type=sunos
- need_lib_prefix=no
- need_version=no
+ need_lib_prefix=yes
+ need_version=yes
if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
case "$host_os" in
openbsd2.[89] | openbsd2.[89].*)
@@ -9552,10 +9553,10 @@ echo "${ECHO_T}$JMODSUFFIX" >&6
INSTALLER="\$(LIBTOOL) --mode=install cp -p"
MAKEFILE_CC="\$(LIBTOOL) --mode=compile ${MAKEFILE_CC}"
-MAKEFILE_SOLINK="\$(LIBTOOL) --mode=link ${MAKEFILE_CCLINK} -avoid-version"
+MAKEFILE_SOLINK="\$(LIBTOOL) --mode=link ${MAKEFILE_CCLINK} -version-info ${DB_VERSION_MAJOR}:${DB_VERSION_MINOR}"
MAKEFILE_CCLINK="\$(LIBTOOL) --mode=link ${MAKEFILE_CCLINK}"
MAKEFILE_CXX="\$(LIBTOOL) --mode=compile ${MAKEFILE_CXX}"
-MAKEFILE_XSOLINK="\$(LIBTOOL) --mode=link ${MAKEFILE_CXXLINK} -avoid-version"
+MAKEFILE_XSOLINK="\$(LIBTOOL) --mode=link ${MAKEFILE_CXXLINK} -version-info ${DB_VERSION_MAJOR}:${DB_VERSION_MINOR}"
MAKEFILE_CXXLINK="\$(LIBTOOL) --mode=link ${MAKEFILE_CXXLINK}"
# Configure for shared libraries, static libraries, or both. If both are
@@ -10364,7 +10365,7 @@ fi
# Optional utilities.
if test "$db_cv_dump185" = "yes"; then
- ADDITIONAL_PROGS="db_dump185 $ADDITIONAL_PROGS"
+ ADDITIONAL_PROGS="db4_dump185 $ADDITIONAL_PROGS"
fi
# Checks for compiler characteristics.

View File

@ -0,0 +1,30 @@
$OpenBSD: patch-env_env_open_c,v 1.1.1.1 2003/12/08 17:37:52 sturm Exp $
--- env/env_open.c.orig 2003-12-04 13:59:29.000000000 +0100
+++ env/env_open.c 2003-12-04 13:59:44.000000000 +0100
@@ -906,7 +906,7 @@ illegal: __db_err(dbenv, "mis-formatted
return (dbenv->set_data_dir(dbenv, value));
if (!strcasecmp(name, "set_flags")) {
- if (sscanf(value, "%40s %c", arg, &v4) != 1)
+ if (sscanf(value, "%39s %c", arg, &v4) != 1)
goto badarg;
if (!strcasecmp(value, "db_cdb_alldb"))
@@ -961,7 +961,7 @@ illegal: __db_err(dbenv, "mis-formatted
return (dbenv->set_lg_dir(dbenv, value));
if (!strcasecmp(name, "set_lk_detect")) {
- if (sscanf(value, "%40s %c", arg, &v4) != 1)
+ if (sscanf(value, "%39s %c", arg, &v4) != 1)
goto badarg;
if (!strcasecmp(value, "db_lock_default"))
flags = DB_LOCK_DEFAULT;
@@ -1067,7 +1067,7 @@ illegal: __db_err(dbenv, "mis-formatted
}
if (!strcasecmp(name, "set_verbose")) {
- if (sscanf(value, "%40s %c", arg, &v4) != 1)
+ if (sscanf(value, "%39s %c", arg, &v4) != 1)
goto badarg;
if (!strcasecmp(value, "db_verb_chkpoint"))

View File

@ -0,0 +1,12 @@
$OpenBSD: patch-test_include_tcl,v 1.1.1.1 2003/12/08 17:37:52 sturm Exp $
--- test/include.tcl.orig 2003-12-04 09:12:45.000000000 +0100
+++ test/include.tcl 2003-12-04 09:13:09.000000000 +0100
@@ -1,7 +1,7 @@
# Automatically built by dist/s_test; may require local editing.
set tclsh_path @TCL_TCLSH@
-set tcllib .libs/libdb_tcl-@DB_VERSION_MAJOR@.@DB_VERSION_MINOR@.@MODSUFFIX@
+set tcllib .libs/libdb_tcl.@MODSUFFIX@.@DB_VERSION_MAJOR@.@DB_VERSION_MINOR@
set rpc_server localhost
set rpc_path .

19
databases/db/v4/pkg/DESCR Normal file
View File

@ -0,0 +1,19 @@
Berkeley DB is a programmatic toolkit that provides fast, reliable,
scalable, and mission-critical database support to software developers.
Berkeley DB provides data management services for some of the most
demanding high-end server applications in the world. Vendors of
industry-leading messaging, directory, billing and provisioning servers as
well as the biggest portal, ASP and commerce sites on the Internet rely on
Berkeley DB. Berkeley DB's high performance and scalability support
thousands of simultaneous users working on databases as large as 256
terabytes.
At the same time, Berkeley DB's small footprint, in-process execution
model, simple function-call API and low administrative overhead make it
ideal for use in embedded systems. Vendors of telecommunications switches,
routers and wired and wireless network gateways choose Berkeley DB to
manage critical information in their products.
Flavors:
* tcl -- adds TCL module

View File

@ -0,0 +1,4 @@
@comment $OpenBSD: PFRAG.shared,v 1.1.1.1 2003/12/08 17:37:55 sturm Exp $
lib/db4/libdb.so.4.1
lib/db4/libdb_cxx.so.4.1
DYNLIBDIR(%D/lib)

View File

@ -0,0 +1,45 @@
@comment $OpenBSD: PFRAG.tcl,v 1.1.1.1 2003/12/08 17:37:55 sturm Exp $
lib/db4/libdb_tcl.a
lib/db4/libdb_tcl.la
lib/db4/libdb_tcl.so.4.1
share/doc/db4/api_tcl/db_close.html
share/doc/db4/api_tcl/db_count.html
share/doc/db4/api_tcl/db_cursor.html
share/doc/db4/api_tcl/db_del.html
share/doc/db4/api_tcl/db_get.html
share/doc/db4/api_tcl/db_get_join.html
share/doc/db4/api_tcl/db_get_type.html
share/doc/db4/api_tcl/db_is_byteswapped.html
share/doc/db4/api_tcl/db_join.html
share/doc/db4/api_tcl/db_open.html
share/doc/db4/api_tcl/db_put.html
share/doc/db4/api_tcl/db_remove.html
share/doc/db4/api_tcl/db_rename.html
share/doc/db4/api_tcl/db_stat.html
share/doc/db4/api_tcl/db_sync.html
share/doc/db4/api_tcl/db_truncate.html
share/doc/db4/api_tcl/dbc_close.html
share/doc/db4/api_tcl/dbc_del.html
share/doc/db4/api_tcl/dbc_dup.html
share/doc/db4/api_tcl/dbc_get.html
share/doc/db4/api_tcl/dbc_put.html
share/doc/db4/api_tcl/env_close.html
share/doc/db4/api_tcl/env_dbremove.html
share/doc/db4/api_tcl/env_dbrename.html
share/doc/db4/api_tcl/env_open.html
share/doc/db4/api_tcl/env_remove.html
share/doc/db4/api_tcl/pindex.src
share/doc/db4/api_tcl/tcl_index.html
share/doc/db4/api_tcl/tcl_pindex.html
share/doc/db4/api_tcl/txn.html
share/doc/db4/api_tcl/txn_abort.html
share/doc/db4/api_tcl/txn_commit.html
share/doc/db4/api_tcl/version.html
share/doc/db4/ref/tcl/error.html
share/doc/db4/ref/tcl/faq.html
share/doc/db4/ref/tcl/intro.html
share/doc/db4/ref/tcl/program.html
share/doc/db4/ref/tcl/using.html
share/doc/db4/ref/upgrade.3.1/tcl.html
@dirrm share/doc/db4/ref/tcl
@dirrm share/doc/db4/api_tcl

954
databases/db/v4/pkg/PLIST Normal file
View File

@ -0,0 +1,954 @@
@comment $OpenBSD: PLIST,v 1.1.1.1 2003/12/08 17:37:55 sturm Exp $
@option no-default-conflict
@pkgcfl db-4*
%%tcl%%
bin/db4_archive
bin/db4_checkpoint
bin/db4_deadlock
bin/db4_dump
bin/db4_dump185
bin/db4_load
bin/db4_printlog
bin/db4_recover
bin/db4_stat
bin/db4_upgrade
bin/db4_verify
include/db4/cxx_common.h
include/db4/cxx_except.h
include/db4/db.h
include/db4/db_185.h
include/db4/db_cxx.h
lib/db4/libdb.a
lib/db4/libdb.la
@comment lib/db4/libdb.so
@comment lib/db4/libdb.so.4
lib/db4/libdb_cxx.a
lib/db4/libdb_cxx.la
@comment lib/db4/libdb_cxx.so
@comment lib/db4/libdb_cxx.so.4
share/doc/db4/api_c/c_index.html
share/doc/db4/api_c/c_pindex.html
share/doc/db4/api_c/db_associate.html
share/doc/db4/api_c/db_class.html
share/doc/db4/api_c/db_close.html
share/doc/db4/api_c/db_create.html
share/doc/db4/api_c/db_cursor.html
share/doc/db4/api_c/db_del.html
share/doc/db4/api_c/db_err.html
share/doc/db4/api_c/db_fd.html
share/doc/db4/api_c/db_get.html
share/doc/db4/api_c/db_get_byteswapped.html
share/doc/db4/api_c/db_get_type.html
share/doc/db4/api_c/db_join.html
share/doc/db4/api_c/db_key_range.html
share/doc/db4/api_c/db_list.html
share/doc/db4/api_c/db_open.html
share/doc/db4/api_c/db_put.html
share/doc/db4/api_c/db_remove.html
share/doc/db4/api_c/db_rename.html
share/doc/db4/api_c/db_set_alloc.html
share/doc/db4/api_c/db_set_append_recno.html
share/doc/db4/api_c/db_set_bt_compare.html
share/doc/db4/api_c/db_set_bt_minkey.html
share/doc/db4/api_c/db_set_bt_prefix.html
share/doc/db4/api_c/db_set_cache_priority.html
share/doc/db4/api_c/db_set_cachesize.html
share/doc/db4/api_c/db_set_dup_compare.html
share/doc/db4/api_c/db_set_encrypt.html
share/doc/db4/api_c/db_set_errcall.html
share/doc/db4/api_c/db_set_errfile.html
share/doc/db4/api_c/db_set_errpfx.html
share/doc/db4/api_c/db_set_feedback.html
share/doc/db4/api_c/db_set_flags.html
share/doc/db4/api_c/db_set_h_ffactor.html
share/doc/db4/api_c/db_set_h_hash.html
share/doc/db4/api_c/db_set_h_nelem.html
share/doc/db4/api_c/db_set_lorder.html
share/doc/db4/api_c/db_set_pagesize.html
share/doc/db4/api_c/db_set_paniccall.html
share/doc/db4/api_c/db_set_q_extentsize.html
share/doc/db4/api_c/db_set_re_delim.html
share/doc/db4/api_c/db_set_re_len.html
share/doc/db4/api_c/db_set_re_pad.html
share/doc/db4/api_c/db_set_re_source.html
share/doc/db4/api_c/db_stat.html
share/doc/db4/api_c/db_sync.html
share/doc/db4/api_c/db_truncate.html
share/doc/db4/api_c/db_upgrade.html
share/doc/db4/api_c/db_verify.html
share/doc/db4/api_c/dbc_class.html
share/doc/db4/api_c/dbc_close.html
share/doc/db4/api_c/dbc_count.html
share/doc/db4/api_c/dbc_del.html
share/doc/db4/api_c/dbc_dup.html
share/doc/db4/api_c/dbc_get.html
share/doc/db4/api_c/dbc_list.html
share/doc/db4/api_c/dbc_put.html
share/doc/db4/api_c/dbm.html
share/doc/db4/api_c/dbt_bulk.html
share/doc/db4/api_c/dbt_class.html
share/doc/db4/api_c/env_class.html
share/doc/db4/api_c/env_close.html
share/doc/db4/api_c/env_create.html
share/doc/db4/api_c/env_dbremove.html
share/doc/db4/api_c/env_dbrename.html
share/doc/db4/api_c/env_err.html
share/doc/db4/api_c/env_list.html
share/doc/db4/api_c/env_open.html
share/doc/db4/api_c/env_remove.html
share/doc/db4/api_c/env_set_alloc.html
share/doc/db4/api_c/env_set_app_dispatch.html
share/doc/db4/api_c/env_set_cachesize.html
share/doc/db4/api_c/env_set_data_dir.html
share/doc/db4/api_c/env_set_encrypt.html
share/doc/db4/api_c/env_set_errcall.html
share/doc/db4/api_c/env_set_errfile.html
share/doc/db4/api_c/env_set_errpfx.html
share/doc/db4/api_c/env_set_feedback.html
share/doc/db4/api_c/env_set_flags.html
share/doc/db4/api_c/env_set_lg_bsize.html
share/doc/db4/api_c/env_set_lg_dir.html
share/doc/db4/api_c/env_set_lg_max.html
share/doc/db4/api_c/env_set_lg_regionmax.html
share/doc/db4/api_c/env_set_lk_conflicts.html
share/doc/db4/api_c/env_set_lk_detect.html
share/doc/db4/api_c/env_set_lk_max_lockers.html
share/doc/db4/api_c/env_set_lk_max_locks.html
share/doc/db4/api_c/env_set_lk_max_objects.html
share/doc/db4/api_c/env_set_mp_mmapsize.html
share/doc/db4/api_c/env_set_paniccall.html
share/doc/db4/api_c/env_set_rpc_server.html
share/doc/db4/api_c/env_set_shm_key.html
share/doc/db4/api_c/env_set_tas_spins.html
share/doc/db4/api_c/env_set_timeout.html
share/doc/db4/api_c/env_set_tmp_dir.html
share/doc/db4/api_c/env_set_tx_max.html
share/doc/db4/api_c/env_set_tx_timestamp.html
share/doc/db4/api_c/env_set_verbose.html
share/doc/db4/api_c/env_strerror.html
share/doc/db4/api_c/env_version.html
share/doc/db4/api_c/hsearch.html
share/doc/db4/api_c/lock_class.html
share/doc/db4/api_c/lock_detect.html
share/doc/db4/api_c/lock_get.html
share/doc/db4/api_c/lock_id.html
share/doc/db4/api_c/lock_id_free.html
share/doc/db4/api_c/lock_list.html
share/doc/db4/api_c/lock_put.html
share/doc/db4/api_c/lock_stat.html
share/doc/db4/api_c/lock_vec.html
share/doc/db4/api_c/log_archive.html
share/doc/db4/api_c/log_compare.html
share/doc/db4/api_c/log_cursor.html
share/doc/db4/api_c/log_file.html
share/doc/db4/api_c/log_flush.html
share/doc/db4/api_c/log_list.html
share/doc/db4/api_c/log_put.html
share/doc/db4/api_c/log_stat.html
share/doc/db4/api_c/logc_class.html
share/doc/db4/api_c/logc_close.html
share/doc/db4/api_c/logc_get.html
share/doc/db4/api_c/lsn_class.html
share/doc/db4/api_c/memp_fclose.html
share/doc/db4/api_c/memp_fcreate.html
share/doc/db4/api_c/memp_fget.html
share/doc/db4/api_c/memp_fopen.html
share/doc/db4/api_c/memp_fput.html
share/doc/db4/api_c/memp_fset.html
share/doc/db4/api_c/memp_fsync.html
share/doc/db4/api_c/memp_list.html
share/doc/db4/api_c/memp_register.html
share/doc/db4/api_c/memp_set_clear_len.html
share/doc/db4/api_c/memp_set_fileid.html
share/doc/db4/api_c/memp_set_ftype.html
share/doc/db4/api_c/memp_set_lsn_offset.html
share/doc/db4/api_c/memp_set_pgcookie.html
share/doc/db4/api_c/memp_stat.html
share/doc/db4/api_c/memp_sync.html
share/doc/db4/api_c/memp_trickle.html
share/doc/db4/api_c/mempfile_class.html
share/doc/db4/api_c/pindex.src
share/doc/db4/api_c/rep_elect.html
share/doc/db4/api_c/rep_limit.html
share/doc/db4/api_c/rep_list.html
share/doc/db4/api_c/rep_message.html
share/doc/db4/api_c/rep_start.html
share/doc/db4/api_c/rep_stat.html
share/doc/db4/api_c/rep_transport.html
share/doc/db4/api_c/set_func_close.html
share/doc/db4/api_c/set_func_dirfree.html
share/doc/db4/api_c/set_func_dirlist.html
share/doc/db4/api_c/set_func_exists.html
share/doc/db4/api_c/set_func_free.html
share/doc/db4/api_c/set_func_fsync.html
share/doc/db4/api_c/set_func_ioinfo.html
share/doc/db4/api_c/set_func_malloc.html
share/doc/db4/api_c/set_func_map.html
share/doc/db4/api_c/set_func_open.html
share/doc/db4/api_c/set_func_read.html
share/doc/db4/api_c/set_func_realloc.html
share/doc/db4/api_c/set_func_rename.html
share/doc/db4/api_c/set_func_seek.html
share/doc/db4/api_c/set_func_sleep.html
share/doc/db4/api_c/set_func_unlink.html
share/doc/db4/api_c/set_func_unmap.html
share/doc/db4/api_c/set_func_write.html
share/doc/db4/api_c/set_func_yield.html
share/doc/db4/api_c/txn_abort.html
share/doc/db4/api_c/txn_begin.html
share/doc/db4/api_c/txn_checkpoint.html
share/doc/db4/api_c/txn_class.html
share/doc/db4/api_c/txn_commit.html
share/doc/db4/api_c/txn_discard.html
share/doc/db4/api_c/txn_id.html
share/doc/db4/api_c/txn_list.html
share/doc/db4/api_c/txn_prepare.html
share/doc/db4/api_c/txn_recover.html
share/doc/db4/api_c/txn_set_timeout.html
share/doc/db4/api_c/txn_stat.html
share/doc/db4/api_cxx/c_index.html
share/doc/db4/api_cxx/cxx_pindex.html
share/doc/db4/api_cxx/db_associate.html
share/doc/db4/api_cxx/db_class.html
share/doc/db4/api_cxx/db_close.html
share/doc/db4/api_cxx/db_cursor.html
share/doc/db4/api_cxx/db_del.html
share/doc/db4/api_cxx/db_err.html
share/doc/db4/api_cxx/db_fd.html
share/doc/db4/api_cxx/db_get.html
share/doc/db4/api_cxx/db_get_byteswapped.html
share/doc/db4/api_cxx/db_get_type.html
share/doc/db4/api_cxx/db_join.html
share/doc/db4/api_cxx/db_key_range.html
share/doc/db4/api_cxx/db_list.html
share/doc/db4/api_cxx/db_open.html
share/doc/db4/api_cxx/db_put.html
share/doc/db4/api_cxx/db_remove.html
share/doc/db4/api_cxx/db_rename.html
share/doc/db4/api_cxx/db_set_alloc.html
share/doc/db4/api_cxx/db_set_append_recno.html
share/doc/db4/api_cxx/db_set_bt_compare.html
share/doc/db4/api_cxx/db_set_bt_minkey.html
share/doc/db4/api_cxx/db_set_bt_prefix.html
share/doc/db4/api_cxx/db_set_cache_priority.html
share/doc/db4/api_cxx/db_set_cachesize.html
share/doc/db4/api_cxx/db_set_dup_compare.html
share/doc/db4/api_cxx/db_set_encrypt.html
share/doc/db4/api_cxx/db_set_errcall.html
share/doc/db4/api_cxx/db_set_errfile.html
share/doc/db4/api_cxx/db_set_error_stream.html
share/doc/db4/api_cxx/db_set_errpfx.html
share/doc/db4/api_cxx/db_set_feedback.html
share/doc/db4/api_cxx/db_set_flags.html
share/doc/db4/api_cxx/db_set_h_ffactor.html
share/doc/db4/api_cxx/db_set_h_hash.html
share/doc/db4/api_cxx/db_set_h_nelem.html
share/doc/db4/api_cxx/db_set_lorder.html
share/doc/db4/api_cxx/db_set_pagesize.html
share/doc/db4/api_cxx/db_set_paniccall.html
share/doc/db4/api_cxx/db_set_q_extentsize.html
share/doc/db4/api_cxx/db_set_re_delim.html
share/doc/db4/api_cxx/db_set_re_len.html
share/doc/db4/api_cxx/db_set_re_pad.html
share/doc/db4/api_cxx/db_set_re_source.html
share/doc/db4/api_cxx/db_stat.html
share/doc/db4/api_cxx/db_sync.html
share/doc/db4/api_cxx/db_truncate.html
share/doc/db4/api_cxx/db_upgrade.html
share/doc/db4/api_cxx/db_verify.html
share/doc/db4/api_cxx/dbc_class.html
share/doc/db4/api_cxx/dbc_close.html
share/doc/db4/api_cxx/dbc_count.html
share/doc/db4/api_cxx/dbc_del.html
share/doc/db4/api_cxx/dbc_dup.html
share/doc/db4/api_cxx/dbc_get.html
share/doc/db4/api_cxx/dbc_list.html
share/doc/db4/api_cxx/dbc_put.html
share/doc/db4/api_cxx/dbt_bulk.html
share/doc/db4/api_cxx/dbt_class.html
share/doc/db4/api_cxx/deadlock_class.html
share/doc/db4/api_cxx/env_class.html
share/doc/db4/api_cxx/env_close.html
share/doc/db4/api_cxx/env_dbremove.html
share/doc/db4/api_cxx/env_dbrename.html
share/doc/db4/api_cxx/env_err.html
share/doc/db4/api_cxx/env_list.html
share/doc/db4/api_cxx/env_open.html
share/doc/db4/api_cxx/env_remove.html
share/doc/db4/api_cxx/env_set_alloc.html
share/doc/db4/api_cxx/env_set_app_dispatch.html
share/doc/db4/api_cxx/env_set_cachesize.html
share/doc/db4/api_cxx/env_set_data_dir.html
share/doc/db4/api_cxx/env_set_encrypt.html
share/doc/db4/api_cxx/env_set_errcall.html
share/doc/db4/api_cxx/env_set_errfile.html
share/doc/db4/api_cxx/env_set_error_stream.html
share/doc/db4/api_cxx/env_set_errpfx.html
share/doc/db4/api_cxx/env_set_feedback.html
share/doc/db4/api_cxx/env_set_flags.html
share/doc/db4/api_cxx/env_set_lg_bsize.html
share/doc/db4/api_cxx/env_set_lg_dir.html
share/doc/db4/api_cxx/env_set_lg_max.html
share/doc/db4/api_cxx/env_set_lg_regionmax.html
share/doc/db4/api_cxx/env_set_lk_conflicts.html
share/doc/db4/api_cxx/env_set_lk_detect.html
share/doc/db4/api_cxx/env_set_lk_max_lockers.html
share/doc/db4/api_cxx/env_set_lk_max_locks.html
share/doc/db4/api_cxx/env_set_lk_max_objects.html
share/doc/db4/api_cxx/env_set_mp_mmapsize.html
share/doc/db4/api_cxx/env_set_paniccall.html
share/doc/db4/api_cxx/env_set_rpc_server.html
share/doc/db4/api_cxx/env_set_shm_key.html
share/doc/db4/api_cxx/env_set_tas_spins.html
share/doc/db4/api_cxx/env_set_timeout.html
share/doc/db4/api_cxx/env_set_tmp_dir.html
share/doc/db4/api_cxx/env_set_tx_max.html
share/doc/db4/api_cxx/env_set_tx_timestamp.html
share/doc/db4/api_cxx/env_set_verbose.html
share/doc/db4/api_cxx/env_strerror.html
share/doc/db4/api_cxx/env_version.html
share/doc/db4/api_cxx/except_class.html
share/doc/db4/api_cxx/lock_class.html
share/doc/db4/api_cxx/lock_detect.html
share/doc/db4/api_cxx/lock_get.html
share/doc/db4/api_cxx/lock_id.html
share/doc/db4/api_cxx/lock_id_free.html
share/doc/db4/api_cxx/lock_list.html
share/doc/db4/api_cxx/lock_put.html
share/doc/db4/api_cxx/lock_stat.html
share/doc/db4/api_cxx/lock_vec.html
share/doc/db4/api_cxx/lockng_class.html
share/doc/db4/api_cxx/log_archive.html
share/doc/db4/api_cxx/log_compare.html
share/doc/db4/api_cxx/log_cursor.html
share/doc/db4/api_cxx/log_file.html
share/doc/db4/api_cxx/log_flush.html
share/doc/db4/api_cxx/log_list.html
share/doc/db4/api_cxx/log_put.html
share/doc/db4/api_cxx/log_stat.html
share/doc/db4/api_cxx/logc_class.html
share/doc/db4/api_cxx/logc_close.html
share/doc/db4/api_cxx/logc_get.html
share/doc/db4/api_cxx/lsn_class.html
share/doc/db4/api_cxx/memp_class.html
share/doc/db4/api_cxx/memp_fclose.html
share/doc/db4/api_cxx/memp_fcreate.html
share/doc/db4/api_cxx/memp_fget.html
share/doc/db4/api_cxx/memp_fopen.html
share/doc/db4/api_cxx/memp_fput.html
share/doc/db4/api_cxx/memp_fset.html
share/doc/db4/api_cxx/memp_fsync.html
share/doc/db4/api_cxx/memp_list.html
share/doc/db4/api_cxx/memp_register.html
share/doc/db4/api_cxx/memp_set_clear_len.html
share/doc/db4/api_cxx/memp_set_fileid.html
share/doc/db4/api_cxx/memp_set_ftype.html
share/doc/db4/api_cxx/memp_set_lsn_offset.html
share/doc/db4/api_cxx/memp_set_pgcookie.html
share/doc/db4/api_cxx/memp_stat.html
share/doc/db4/api_cxx/memp_sync.html
share/doc/db4/api_cxx/memp_trickle.html
share/doc/db4/api_cxx/mempfile_class.html
share/doc/db4/api_cxx/pindex.src
share/doc/db4/api_cxx/rep_elect.html
share/doc/db4/api_cxx/rep_limit.html
share/doc/db4/api_cxx/rep_list.html
share/doc/db4/api_cxx/rep_message.html
share/doc/db4/api_cxx/rep_start.html
share/doc/db4/api_cxx/rep_stat.html
share/doc/db4/api_cxx/rep_transport.html
share/doc/db4/api_cxx/runrec_class.html
share/doc/db4/api_cxx/txn_abort.html
share/doc/db4/api_cxx/txn_begin.html
share/doc/db4/api_cxx/txn_checkpoint.html
share/doc/db4/api_cxx/txn_class.html
share/doc/db4/api_cxx/txn_commit.html
share/doc/db4/api_cxx/txn_discard.html
share/doc/db4/api_cxx/txn_id.html
share/doc/db4/api_cxx/txn_list.html
share/doc/db4/api_cxx/txn_prepare.html
share/doc/db4/api_cxx/txn_recover.html
share/doc/db4/api_cxx/txn_set_timeout.html
share/doc/db4/api_cxx/txn_stat.html
@comment share/doc/db4/api_java/c_index.html
@comment share/doc/db4/api_java/db_associate.html
@comment share/doc/db4/api_java/db_class.html
@comment share/doc/db4/api_java/db_close.html
@comment share/doc/db4/api_java/db_cursor.html
@comment share/doc/db4/api_java/db_del.html
@comment share/doc/db4/api_java/db_err.html
@comment share/doc/db4/api_java/db_fd.html
@comment share/doc/db4/api_java/db_get.html
@comment share/doc/db4/api_java/db_get_byteswapped.html
@comment share/doc/db4/api_java/db_get_type.html
@comment share/doc/db4/api_java/db_join.html
@comment share/doc/db4/api_java/db_key_range.html
@comment share/doc/db4/api_java/db_list.html
@comment share/doc/db4/api_java/db_open.html
@comment share/doc/db4/api_java/db_put.html
@comment share/doc/db4/api_java/db_remove.html
@comment share/doc/db4/api_java/db_rename.html
@comment share/doc/db4/api_java/db_set_append_recno.html
@comment share/doc/db4/api_java/db_set_bt_compare.html
@comment share/doc/db4/api_java/db_set_bt_minkey.html
@comment share/doc/db4/api_java/db_set_bt_prefix.html
@comment share/doc/db4/api_java/db_set_cache_priority.html
@comment share/doc/db4/api_java/db_set_cachesize.html
@comment share/doc/db4/api_java/db_set_dup_compare.html
@comment share/doc/db4/api_java/db_set_encrypt.html
@comment share/doc/db4/api_java/db_set_errcall.html
@comment share/doc/db4/api_java/db_set_error_stream.html
@comment share/doc/db4/api_java/db_set_errpfx.html
@comment share/doc/db4/api_java/db_set_feedback.html
@comment share/doc/db4/api_java/db_set_flags.html
@comment share/doc/db4/api_java/db_set_h_ffactor.html
@comment share/doc/db4/api_java/db_set_h_hash.html
@comment share/doc/db4/api_java/db_set_h_nelem.html
@comment share/doc/db4/api_java/db_set_lorder.html
@comment share/doc/db4/api_java/db_set_pagesize.html
@comment share/doc/db4/api_java/db_set_q_extentsize.html
@comment share/doc/db4/api_java/db_set_re_delim.html
@comment share/doc/db4/api_java/db_set_re_len.html
@comment share/doc/db4/api_java/db_set_re_pad.html
@comment share/doc/db4/api_java/db_set_re_source.html
@comment share/doc/db4/api_java/db_stat.html
@comment share/doc/db4/api_java/db_sync.html
@comment share/doc/db4/api_java/db_truncate.html
@comment share/doc/db4/api_java/db_upgrade.html
@comment share/doc/db4/api_java/db_verify.html
@comment share/doc/db4/api_java/dbc_class.html
@comment share/doc/db4/api_java/dbc_close.html
@comment share/doc/db4/api_java/dbc_count.html
@comment share/doc/db4/api_java/dbc_del.html
@comment share/doc/db4/api_java/dbc_dup.html
@comment share/doc/db4/api_java/dbc_get.html
@comment share/doc/db4/api_java/dbc_list.html
@comment share/doc/db4/api_java/dbc_put.html
@comment share/doc/db4/api_java/dbt_bulk_class.html
@comment share/doc/db4/api_java/dbt_class.html
@comment share/doc/db4/api_java/deadlock_class.html
@comment share/doc/db4/api_java/env_class.html
@comment share/doc/db4/api_java/env_close.html
@comment share/doc/db4/api_java/env_dbremove.html
@comment share/doc/db4/api_java/env_dbrename.html
@comment share/doc/db4/api_java/env_err.html
@comment share/doc/db4/api_java/env_list.html
@comment share/doc/db4/api_java/env_open.html
@comment share/doc/db4/api_java/env_remove.html
@comment share/doc/db4/api_java/env_set_app_dispatch.html
@comment share/doc/db4/api_java/env_set_cachesize.html
@comment share/doc/db4/api_java/env_set_data_dir.html
@comment share/doc/db4/api_java/env_set_encrypt.html
@comment share/doc/db4/api_java/env_set_errcall.html
@comment share/doc/db4/api_java/env_set_error_stream.html
@comment share/doc/db4/api_java/env_set_errpfx.html
@comment share/doc/db4/api_java/env_set_feedback.html
@comment share/doc/db4/api_java/env_set_flags.html
@comment share/doc/db4/api_java/env_set_lg_bsize.html
@comment share/doc/db4/api_java/env_set_lg_dir.html
@comment share/doc/db4/api_java/env_set_lg_max.html
@comment share/doc/db4/api_java/env_set_lg_regionmax.html
@comment share/doc/db4/api_java/env_set_lk_conflicts.html
@comment share/doc/db4/api_java/env_set_lk_detect.html
@comment share/doc/db4/api_java/env_set_lk_max_lockers.html
@comment share/doc/db4/api_java/env_set_lk_max_locks.html
@comment share/doc/db4/api_java/env_set_lk_max_objects.html
@comment share/doc/db4/api_java/env_set_mp_mmapsize.html
@comment share/doc/db4/api_java/env_set_rpc_server.html
@comment share/doc/db4/api_java/env_set_shm_key.html
@comment share/doc/db4/api_java/env_set_tas_spins.html
@comment share/doc/db4/api_java/env_set_timeout.html
@comment share/doc/db4/api_java/env_set_tmp_dir.html
@comment share/doc/db4/api_java/env_set_tx_max.html
@comment share/doc/db4/api_java/env_set_tx_timestamp.html
@comment share/doc/db4/api_java/env_set_verbose.html
@comment share/doc/db4/api_java/env_strerror.html
@comment share/doc/db4/api_java/env_version.html
@comment share/doc/db4/api_java/except_class.html
@comment share/doc/db4/api_java/java_pindex.html
@comment share/doc/db4/api_java/lock_class.html
@comment share/doc/db4/api_java/lock_detect.html
@comment share/doc/db4/api_java/lock_get.html
@comment share/doc/db4/api_java/lock_id.html
@comment share/doc/db4/api_java/lock_id_free.html
@comment share/doc/db4/api_java/lock_list.html
@comment share/doc/db4/api_java/lock_put.html
@comment share/doc/db4/api_java/lock_stat.html
@comment share/doc/db4/api_java/lock_vec.html
@comment share/doc/db4/api_java/lockng_class.html
@comment share/doc/db4/api_java/log_archive.html
@comment share/doc/db4/api_java/log_compare.html
@comment share/doc/db4/api_java/log_cursor.html
@comment share/doc/db4/api_java/log_file.html
@comment share/doc/db4/api_java/log_flush.html
@comment share/doc/db4/api_java/log_list.html
@comment share/doc/db4/api_java/log_put.html
@comment share/doc/db4/api_java/log_stat.html
@comment share/doc/db4/api_java/logc_class.html
@comment share/doc/db4/api_java/logc_close.html
@comment share/doc/db4/api_java/logc_get.html
@comment share/doc/db4/api_java/lsn_class.html
@comment share/doc/db4/api_java/memp_class.html
@comment share/doc/db4/api_java/memp_fclose.html
@comment share/doc/db4/api_java/memp_fopen.html
@comment share/doc/db4/api_java/memp_fsync.html
@comment share/doc/db4/api_java/memp_list.html
@comment share/doc/db4/api_java/memp_register.html
@comment share/doc/db4/api_java/memp_stat.html
@comment share/doc/db4/api_java/memp_sync.html
@comment share/doc/db4/api_java/memp_trickle.html
@comment share/doc/db4/api_java/mempfile_class.html
@comment share/doc/db4/api_java/pindex.src
@comment share/doc/db4/api_java/rep_elect.html
@comment share/doc/db4/api_java/rep_limit.html
@comment share/doc/db4/api_java/rep_list.html
@comment share/doc/db4/api_java/rep_message.html
@comment share/doc/db4/api_java/rep_start.html
@comment share/doc/db4/api_java/rep_stat.html
@comment share/doc/db4/api_java/rep_transport.html
@comment share/doc/db4/api_java/runrec_class.html
@comment share/doc/db4/api_java/txn_abort.html
@comment share/doc/db4/api_java/txn_begin.html
@comment share/doc/db4/api_java/txn_checkpoint.html
@comment share/doc/db4/api_java/txn_class.html
@comment share/doc/db4/api_java/txn_commit.html
@comment share/doc/db4/api_java/txn_discard.html
@comment share/doc/db4/api_java/txn_id.html
@comment share/doc/db4/api_java/txn_list.html
@comment share/doc/db4/api_java/txn_prepare.html
@comment share/doc/db4/api_java/txn_recover.html
@comment share/doc/db4/api_java/txn_set_timeout.html
@comment share/doc/db4/api_java/txn_stat.html
share/doc/db4/images/api.gif
share/doc/db4/images/next.gif
share/doc/db4/images/prev.gif
share/doc/db4/images/ps.gif
share/doc/db4/images/ref.gif
share/doc/db4/images/sleepycat.gif
share/doc/db4/index.html
share/doc/db4/ref/am/close.html
share/doc/db4/ref/am/count.html
share/doc/db4/ref/am/curclose.html
share/doc/db4/ref/am/curdel.html
share/doc/db4/ref/am/curdup.html
share/doc/db4/ref/am/curget.html
share/doc/db4/ref/am/curput.html
share/doc/db4/ref/am/cursor.html
share/doc/db4/ref/am/delete.html
share/doc/db4/ref/am/get.html
share/doc/db4/ref/am/join.html
share/doc/db4/ref/am/open.html
share/doc/db4/ref/am/opensub.html
share/doc/db4/ref/am/ops.html
share/doc/db4/ref/am/put.html
share/doc/db4/ref/am/second.html
share/doc/db4/ref/am/stat.html
share/doc/db4/ref/am/sync.html
share/doc/db4/ref/am/truncate.html
share/doc/db4/ref/am/upgrade.html
share/doc/db4/ref/am/verify.html
share/doc/db4/ref/am_conf/bt_compare.html
share/doc/db4/ref/am_conf/bt_minkey.html
share/doc/db4/ref/am_conf/bt_prefix.html
share/doc/db4/ref/am_conf/bt_recnum.html
share/doc/db4/ref/am_conf/byteorder.html
share/doc/db4/ref/am_conf/cachesize.html
share/doc/db4/ref/am_conf/dup.html
share/doc/db4/ref/am_conf/extentsize.html
share/doc/db4/ref/am_conf/h_ffactor.html
share/doc/db4/ref/am_conf/h_hash.html
share/doc/db4/ref/am_conf/h_nelem.html
share/doc/db4/ref/am_conf/intro.html
share/doc/db4/ref/am_conf/logrec.html
share/doc/db4/ref/am_conf/malloc.html
share/doc/db4/ref/am_conf/pagesize.html
share/doc/db4/ref/am_conf/re_source.html
share/doc/db4/ref/am_conf/recno.html
share/doc/db4/ref/am_conf/renumber.html
share/doc/db4/ref/am_conf/select.html
share/doc/db4/ref/am_misc/align.html
share/doc/db4/ref/am_misc/dbsizes.html
share/doc/db4/ref/am_misc/diskspace.html
share/doc/db4/ref/am_misc/error.html
share/doc/db4/ref/am_misc/faq.html
share/doc/db4/ref/am_misc/get_bulk.html
share/doc/db4/ref/am_misc/partial.html
share/doc/db4/ref/am_misc/perm.html
share/doc/db4/ref/am_misc/stability.html
share/doc/db4/ref/am_misc/struct.html
share/doc/db4/ref/am_misc/tune.html
share/doc/db4/ref/apprec/auto.html
share/doc/db4/ref/apprec/config.html
share/doc/db4/ref/apprec/def.html
share/doc/db4/ref/apprec/intro.html
share/doc/db4/ref/arch/apis.html
share/doc/db4/ref/arch/bigpic.gif
share/doc/db4/ref/arch/bigpic.html
share/doc/db4/ref/arch/progmodel.html
share/doc/db4/ref/arch/script.html
share/doc/db4/ref/arch/smallpic.gif
share/doc/db4/ref/arch/utilities.html
share/doc/db4/ref/build_unix/aix.html
share/doc/db4/ref/build_unix/conf.html
share/doc/db4/ref/build_unix/embedix.html
share/doc/db4/ref/build_unix/flags.html
share/doc/db4/ref/build_unix/freebsd.html
share/doc/db4/ref/build_unix/hpux.html
share/doc/db4/ref/build_unix/install.html
share/doc/db4/ref/build_unix/intro.html
share/doc/db4/ref/build_unix/irix.html
share/doc/db4/ref/build_unix/linux.html
share/doc/db4/ref/build_unix/macosx.html
share/doc/db4/ref/build_unix/notes.html
share/doc/db4/ref/build_unix/osf1.html
share/doc/db4/ref/build_unix/qnx.html
share/doc/db4/ref/build_unix/sco.html
share/doc/db4/ref/build_unix/shlib.html
share/doc/db4/ref/build_unix/solaris.html
share/doc/db4/ref/build_unix/sunos.html
share/doc/db4/ref/build_unix/test.html
share/doc/db4/ref/build_unix/ultrix.html
share/doc/db4/ref/build_vxworks/faq.html
share/doc/db4/ref/build_vxworks/intro.html
share/doc/db4/ref/build_vxworks/introae.html
share/doc/db4/ref/build_vxworks/notes.html
share/doc/db4/ref/build_win/faq.html
share/doc/db4/ref/build_win/intro.html
share/doc/db4/ref/build_win/notes.html
share/doc/db4/ref/build_win/test.html
share/doc/db4/ref/cam/intro.html
share/doc/db4/ref/debug/common.html
share/doc/db4/ref/debug/compile.html
share/doc/db4/ref/debug/intro.html
share/doc/db4/ref/debug/printlog.html
share/doc/db4/ref/debug/runtime.html
share/doc/db4/ref/distrib/layout.html
share/doc/db4/ref/distrib/port.html
share/doc/db4/ref/dumpload/format.html
share/doc/db4/ref/dumpload/text.html
share/doc/db4/ref/dumpload/utility.html
share/doc/db4/ref/env/create.html
share/doc/db4/ref/env/db_config.html
share/doc/db4/ref/env/encrypt.html
share/doc/db4/ref/env/error.html
share/doc/db4/ref/env/faq.html
share/doc/db4/ref/env/intro.html
share/doc/db4/ref/env/naming.html
share/doc/db4/ref/env/open.html
share/doc/db4/ref/env/region.html
share/doc/db4/ref/env/remote.html
share/doc/db4/ref/env/security.html
share/doc/db4/ref/install/file.html
share/doc/db4/ref/install/magic.s5.be.txt
share/doc/db4/ref/install/magic.s5.le.txt
share/doc/db4/ref/install/magic.txt
share/doc/db4/ref/install/multiple.html
share/doc/db4/ref/install/rpm.html
share/doc/db4/ref/intro/data.html
share/doc/db4/ref/intro/dbis.html
share/doc/db4/ref/intro/dbisnot.html
share/doc/db4/ref/intro/distrib.html
share/doc/db4/ref/intro/need.html
share/doc/db4/ref/intro/products.html
share/doc/db4/ref/intro/terrain.html
share/doc/db4/ref/intro/what.html
share/doc/db4/ref/intro/where.html
@comment share/doc/db4/ref/java/compat.html
@comment share/doc/db4/ref/java/conf.html
@comment share/doc/db4/ref/java/faq.html
@comment share/doc/db4/ref/java/program.html
share/doc/db4/ref/lock/am_conv.html
share/doc/db4/ref/lock/cam_conv.html
share/doc/db4/ref/lock/config.html
share/doc/db4/ref/lock/dead.html
share/doc/db4/ref/lock/deaddbg.html
share/doc/db4/ref/lock/intro.html
share/doc/db4/ref/lock/max.html
share/doc/db4/ref/lock/nondb.html
share/doc/db4/ref/lock/notxn.html
share/doc/db4/ref/lock/page.html
share/doc/db4/ref/lock/stdmode.html
share/doc/db4/ref/lock/timeout.html
share/doc/db4/ref/lock/twopl.html
share/doc/db4/ref/log/config.html
share/doc/db4/ref/log/intro.html
share/doc/db4/ref/log/limits.html
share/doc/db4/ref/mp/config.html
share/doc/db4/ref/mp/intro.html
share/doc/db4/ref/perl/intro.html
share/doc/db4/ref/pindex.src
share/doc/db4/ref/program/appsignals.html
share/doc/db4/ref/program/cache.html
share/doc/db4/ref/program/compatible.html
share/doc/db4/ref/program/copy.html
share/doc/db4/ref/program/environ.html
share/doc/db4/ref/program/errorret.html
share/doc/db4/ref/program/faq.html
share/doc/db4/ref/program/mt.html
share/doc/db4/ref/program/namespace.html
share/doc/db4/ref/program/runtime.html
share/doc/db4/ref/program/scope.html
share/doc/db4/ref/program/solaris.txt
share/doc/db4/ref/refs/bdb_usenix.html
share/doc/db4/ref/refs/bdb_usenix.ps
share/doc/db4/ref/refs/embedded.html
share/doc/db4/ref/refs/hash_usenix.ps
share/doc/db4/ref/refs/libtp_usenix.ps
share/doc/db4/ref/refs/refs.html
share/doc/db4/ref/refs/witold.html
share/doc/db4/ref/rep/app.html
share/doc/db4/ref/rep/comm.html
share/doc/db4/ref/rep/elect.html
share/doc/db4/ref/rep/ex.html
share/doc/db4/ref/rep/ex_comm.html
share/doc/db4/ref/rep/ex_rq.html
share/doc/db4/ref/rep/faq.html
share/doc/db4/ref/rep/id.html
share/doc/db4/ref/rep/init.html
share/doc/db4/ref/rep/intro.html
share/doc/db4/ref/rep/logonly.html
share/doc/db4/ref/rep/newsite.html
share/doc/db4/ref/rep/partition.html
share/doc/db4/ref/rep/pri.html
share/doc/db4/ref/rep/trans.html
share/doc/db4/ref/rpc/client.html
share/doc/db4/ref/rpc/faq.html
share/doc/db4/ref/rpc/intro.html
share/doc/db4/ref/rpc/server.html
share/doc/db4/ref/sendmail/intro.html
share/doc/db4/ref/simple_tut/close.html
share/doc/db4/ref/simple_tut/del.html
share/doc/db4/ref/simple_tut/errors.html
share/doc/db4/ref/simple_tut/example.cs
share/doc/db4/ref/simple_tut/get.html
share/doc/db4/ref/simple_tut/handles.html
share/doc/db4/ref/simple_tut/intro.html
share/doc/db4/ref/simple_tut/keydata.html
share/doc/db4/ref/simple_tut/open.html
share/doc/db4/ref/simple_tut/put.html
share/doc/db4/ref/test/faq.html
share/doc/db4/ref/test/run.html
share/doc/db4/ref/transapp/admin.html
share/doc/db4/ref/transapp/app.html
share/doc/db4/ref/transapp/archival.html
share/doc/db4/ref/transapp/atomicity.html
share/doc/db4/ref/transapp/checkpoint.html
share/doc/db4/ref/transapp/cursor.html
share/doc/db4/ref/transapp/data_open.html
share/doc/db4/ref/transapp/deadlock.html
share/doc/db4/ref/transapp/env_open.html
share/doc/db4/ref/transapp/faq.html
share/doc/db4/ref/transapp/filesys.html
share/doc/db4/ref/transapp/hotfail.html
share/doc/db4/ref/transapp/inc.html
share/doc/db4/ref/transapp/intro.html
share/doc/db4/ref/transapp/logfile.html
share/doc/db4/ref/transapp/nested.html
share/doc/db4/ref/transapp/put.html
share/doc/db4/ref/transapp/read.html
share/doc/db4/ref/transapp/reclimit.html
share/doc/db4/ref/transapp/recovery.html
share/doc/db4/ref/transapp/term.html
share/doc/db4/ref/transapp/throughput.html
share/doc/db4/ref/transapp/transapp.cs
share/doc/db4/ref/transapp/tune.html
share/doc/db4/ref/transapp/why.html
share/doc/db4/ref/transapp/writetest.cs
share/doc/db4/ref/txn/config.html
share/doc/db4/ref/txn/intro.html
share/doc/db4/ref/txn/limits.html
share/doc/db4/ref/upgrade.2.0/convert.html
share/doc/db4/ref/upgrade.2.0/disk.html
share/doc/db4/ref/upgrade.2.0/intro.html
share/doc/db4/ref/upgrade.2.0/system.html
share/doc/db4/ref/upgrade.2.0/toc.html
share/doc/db4/ref/upgrade.3.0/close.html
share/doc/db4/ref/upgrade.3.0/cxx.html
share/doc/db4/ref/upgrade.3.0/db.html
share/doc/db4/ref/upgrade.3.0/db_cxx.html
share/doc/db4/ref/upgrade.3.0/dbenv.html
share/doc/db4/ref/upgrade.3.0/dbenv_cxx.html
share/doc/db4/ref/upgrade.3.0/dbinfo.html
share/doc/db4/ref/upgrade.3.0/disk.html
share/doc/db4/ref/upgrade.3.0/eacces.html
share/doc/db4/ref/upgrade.3.0/eagain.html
share/doc/db4/ref/upgrade.3.0/envopen.html
share/doc/db4/ref/upgrade.3.0/func.html
share/doc/db4/ref/upgrade.3.0/intro.html
@comment share/doc/db4/ref/upgrade.3.0/java.html
share/doc/db4/ref/upgrade.3.0/join.html
share/doc/db4/ref/upgrade.3.0/jump_set.html
share/doc/db4/ref/upgrade.3.0/lock_detect.html
share/doc/db4/ref/upgrade.3.0/lock_notheld.html
share/doc/db4/ref/upgrade.3.0/lock_put.html
share/doc/db4/ref/upgrade.3.0/lock_stat.html
share/doc/db4/ref/upgrade.3.0/log_register.html
share/doc/db4/ref/upgrade.3.0/log_stat.html
share/doc/db4/ref/upgrade.3.0/memp_stat.html
share/doc/db4/ref/upgrade.3.0/open.html
share/doc/db4/ref/upgrade.3.0/rmw.html
share/doc/db4/ref/upgrade.3.0/stat.html
share/doc/db4/ref/upgrade.3.0/toc.html
share/doc/db4/ref/upgrade.3.0/txn_begin.html
share/doc/db4/ref/upgrade.3.0/txn_commit.html
share/doc/db4/ref/upgrade.3.0/txn_stat.html
share/doc/db4/ref/upgrade.3.0/value_set.html
share/doc/db4/ref/upgrade.3.0/xa.html
share/doc/db4/ref/upgrade.3.1/btstat.html
share/doc/db4/ref/upgrade.3.1/config.html
share/doc/db4/ref/upgrade.3.1/disk.html
share/doc/db4/ref/upgrade.3.1/dup.html
share/doc/db4/ref/upgrade.3.1/env.html
share/doc/db4/ref/upgrade.3.1/intro.html
share/doc/db4/ref/upgrade.3.1/log_register.html
share/doc/db4/ref/upgrade.3.1/logalloc.html
share/doc/db4/ref/upgrade.3.1/memp_register.html
share/doc/db4/ref/upgrade.3.1/put.html
share/doc/db4/ref/upgrade.3.1/set_feedback.html
share/doc/db4/ref/upgrade.3.1/set_paniccall.html
share/doc/db4/ref/upgrade.3.1/set_tx_recover.html
share/doc/db4/ref/upgrade.3.1/sysmem.html
share/doc/db4/ref/upgrade.3.1/tmp.html
share/doc/db4/ref/upgrade.3.1/toc.html
share/doc/db4/ref/upgrade.3.1/txn_check.html
share/doc/db4/ref/upgrade.3.2/callback.html
share/doc/db4/ref/upgrade.3.2/db_dump.html
share/doc/db4/ref/upgrade.3.2/disk.html
share/doc/db4/ref/upgrade.3.2/handle.html
share/doc/db4/ref/upgrade.3.2/incomplete.html
share/doc/db4/ref/upgrade.3.2/intro.html
share/doc/db4/ref/upgrade.3.2/mutexlock.html
share/doc/db4/ref/upgrade.3.2/notfound.html
share/doc/db4/ref/upgrade.3.2/renumber.html
share/doc/db4/ref/upgrade.3.2/set_flags.html
share/doc/db4/ref/upgrade.3.2/toc.html
share/doc/db4/ref/upgrade.3.2/tx_recover.html
share/doc/db4/ref/upgrade.3.3/alloc.html
share/doc/db4/ref/upgrade.3.3/bigfile.html
share/doc/db4/ref/upgrade.3.3/conflict.html
share/doc/db4/ref/upgrade.3.3/disk.html
share/doc/db4/ref/upgrade.3.3/getswap.html
share/doc/db4/ref/upgrade.3.3/gettype.html
share/doc/db4/ref/upgrade.3.3/intro.html
share/doc/db4/ref/upgrade.3.3/memp_fget.html
share/doc/db4/ref/upgrade.3.3/rpc.html
share/doc/db4/ref/upgrade.3.3/shared.html
share/doc/db4/ref/upgrade.3.3/toc.html
share/doc/db4/ref/upgrade.3.3/txn_prepare.html
share/doc/db4/ref/upgrade.4.0/asr.html
share/doc/db4/ref/upgrade.4.0/cxx.html
share/doc/db4/ref/upgrade.4.0/deadlock.html
share/doc/db4/ref/upgrade.4.0/disk.html
share/doc/db4/ref/upgrade.4.0/env.html
share/doc/db4/ref/upgrade.4.0/intro.html
@comment share/doc/db4/ref/upgrade.4.0/java.html
share/doc/db4/ref/upgrade.4.0/lock.html
share/doc/db4/ref/upgrade.4.0/lock_id_free.html
share/doc/db4/ref/upgrade.4.0/log.html
share/doc/db4/ref/upgrade.4.0/mp.html
share/doc/db4/ref/upgrade.4.0/rpc.html
share/doc/db4/ref/upgrade.4.0/set_lk_max.html
share/doc/db4/ref/upgrade.4.0/toc.html
share/doc/db4/ref/upgrade.4.0/txn.html
share/doc/db4/ref/upgrade.4.1/app_dispatch.html
share/doc/db4/ref/upgrade.4.1/checkpoint.html
share/doc/db4/ref/upgrade.4.1/cxx.html
share/doc/db4/ref/upgrade.4.1/disk.html
share/doc/db4/ref/upgrade.4.1/excl.html
share/doc/db4/ref/upgrade.4.1/fop.html
share/doc/db4/ref/upgrade.4.1/hash_nelem.html
share/doc/db4/ref/upgrade.4.1/incomplete.html
share/doc/db4/ref/upgrade.4.1/intro.html
@comment share/doc/db4/ref/upgrade.4.1/java.html
share/doc/db4/ref/upgrade.4.1/log_register.html
share/doc/db4/ref/upgrade.4.1/log_stat.html
share/doc/db4/ref/upgrade.4.1/memp_sync.html
share/doc/db4/ref/upgrade.4.1/toc.html
share/doc/db4/ref/upgrade/process.html
share/doc/db4/ref/upgrade/version.html
share/doc/db4/ref/xa/build.html
share/doc/db4/ref/xa/faq.html
share/doc/db4/ref/xa/intro.html
share/doc/db4/ref/xa/xa_config.html
share/doc/db4/ref/xa/xa_intro.html
share/doc/db4/reftoc.html
share/doc/db4/sleepycat/contact.html
share/doc/db4/sleepycat/legal.html
share/doc/db4/sleepycat/license.html
share/doc/db4/utility/berkeley_db_svc.html
share/doc/db4/utility/db_archive.html
share/doc/db4/utility/db_checkpoint.html
share/doc/db4/utility/db_deadlock.html
share/doc/db4/utility/db_dump.html
share/doc/db4/utility/db_load.html
share/doc/db4/utility/db_printlog.html
share/doc/db4/utility/db_recover.html
share/doc/db4/utility/db_stat.html
share/doc/db4/utility/db_upgrade.html
share/doc/db4/utility/db_verify.html
share/doc/db4/utility/index.html
share/examples/db4/AccessExample.cpp
share/examples/db4/BtRecExample.cpp
share/examples/db4/EnvExample.cpp
share/examples/db4/LockExample.cpp
share/examples/db4/MpoolExample.cpp
share/examples/db4/TpcbExample.cpp
share/examples/db4/bench_001.c
share/examples/db4/ex_access.c
share/examples/db4/ex_btrec.c
share/examples/db4/ex_dbclient.c
share/examples/db4/ex_env.c
share/examples/db4/ex_lock.c
share/examples/db4/ex_mpool.c
share/examples/db4/ex_thread.c
share/examples/db4/ex_tpcb.c
%%SHARED%%
@dirrm share/examples/db4
@dirrm share/doc/db4/utility
@dirrm share/doc/db4/sleepycat
@dirrm share/doc/db4/ref/xa
@dirrm share/doc/db4/ref/upgrade.4.1
@dirrm share/doc/db4/ref/upgrade.4.0
@dirrm share/doc/db4/ref/upgrade.3.3
@dirrm share/doc/db4/ref/upgrade.3.2
@dirrm share/doc/db4/ref/upgrade.3.1
@dirrm share/doc/db4/ref/upgrade.3.0
@dirrm share/doc/db4/ref/upgrade.2.0
@dirrm share/doc/db4/ref/upgrade
@dirrm share/doc/db4/ref/txn
@dirrm share/doc/db4/ref/transapp
@dirrm share/doc/db4/ref/test
@dirrm share/doc/db4/ref/simple_tut
@dirrm share/doc/db4/ref/sendmail
@dirrm share/doc/db4/ref/rpc
@dirrm share/doc/db4/ref/rep
@dirrm share/doc/db4/ref/refs
@dirrm share/doc/db4/ref/program
@dirrm share/doc/db4/ref/perl
@dirrm share/doc/db4/ref/mp
@dirrm share/doc/db4/ref/log
@dirrm share/doc/db4/ref/lock
@comment @dirrm share/doc/db4/ref/java
@dirrm share/doc/db4/ref/intro
@dirrm share/doc/db4/ref/install
@dirrm share/doc/db4/ref/env
@dirrm share/doc/db4/ref/dumpload
@dirrm share/doc/db4/ref/distrib
@dirrm share/doc/db4/ref/debug
@dirrm share/doc/db4/ref/cam
@dirrm share/doc/db4/ref/build_win
@dirrm share/doc/db4/ref/build_vxworks
@dirrm share/doc/db4/ref/build_unix
@dirrm share/doc/db4/ref/arch
@dirrm share/doc/db4/ref/apprec
@dirrm share/doc/db4/ref/am_misc
@dirrm share/doc/db4/ref/am_conf
@dirrm share/doc/db4/ref/am
@dirrm share/doc/db4/ref
@dirrm share/doc/db4/images
@comment @dirrm share/doc/db4/api_java
@dirrm share/doc/db4/api_cxx
@dirrm share/doc/db4/api_c
@dirrm share/doc/db4
@dirrm lib/db4
@dirrm include/db4