Skip site navigation (1)Skip section navigation (2)
Date:      7 Feb 1999 11:16:53 -0000
From:      kkenn@rebel.net.au
To:        FreeBSD-gnats-submit@FreeBSD.ORG
Subject:   ports/9943: Upgrade databases/db to 2.6.4
Message-ID:  <19990207111653.29536.qmail@morden.rebel.net.au>

next in thread | raw e-mail | index | archive | help

>Number:         9943
>Category:       ports
>Synopsis:       Upgrade databases/db to 2.6.4
>Confidential:   no
>Severity:       non-critical
>Priority:       medium
>Responsible:    freebsd-ports
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Sun Feb  7 03:20:02 PST 1999
>Closed-Date:
>Last-Modified:
>Originator:     Kris Kennaway
>Release:        FreeBSD-2.0
>Organization:
FreeBSD
>Environment:
4.0-CURRENT
>Description:
This upgrades the databases/db port to v2.6.4, the current 'stable' release of
the Berkeley DB software.

It seems to require the DES encryption code to be compiled in libc.so:

/usr/lib/libc.so: warning: this program uses gets(), which is unsafe.
/usr/lib/libc.so: WARNING!  setkey(3) not present in the system!
/usr/lib/libc.so: WARNING!  des_setkey(3) not present in the system!
/usr/lib/libc.so: WARNING!  encrypt(3) not present in the system!
/usr/lib/libc.so: WARNING!  des_cipher(3) not present in the system!
/usr/lib/libc.so: warning: this program uses f_prealloc(), which is stupid.

Since I don't use the software, I don't know what impact this has on the
run-time performance. Note that the package previously had a warning about
libc as well, so I assume this has been the case for some time now.

>How-To-Repeat:
>Fix:
diff -ruN db/Makefile db~/Makefile
--- db/Makefile	Wed Jan 13 23:41:38 1999
+++ db~/Makefile	Sun Feb  7 21:40:45 1999
@@ -1,47 +1,74 @@
 # ports collection makefile for:	Berkeley DB
-# Version required:			v2.3.16
+# Version required:			v2.6.4
 # Date created:				26 Jan 1998
 # Whom:					Josh Tiefenbach <josh@ican.net>
 #
 # $Id: Makefile,v 1.8 1999/01/13 02:47:29 scrappy Exp $
 #
 
-DISTNAME=	db-2.3.16
+DISTNAME=	db-2.6.4
 CATEGORIES=	databases
-MASTER_SITES=	http://www.sleepycat.com/db/packages/
+MASTER_SITES=	ftp://ftp.terran.net/pub/sleepycat/ \
+		ftp://ftp.kddlabs.co.jp/.1/Sun/sunsite.unc.edu/freeware/SOURCES/ \
+		ftp://ftp.aarnet.edu.au/disks/.23/sunfreeware/SOURCES/ \
+		ftp://sunsite.doc.ic.ac.uk/Mirrors/nce.sun.ca/pub/freeware/SOURCES/ \
+		ftp://ftp.tisip.no/disk3/xemacs/aux/
 
-MAINTAINER=	josh@ican.net
+MAINTAINER=	kkennawa@physics.adelaide.edu.au
 
 Y2K=		http://www.sleepycat.com/faq.html#A8
 
-MANUAL_PACKAGE_BUILD=	incompatible with libc version
-WRKSRC=		${WRKDIR}/${DISTNAME}/build.unix
+MANUAL_PACKAGE_BUILD=	Seems to depend on DES encryption routines in libc - may not work without the crypto sources installed
+WRKSRC=		${WRKDIR}/${DISTNAME}/build_unix
 
-GNU_CONFIGURE=	YES
+GNU_CONFIGURE=		YES
 CONFIGURE_SCRIPT=	../dist/configure
 CONFIGURE_ARGS=		--enable-compat185 \
 			--enable-dump185 --enable-cxx
 
-MAN1=	db_archive.1 db_checkpoint.1 db_deadlock.1 db_dump.1 db_load.1 \
-	db_recover.1 db_stat.1
-MAN3=	db_appinit.3 db_cursor.3 db_dbm.3 db_hsearch.3 db_intro.3 db_lock.3 \
-	db_log.3 db_mpool.3 db_open.3 db_txn.3 \
-	Db.3 DbEnv.3 DbException.3 DbInfo.3 DbLock.3 DbLockTab.3 DbLog.3 \
-	DbLsn.3 DbMpool.3 DbMpoolFile.3 DbTxn.3 DbTxnMgr.3 Dbc.3 Dbt.3
+EXAMPLE_C=	README ex_access.c ex_appinit.c ex_btrec.c ex_lock.c \
+		ex_mpool.c ex_tpcb.h ex_thread.c ex_tpcb.c
 
-post-install:
-	${MKDIR} ${PREFIX}/share/doc/db
-.for doc in hash.usenix.ps libtp.usenix.ps
-	${INSTALL_DATA} ${WRKSRC}/../documents/${doc} ${PREFIX}/share/doc/db
-	gzip -9 ${PREFIX}/share/doc/db/${doc}
+EXAMPLE_CXX=	AccessExample.cpp AppinitExample.cpp LockExample.cpp \
+		MpoolExample.cpp TpcbExample.cpp
+
+BINFILES=	db_dump185 db_recover db_printlog db_load db_dump \
+		db_deadlock db_checkpoint db_archive db_stat
+
+INCFILES=	db_cxx.h db_185.h db.h
+
+LIBFILES=	libdb.a
+
+do-install:
+.for bin in ${BINFILES}
+	${INSTALL_PROGRAM} ${WRKSRC}/${bin} ${PREFIX}/bin/
+.endfor
+
+.for inc in ${INCFILES}
+	${INSTALL_DATA} ${WRKSRC}/../include/${inc} ${PREFIX}/include/
+.endfor
+
+.for lib in ${LIBFILES}
+	${INSTALL_DATA} ${WRKSRC}/${lib} ${PREFIX}/lib/
 .endfor
+
 	${MKDIR} ${PREFIX}/share/examples/db
-.for example in README ex_access.c ex_appinit.c ex_btrec.c ex_lock.c ex_mpool.c ex_tpcb.c ex_tpcb.h
+.for example in ${EXAMPLE_C}
 	${INSTALL_DATA} ${WRKSRC}/../examples/${example} ${PREFIX}/share/examples/db
 .endfor
-.for example in AccessExample.cpp AppinitExample.cpp LockExample.cpp MpoolExample.cpp TpcbExample.cpp
+
+.for example in ${EXAMPLE_CXX}
 	${INSTALL_DATA} ${WRKSRC}/../examples_cxx/${example} ${PREFIX}/share/examples/db
 .endfor
+
+.if !defined(NOPORTDOCS)
+	${MKDIR} ${PREFIX}/share/doc/db
+	${CP} -rp ${WRKSRC}/../docs/ ${PREFIX}/share/doc/db
+.for doc in hash_usenix.ps libtp_usenix.ps
+	${GZIP_CMD} ${PREFIX}/share/doc/db/packages/${doc}
+.endfor
+.endif
+
 	@echo ""
 	@echo "Java support for ${PKGNAME} is *not* built by default, and requires that you"
 	@echo "have a working copy of the JDK (v1.1) installed."
@@ -51,5 +78,10 @@
 	@echo "${WRKDIR}/${DISTNAME}/java/README"
 	@echo ""
 	@echo "and follow the directions therein."
+	@echo ""
+	@echo "=============================================================="
+	@echo "This port seems to depend on DES encryption routines in libc."
+	@echo "It may not work properly without the crypto sources installed."
+	@echo "=============================================================="
 
 .include <bsd.port.mk>
diff -ruN db/files/md5 db~/files/md5
--- db/files/md5	Tue Jan 27 13:26:31 1998
+++ db~/files/md5	Sun Feb  7 20:09:15 1999
@@ -1 +1 @@
-MD5 (db-2.3.16.tar.gz) = 7d13cbcc3912d6e5b2b953063ade4894
+MD5 (db-2.6.4.tar.gz) = 485b91df2b39d019c4eb9e42fc631750
diff -ruN db/pkg/COMMENT db~/pkg/COMMENT
--- db/pkg/COMMENT	Sun Aug  3 12:25:10 1997
+++ db~/pkg/COMMENT	Sun Feb  7 20:40:09 1999
@@ -1 +1 @@
-the Berkeley DB package, revision 2
+The Berkeley DB package, revision 2.
diff -ruN db/pkg/DESCR db~/pkg/DESCR
--- db/pkg/DESCR	Wed Nov 12 21:43:42 1997
+++ db~/pkg/DESCR	Sun Feb  7 20:39:48 1999
@@ -1,13 +1,7 @@
-Revesion 2 of the Berkeley DB library. This version uses an incompatible
-underlying database format than revision 1 and a different standard API.
+Revision 2 of the Berkeley DB library. This version uses an incompatible
+underlying database format to Revision 1 and a different standard API.
 Utilities are included in the distribution to convert v1.85 databases to v2
 databases, and a backwards compatible API is provided to maintain
 compatibility with programs using the v1.85 interface.
 
-There are minor interface changes in this release which may require that DB
-applications be modified and recompiled. For a complete discussion of
-interface changes, see:
-
-http://www.sleepycat.com/update/
-  
 For more information, refer to http://www.sleepycat.com
diff -ruN db/pkg/PLIST db~/pkg/PLIST
--- db/pkg/PLIST	Mon Aug 17 21:34:06 1998
+++ db~/pkg/PLIST	Sun Feb  7 21:21:40 1999
@@ -1,57 +1,551 @@
-include/db.h
 include/db_cxx.h
 include/db_185.h
+include/db.h
 lib/libdb.a
-bin/db_archive
-bin/db_checkpoint
-bin/db_deadlock
-bin/db_dump
-bin/db_load
+bin/db_dump185
 bin/db_recover
+bin/db_printlog
+bin/db_load
+bin/db_dump
+bin/db_deadlock
+bin/db_checkpoint
+bin/db_archive
 bin/db_stat
-bin/db_dump185
-man/cat3/db_appinit.0
-man/cat3/db_cursor.0
-man/cat3/db_dbm.0
-man/cat3/db_hsearch.0
-man/cat3/db_intro.0
-man/cat3/db_lock.0
-man/cat3/db_log.0
-man/cat3/db_mpool.0
-man/cat3/db_open.0
-man/cat3/db_txn.0
-man/cat3/Db.0
-man/cat3/DbEnv.0
-man/cat3/DbException.0
-man/cat3/DbInfo.0
-man/cat3/DbLock.0
-man/cat3/DbLockTab.0
-man/cat3/DbLog.0
-man/cat3/DbLsn.0
-man/cat3/DbMpool.0
-man/cat3/DbMpoolFile.0
-man/cat3/DbTxn.0
-man/cat3/DbTxnMgr.0
-man/cat3/Dbc.0
-man/cat3/Dbt.0
-man/cat1/db_archive.0
-man/cat1/db_checkpoint.0
-man/cat1/db_deadlock.0
-man/cat1/db_dump.0
-man/cat1/db_load.0
-man/cat1/db_recover.0
-man/cat1/db_stat.0
-share/doc/db/hash.usenix.ps.gz
-share/doc/db/libtp.usenix.ps.gz
+share/examples/db/README
 share/examples/db/ex_access.c
 share/examples/db/ex_appinit.c
 share/examples/db/ex_btrec.c
 share/examples/db/ex_lock.c
 share/examples/db/ex_mpool.c
-share/examples/db/ex_tpcb.c
 share/examples/db/ex_tpcb.h
+share/examples/db/ex_thread.c
+share/examples/db/ex_tpcb.c
 share/examples/db/AccessExample.cpp
 share/examples/db/AppinitExample.cpp
 share/examples/db/LockExample.cpp
 share/examples/db/MpoolExample.cpp
 share/examples/db/TpcbExample.cpp
+share/doc/db/api_c/DbTxn/abort.html
+share/doc/db/api_c/DbTxn/commit.html
+share/doc/db/api_c/DbTxn/id.html
+share/doc/db/api_c/DbTxn/prepare.html
+share/doc/db/api_c/DbEnv/appexit.html
+share/doc/db/api_c/DbEnv/appinit.html
+share/doc/db/api_c/DbEnv/env.html
+share/doc/db/api_c/DbEnv/version.html
+share/doc/db/api_c/DbInfo/info.html
+share/doc/db/api_c/DbLock/put.html
+share/doc/db/api_c/DbLockTab/vec.html
+share/doc/db/api_c/DbLockTab/detect.html
+share/doc/db/api_c/DbLockTab/get.html
+share/doc/db/api_c/DbLockTab/id.html
+share/doc/db/api_c/DbLockTab/open.html
+share/doc/db/api_c/DbLockTab/stat.html
+share/doc/db/api_c/DbLockTab/unlink.html
+share/doc/db/api_c/DbLockTab/close.html
+share/doc/db/api_c/DbLog/unlink.html
+share/doc/db/api_c/DbLog/close.html
+share/doc/db/api_c/DbLog/compare.html
+share/doc/db/api_c/DbLog/db_register.html
+share/doc/db/api_c/DbLog/db_unregister.html
+share/doc/db/api_c/DbLog/file.html
+share/doc/db/api_c/DbLog/flush.html
+share/doc/db/api_c/DbLog/get.html
+share/doc/db/api_c/DbLog/lsn.html
+share/doc/db/api_c/DbLog/open.html
+share/doc/db/api_c/DbLog/put.html
+share/doc/db/api_c/DbLog/stat.html
+share/doc/db/api_c/DbLog/archive.html
+share/doc/db/api_c/DbMpool/stat.html
+share/doc/db/api_c/DbMpool/db_register.html
+share/doc/db/api_c/DbMpool/open.html
+share/doc/db/api_c/DbMpool/close.html
+share/doc/db/api_c/DbMpool/sync.html
+share/doc/db/api_c/DbMpool/trickle.html
+share/doc/db/api_c/DbMpool/unlink.html
+share/doc/db/api_c/DbMpoolFile/close.html
+share/doc/db/api_c/DbMpoolFile/get.html
+share/doc/db/api_c/DbMpoolFile/open.html
+share/doc/db/api_c/DbMpoolFile/put.html
+share/doc/db/api_c/DbMpoolFile/set.html
+share/doc/db/api_c/DbMpoolFile/sync.html
+share/doc/db/api_c/Db/sync.html
+share/doc/db/api_c/Db/cursor.html
+share/doc/db/api_c/Db/join.html
+share/doc/db/api_c/Db/del.html
+share/doc/db/api_c/Db/fd.html
+share/doc/db/api_c/Db/get.html
+share/doc/db/api_c/Db/open.html
+share/doc/db/api_c/Db/put.html
+share/doc/db/api_c/Db/stat.html
+share/doc/db/api_c/Db/close.html
+share/doc/db/api_c/DbTxnMgr/begin.html
+share/doc/db/api_c/DbTxnMgr/checkpoint.html
+share/doc/db/api_c/DbTxnMgr/close.html
+share/doc/db/api_c/DbTxnMgr/open.html
+share/doc/db/api_c/DbTxnMgr/stat.html
+share/doc/db/api_c/DbTxnMgr/unlink.html
+share/doc/db/api_c/Dbc/close.html
+share/doc/db/api_c/Dbc/del.html
+share/doc/db/api_c/Dbc/get.html
+share/doc/db/api_c/Dbc/put.html
+share/doc/db/api_c/Dbt/dbt.html
+share/doc/db/api_c/historic/dbm.html
+share/doc/db/api_c/historic/hsearch.html
+share/doc/db/api_c/index/flags.html
+share/doc/db/api_c/index/function.html
+share/doc/db/api_c/index/structure.html
+share/doc/db/api_c/internal/db_jump_set.html
+share/doc/db/api_c/internal/db_value_set.html
+share/doc/db/test/build.html
+share/doc/db/test/build_faq.html
+share/doc/db/test/run.html
+share/doc/db/test/debug.html
+share/doc/db/sleepycat/contact.html
+share/doc/db/sleepycat/products.html
+share/doc/db/ref/txn/limits.html
+share/doc/db/ref/txn/other.html
+share/doc/db/ref/txn/stability.html
+share/doc/db/ref/am/sync.html
+share/doc/db/ref/am/bt_dup.html
+share/doc/db/ref/am/bt_maxkey.html
+share/doc/db/ref/am/bt_minkey.html
+share/doc/db/ref/am/bt_prefix.html
+share/doc/db/ref/am/bt_recnum.html
+share/doc/db/ref/am/byteorder.html
+share/doc/db/ref/am/cachesize.html
+share/doc/db/ref/am/close.html
+share/doc/db/ref/am/compare.html
+share/doc/db/ref/am/curclose.html
+share/doc/db/ref/am/curdel.html
+share/doc/db/ref/am/curget.html
+share/doc/db/ref/am/curput.html
+share/doc/db/ref/am/cursor.html
+share/doc/db/ref/am/delete.html
+share/doc/db/ref/am/get.html
+share/doc/db/ref/am/h_dup.html
+share/doc/db/ref/am/h_ffactor.html
+share/doc/db/ref/am/h_hash.html
+share/doc/db/ref/am/h_nelem.html
+share/doc/db/ref/am/intro.html
+share/doc/db/ref/am/join.html
+share/doc/db/ref/am/logrec.html
+share/doc/db/ref/am/malloc.html
+share/doc/db/ref/am/ops.html
+share/doc/db/ref/am/pagesize.html
+share/doc/db/ref/am/partial.html
+share/doc/db/ref/am/put.html
+share/doc/db/ref/am/re_delim.html
+share/doc/db/ref/am/re_len.html
+share/doc/db/ref/am/re_pad.html
+share/doc/db/ref/am/re_source.html
+share/doc/db/ref/am/renumber.html
+share/doc/db/ref/am/select.html
+share/doc/db/ref/am/stat.html
+share/doc/db/ref/am/bt_compare.html
+share/doc/db/ref/arch/smallpic.gif
+share/doc/db/ref/arch/bigpic.html
+share/doc/db/ref/arch/env.html
+share/doc/db/ref/arch/extending.html
+share/doc/db/ref/arch/progmodel.html
+share/doc/db/ref/arch/script.html
+share/doc/db/ref/arch/subsystem.html
+share/doc/db/ref/arch/utilities.html
+share/doc/db/ref/arch/bigpic.gif
+share/doc/db/ref/arch/apis.html
+share/doc/db/ref/cam/intro.html
+share/doc/db/ref/debug/runtime.html
+share/doc/db/ref/dumpload/format.html
+share/doc/db/ref/dumpload/text.html
+share/doc/db/ref/dumpload/utility.html
+share/doc/db/ref/env/create.html
+share/doc/db/ref/env/naming.html
+share/doc/db/ref/env/open.html
+share/doc/db/ref/env/region.html
+share/doc/db/ref/env/security.html
+share/doc/db/ref/intro/distrib.html
+share/doc/db/ref/intro/do.html
+share/doc/db/ref/intro/what.html
+share/doc/db/ref/intro/where.html
+share/doc/db/ref/install/file.html
+share/doc/db/ref/install/magic.txt
+share/doc/db/ref/install/magic.s5.be.txt
+share/doc/db/ref/install/magic.s5.le.txt
+share/doc/db/ref/lock/stdmode.html
+share/doc/db/ref/log/limits.html
+share/doc/db/ref/mp/intro.html
+share/doc/db/ref/mp/config.html
+share/doc/db/ref/perl/intro.html
+share/doc/db/ref/program/solaris.txt
+share/doc/db/ref/program/byteorder.html
+share/doc/db/ref/program/compatible.html
+share/doc/db/ref/program/convert.html
+share/doc/db/ref/program/dbsizes.html
+share/doc/db/ref/program/environ.html
+share/doc/db/ref/program/errorret.html
+share/doc/db/ref/program/java.html
+share/doc/db/ref/program/runtime.html
+share/doc/db/ref/program/thread.html
+share/doc/db/ref/program/version.html
+share/doc/db/ref/program/appsignals.html
+share/doc/db/ref/sendmail/intro.html
+share/doc/db/ref/simple_tut/example.txt
+share/doc/db/ref/simple_tut/del.html
+share/doc/db/ref/simple_tut/errors.html
+share/doc/db/ref/simple_tut/get.html
+share/doc/db/ref/simple_tut/intro.html
+share/doc/db/ref/simple_tut/keydata.html
+share/doc/db/ref/simple_tut/open.html
+share/doc/db/ref/simple_tut/put.html
+share/doc/db/ref/simple_tut/close.html
+share/doc/db/ref/transapp/writetest.txt
+share/doc/db/ref/transapp/apps.html
+share/doc/db/ref/transapp/archival.html
+share/doc/db/ref/transapp/checkpoint.html
+share/doc/db/ref/transapp/deadlock.html
+share/doc/db/ref/transapp/filesys.html
+share/doc/db/ref/transapp/intro.html
+share/doc/db/ref/transapp/throughput.html
+share/doc/db/ref/transapp/recovery.html
+share/doc/db/ref/transapp/admin.html
+share/doc/db/ref/toc.html
+share/doc/db/packages/witold.html
+share/doc/db/packages/hash_usenix.ps.gz
+share/doc/db/packages/index.html
+share/doc/db/packages/libtp_usenix.ps.gz
+share/doc/db/api_cxx/DbLsn/class.html
+share/doc/db/api_cxx/Dbc/class.html
+share/doc/db/api_cxx/Dbc/close.html
+share/doc/db/api_cxx/Dbc/del.html
+share/doc/db/api_cxx/Dbc/get.html
+share/doc/db/api_cxx/Dbc/put.html
+share/doc/db/api_cxx/DbEnv/version.html
+share/doc/db/api_cxx/DbEnv/appinit.html
+share/doc/db/api_cxx/DbEnv/class.html
+share/doc/db/api_cxx/DbEnv/get_lg_info.html
+share/doc/db/api_cxx/DbEnv/get_lk_info.html
+share/doc/db/api_cxx/DbEnv/get_mp_info.html
+share/doc/db/api_cxx/DbEnv/get_tx_info.html
+share/doc/db/api_cxx/DbEnv/set_errcall.html
+share/doc/db/api_cxx/DbEnv/set_errfile.html
+share/doc/db/api_cxx/DbEnv/set_error_model.html
+share/doc/db/api_cxx/DbEnv/set_error_stream.html
+share/doc/db/api_cxx/DbEnv/set_errpfx.html
+share/doc/db/api_cxx/DbEnv/set_lg_max.html
+share/doc/db/api_cxx/DbEnv/set_lk_conflicts.html
+share/doc/db/api_cxx/DbEnv/set_lk_detect.html
+share/doc/db/api_cxx/DbEnv/set_lk_max.html
+share/doc/db/api_cxx/DbEnv/set_lk_modes.html
+share/doc/db/api_cxx/DbEnv/set_lorder.html
+share/doc/db/api_cxx/DbEnv/set_mp_mmapsize.html
+share/doc/db/api_cxx/DbEnv/set_mp_size.html
+share/doc/db/api_cxx/DbEnv/set_tx_max.html
+share/doc/db/api_cxx/DbEnv/set_tx_recover.html
+share/doc/db/api_cxx/DbEnv/set_verbose.html
+share/doc/db/api_cxx/DbEnv/appexit.html
+share/doc/db/api_cxx/DbException/class.html
+share/doc/db/api_cxx/DbException/get_errno.html
+share/doc/db/api_cxx/DbException/what.html
+share/doc/db/api_cxx/DbInfo/set_re_source.html
+share/doc/db/api_cxx/DbInfo/set_bt_compare.html
+share/doc/db/api_cxx/DbInfo/set_bt_maxkey.html
+share/doc/db/api_cxx/DbInfo/set_bt_minkey.html
+share/doc/db/api_cxx/DbInfo/set_bt_prefix.html
+share/doc/db/api_cxx/DbInfo/set_cachesize.html
+share/doc/db/api_cxx/DbInfo/set_compare.html
+share/doc/db/api_cxx/DbInfo/set_flags.html
+share/doc/db/api_cxx/DbInfo/set_h_ffactor.html
+share/doc/db/api_cxx/DbInfo/set_h_hash.html
+share/doc/db/api_cxx/DbInfo/set_h_nelem.html
+share/doc/db/api_cxx/DbInfo/set_lorder.html
+share/doc/db/api_cxx/DbInfo/set_malloc.html
+share/doc/db/api_cxx/DbInfo/set_pagesize.html
+share/doc/db/api_cxx/DbInfo/set_re_delim.html
+share/doc/db/api_cxx/DbInfo/set_re_len.html
+share/doc/db/api_cxx/DbInfo/set_re_pad.html
+share/doc/db/api_cxx/DbInfo/class.html
+share/doc/db/api_cxx/DbLock/class.html
+share/doc/db/api_cxx/DbLock/put.html
+share/doc/db/api_cxx/DbLockTab/vec.html
+share/doc/db/api_cxx/DbLockTab/close.html
+share/doc/db/api_cxx/DbLockTab/detect.html
+share/doc/db/api_cxx/DbLockTab/get.html
+share/doc/db/api_cxx/DbLockTab/id.html
+share/doc/db/api_cxx/DbLockTab/open.html
+share/doc/db/api_cxx/DbLockTab/stat.html
+share/doc/db/api_cxx/DbLockTab/unlink.html
+share/doc/db/api_cxx/DbLockTab/class.html
+share/doc/db/api_cxx/DbLog/unlink.html
+share/doc/db/api_cxx/DbLog/class.html
+share/doc/db/api_cxx/DbLog/close.html
+share/doc/db/api_cxx/DbLog/compare.html
+share/doc/db/api_cxx/DbLog/db_register.html
+share/doc/db/api_cxx/DbLog/db_unregister.html
+share/doc/db/api_cxx/DbLog/file.html
+share/doc/db/api_cxx/DbLog/flush.html
+share/doc/db/api_cxx/DbLog/get.html
+share/doc/db/api_cxx/DbLog/open.html
+share/doc/db/api_cxx/DbLog/put.html
+share/doc/db/api_cxx/DbLog/stat.html
+share/doc/db/api_cxx/DbLog/archive.html
+share/doc/db/api_cxx/Db/sync.html
+share/doc/db/api_cxx/Db/close.html
+share/doc/db/api_cxx/Db/cursor.html
+share/doc/db/api_cxx/Db/del.html
+share/doc/db/api_cxx/Db/fd.html
+share/doc/db/api_cxx/Db/get.html
+share/doc/db/api_cxx/Db/get_byteswapped.html
+share/doc/db/api_cxx/Db/get_type.html
+share/doc/db/api_cxx/Db/join.html
+share/doc/db/api_cxx/Db/open.html
+share/doc/db/api_cxx/Db/put.html
+share/doc/db/api_cxx/Db/stat.html
+share/doc/db/api_cxx/Db/class.html
+share/doc/db/api_cxx/DbMpool/unlink.html
+share/doc/db/api_cxx/DbMpool/close.html
+share/doc/db/api_cxx/DbMpool/db_register.html
+share/doc/db/api_cxx/DbMpool/open.html
+share/doc/db/api_cxx/DbMpool/stat.html
+share/doc/db/api_cxx/DbMpool/sync.html
+share/doc/db/api_cxx/DbMpool/trickle.html
+share/doc/db/api_cxx/DbMpool/class.html
+share/doc/db/api_cxx/DbMpoolFile/open.html
+share/doc/db/api_cxx/DbMpoolFile/close.html
+share/doc/db/api_cxx/DbMpoolFile/get.html
+share/doc/db/api_cxx/DbMpoolFile/class.html
+share/doc/db/api_cxx/DbMpoolFile/put.html
+share/doc/db/api_cxx/DbMpoolFile/set.html
+share/doc/db/api_cxx/DbMpoolFile/sync.html
+share/doc/db/api_cxx/DbTxn/abort.html
+share/doc/db/api_cxx/DbTxn/class.html
+share/doc/db/api_cxx/DbTxn/commit.html
+share/doc/db/api_cxx/DbTxn/id.html
+share/doc/db/api_cxx/DbTxn/prepare.html
+share/doc/db/api_cxx/DbTxnMgr/close.html
+share/doc/db/api_cxx/DbTxnMgr/checkpoint.html
+share/doc/db/api_cxx/DbTxnMgr/class.html
+share/doc/db/api_cxx/DbTxnMgr/begin.html
+share/doc/db/api_cxx/DbTxnMgr/open.html
+share/doc/db/api_cxx/DbTxnMgr/stat.html
+share/doc/db/api_cxx/DbTxnMgr/unlink.html
+share/doc/db/api_cxx/Dbt/class.html
+share/doc/db/api_cxx/index/class.html
+share/doc/db/utility/index.html
+share/doc/db/utility/db_checkpoint.html
+share/doc/db/utility/db_deadlock.html
+share/doc/db/utility/db_dump.html
+share/doc/db/utility/db_load.html
+share/doc/db/utility/db_recover.html
+share/doc/db/utility/db_stat.html
+share/doc/db/utility/db_archive.html
+share/doc/db/distrib/layout.html
+share/doc/db/build/unix.html
+share/doc/db/build/win_faq.html
+share/doc/db/build/win16.html
+share/doc/db/build/win32.html
+share/doc/db/build/shared.html
+share/doc/db/build/shared_gcc.html
+share/doc/db/build/shared_hp.html
+share/doc/db/build/java.html
+share/doc/db/build/unix_faq.html
+share/doc/db/api_java/DbMpool/unlink.html
+share/doc/db/api_java/DbMpool/close.html
+share/doc/db/api_java/DbMpool/db_register.html
+share/doc/db/api_java/DbMpool/open.html
+share/doc/db/api_java/DbMpool/stat.html
+share/doc/db/api_java/DbMpool/sync.html
+share/doc/db/api_java/DbMpool/trickle.html
+share/doc/db/api_java/DbMpool/class.html
+share/doc/db/api_java/DbEnv/version.html
+share/doc/db/api_java/DbEnv/appinit.html
+share/doc/db/api_java/DbEnv/class.html
+share/doc/db/api_java/DbEnv/get_lg_info.html
+share/doc/db/api_java/DbEnv/get_lk_info.html
+share/doc/db/api_java/DbEnv/get_mp_info.html
+share/doc/db/api_java/DbEnv/get_tx_info.html
+share/doc/db/api_java/DbEnv/set_errcall.html
+share/doc/db/api_java/DbEnv/set_error_stream.html
+share/doc/db/api_java/DbEnv/set_errpfx.html
+share/doc/db/api_java/DbEnv/set_lg_max.html
+share/doc/db/api_java/DbEnv/set_lk_conflicts.html
+share/doc/db/api_java/DbEnv/set_lk_detect.html
+share/doc/db/api_java/DbEnv/set_lk_max.html
+share/doc/db/api_java/DbEnv/set_lk_modes.html
+share/doc/db/api_java/DbEnv/set_lorder.html
+share/doc/db/api_java/DbEnv/set_mp_mmapsize.html
+share/doc/db/api_java/DbEnv/set_mp_size.html
+share/doc/db/api_java/DbEnv/set_tx_max.html
+share/doc/db/api_java/DbEnv/set_verbose.html
+share/doc/db/api_java/DbEnv/appexit.html
+share/doc/db/api_java/DbException/class.html
+share/doc/db/api_java/DbException/get_errno.html
+share/doc/db/api_java/DbInfo/set_re_source.html
+share/doc/db/api_java/DbInfo/set_bt_compare.html
+share/doc/db/api_java/DbInfo/set_bt_maxkey.html
+share/doc/db/api_java/DbInfo/set_bt_minkey.html
+share/doc/db/api_java/DbInfo/set_bt_prefix.html
+share/doc/db/api_java/DbInfo/set_cachesize.html
+share/doc/db/api_java/DbInfo/set_compare.html
+share/doc/db/api_java/DbInfo/set_flags.html
+share/doc/db/api_java/DbInfo/set_h_ffactor.html
+share/doc/db/api_java/DbInfo/set_h_hash.html
+share/doc/db/api_java/DbInfo/set_h_nelem.html
+share/doc/db/api_java/DbInfo/set_lorder.html
+share/doc/db/api_java/DbInfo/set_malloc.html
+share/doc/db/api_java/DbInfo/set_pagesize.html
+share/doc/db/api_java/DbInfo/set_re_delim.html
+share/doc/db/api_java/DbInfo/set_re_len.html
+share/doc/db/api_java/DbInfo/set_re_pad.html
+share/doc/db/api_java/DbInfo/class.html
+share/doc/db/api_java/DbLock/class.html
+share/doc/db/api_java/DbLock/put.html
+share/doc/db/api_java/DbLockTab/vec.html
+share/doc/db/api_java/DbLockTab/close.html
+share/doc/db/api_java/DbLockTab/detect.html
+share/doc/db/api_java/DbLockTab/get.html
+share/doc/db/api_java/DbLockTab/id.html
+share/doc/db/api_java/DbLockTab/open.html
+share/doc/db/api_java/DbLockTab/stat.html
+share/doc/db/api_java/DbLockTab/unlink.html
+share/doc/db/api_java/DbLockTab/class.html
+share/doc/db/api_java/DbLog/unlink.html
+share/doc/db/api_java/DbLog/class.html
+share/doc/db/api_java/DbLog/close.html
+share/doc/db/api_java/DbLog/compare.html
+share/doc/db/api_java/DbLog/db_register.html
+share/doc/db/api_java/DbLog/db_unregister.html
+share/doc/db/api_java/DbLog/file.html
+share/doc/db/api_java/DbLog/flush.html
+share/doc/db/api_java/DbLog/get.html
+share/doc/db/api_java/DbLog/open.html
+share/doc/db/api_java/DbLog/put.html
+share/doc/db/api_java/DbLog/stat.html
+share/doc/db/api_java/DbLog/archive.html
+share/doc/db/api_java/DbLsn/class.html
+share/doc/db/api_java/Db/sync.html
+share/doc/db/api_java/Db/close.html
+share/doc/db/api_java/Db/cursor.html
+share/doc/db/api_java/Db/del.html
+share/doc/db/api_java/Db/fd.html
+share/doc/db/api_java/Db/get.html
+share/doc/db/api_java/Db/get_byteswapped.html
+share/doc/db/api_java/Db/get_type.html
+share/doc/db/api_java/Db/join.html
+share/doc/db/api_java/Db/open.html
+share/doc/db/api_java/Db/put.html
+share/doc/db/api_java/Db/stat.html
+share/doc/db/api_java/Db/class.html
+share/doc/db/api_java/DbMpoolFile/open.html
+share/doc/db/api_java/DbMpoolFile/close.html
+share/doc/db/api_java/DbMpoolFile/get.html
+share/doc/db/api_java/DbMpoolFile/class.html
+share/doc/db/api_java/DbMpoolFile/put.html
+share/doc/db/api_java/DbMpoolFile/set.html
+share/doc/db/api_java/DbMpoolFile/sync.html
+share/doc/db/api_java/DbRunRecoveryException/class.html
+share/doc/db/api_java/DbTxn/abort.html
+share/doc/db/api_java/DbTxn/class.html
+share/doc/db/api_java/DbTxn/commit.html
+share/doc/db/api_java/DbTxn/id.html
+share/doc/db/api_java/DbTxn/prepare.html
+share/doc/db/api_java/DbTxnMgr/close.html
+share/doc/db/api_java/DbTxnMgr/checkpoint.html
+share/doc/db/api_java/DbTxnMgr/class.html
+share/doc/db/api_java/DbTxnMgr/begin.html
+share/doc/db/api_java/DbTxnMgr/open.html
+share/doc/db/api_java/DbTxnMgr/stat.html
+share/doc/db/api_java/DbTxnMgr/unlink.html
+share/doc/db/api_java/Dbc/class.html
+share/doc/db/api_java/Dbc/close.html
+share/doc/db/api_java/Dbc/del.html
+share/doc/db/api_java/Dbc/get.html
+share/doc/db/api_java/Dbc/put.html
+share/doc/db/api_java/Dbt/class.html
+share/doc/db/api_java/index/class.html
+share/doc/db/images/prev.gif
+share/doc/db/images/folder_open.gif
+share/doc/db/images/next.gif
+share/doc/db/images/folder.gif
+share/doc/db/images/ps.gif
+share/doc/db/images/sleepycat.gif
+share/doc/db/images/toc.gif
+share/doc/db/index.html
+@dirrm share/doc/db/api_c/DbTxn
+@dirrm share/doc/db/api_c/DbEnv
+@dirrm share/doc/db/api_c/DbInfo
+@dirrm share/doc/db/api_c/DbLock
+@dirrm share/doc/db/api_c/DbLockTab
+@dirrm share/doc/db/api_c/DbLog
+@dirrm share/doc/db/api_c/DbMpool
+@dirrm share/doc/db/api_c/DbMpoolFile
+@dirrm share/doc/db/api_c/Db
+@dirrm share/doc/db/api_c/DbTxnMgr
+@dirrm share/doc/db/api_c/Dbc
+@dirrm share/doc/db/api_c/Dbt
+@dirrm share/doc/db/api_c/historic
+@dirrm share/doc/db/api_c/index
+@dirrm share/doc/db/api_c/internal
+@dirrm share/doc/db/api_c/special
+@dirrm share/doc/db/api_c
+@dirrm share/doc/db/test
+@dirrm share/doc/db/sleepycat
+@dirrm share/doc/db/ref/txn
+@dirrm share/doc/db/ref/am
+@dirrm share/doc/db/ref/arch
+@dirrm share/doc/db/ref/cam
+@dirrm share/doc/db/ref/debug
+@dirrm share/doc/db/ref/dumpload
+@dirrm share/doc/db/ref/env
+@dirrm share/doc/db/ref/intro
+@dirrm share/doc/db/ref/install
+@dirrm share/doc/db/ref/lock
+@dirrm share/doc/db/ref/log
+@dirrm share/doc/db/ref/mp
+@dirrm share/doc/db/ref/perl
+@dirrm share/doc/db/ref/program
+@dirrm share/doc/db/ref/sendmail
+@dirrm share/doc/db/ref/simple_tut
+@dirrm share/doc/db/ref/transapp
+@dirrm share/doc/db/ref
+@dirrm share/doc/db/packages
+@dirrm share/doc/db/api_cxx/DbLsn
+@dirrm share/doc/db/api_cxx/Dbc
+@dirrm share/doc/db/api_cxx/DbEnv
+@dirrm share/doc/db/api_cxx/DbException
+@dirrm share/doc/db/api_cxx/DbInfo
+@dirrm share/doc/db/api_cxx/DbLock
+@dirrm share/doc/db/api_cxx/DbLockTab
+@dirrm share/doc/db/api_cxx/DbLog
+@dirrm share/doc/db/api_cxx/Db
+@dirrm share/doc/db/api_cxx/DbMpool
+@dirrm share/doc/db/api_cxx/DbMpoolFile
+@dirrm share/doc/db/api_cxx/DbTxn
+@dirrm share/doc/db/api_cxx/DbTxnMgr
+@dirrm share/doc/db/api_cxx/Dbt
+@dirrm share/doc/db/api_cxx/index
+@dirrm share/doc/db/api_cxx/special
+@dirrm share/doc/db/api_cxx
+@dirrm share/doc/db/utility
+@dirrm share/doc/db/distrib
+@dirrm share/doc/db/build
+@dirrm share/doc/db/api_java/DbMpool
+@dirrm share/doc/db/api_java/DbEnv
+@dirrm share/doc/db/api_java/DbException
+@dirrm share/doc/db/api_java/DbInfo
+@dirrm share/doc/db/api_java/DbLock
+@dirrm share/doc/db/api_java/DbLockTab
+@dirrm share/doc/db/api_java/DbLog
+@dirrm share/doc/db/api_java/DbLsn
+@dirrm share/doc/db/api_java/Db
+@dirrm share/doc/db/api_java/DbMpoolFile
+@dirrm share/doc/db/api_java/DbRunRecoveryException
+@dirrm share/doc/db/api_java/DbTxn
+@dirrm share/doc/db/api_java/DbTxnMgr
+@dirrm share/doc/db/api_java/Dbc
+@dirrm share/doc/db/api_java/Dbt
+@dirrm share/doc/db/api_java/index
+@dirrm share/doc/db/api_java/special
+@dirrm share/doc/db/api_java
+@dirrm share/doc/db/images
+@dirrm share/doc/db
+@dirrm share/examples/db
>Release-Note:
>Audit-Trail:
>Unformatted:

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-ports" in the body of the message



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?19990207111653.29536.qmail>