Path to this page:
./
databases/db4,
Berkeley DB version 4 from Oracle
Branch: CURRENT,
Version: 4.7.25.3,
Package name: db4-4.7.25.3,
Maintainer: pkgsrc-usersBerkeley DB is an embeddable database system that supports keyed access to
data. The software is distributed in source code form, and developers can
compile and link the source code into a single library for inclusion
directly in their applications.
Developers may choose to store data in any of several different storage
structures to satisfy the requirements of a particular application. In
database terminology, these storage structures and the code that operates on
them are called access methods. The library includes support for the
following access methods:
* B+tree: Stores keys in sorted order, using either a programmer-supplied
ordering function or a default function that does lexicographical
ordering of keys. Applications may perform equality or range searches.
* Hashing: Stores records in a hash table for fast searches based on
strict equality. Extended Linear Hashing modifies the hash function
used by the table as new records are inserted, in order to keep buckets
underfull in the steady state.
* Fixed and Variable-Length Records: Stores fixed- or variable-length
records in sequential order. Record numbers may be immutable or
mutable, i.e., permitting new records to be inserted between existing
records or requiring that new records be added only at the end of the
database.
Required to build:[
devel/libtool-base]
Master sites: (Expand)
SHA1: 957c10358df1211e1dc37ea997aadef42117d6a5
RMD160: 9a5d8149d61452906c3f1c36f2859a2033c8bc3b
Filesize: 12816.532 KB
Version history: (Expand)
- (2009-01-23) Updated to version: db4-4.7.25.3
- (2008-09-07) Updated to version: db4-4.7.25.1
- (2008-01-11) Updated to version: db4-4.6.21
- (2008-01-11) Updated to version: db4-4.6.21
- (2007-06-18) Updated to version: db4-4.5.20.2
- (2007-06-08) Updated to version: db4-4.5.20.2
CVS history: (Expand)
| 2010-01-16 18:57:38 by Thomas Klausner | Files touched by this commit (22) |
Log message:
Remove workaround for compiler bug in gcc2 on sparc64.
|
| 2009-09-11 23:26:18 by Thomas Klausner | Files touched by this commit (1) |
Log message:
Restore BUILDLINK_LDADD.db4.
It is used by mk/bdb.buildlink3.mk:
BDB_LIBS= ${BUILDLINK_LDADD.${BDB_TYPE}}
which is then used e.g. by p5-BerkeleyDB:
MAKE_ENV+= BERKELEYDB_NAME=${BDB_LIBS:Q}
|
| 2009-09-07 20:37:12 by Matthias Drochner | Files touched by this commit (1) |
Log message:
don't set BUILDLINK_LDADD/BUILDLINK_LIBS -- this ends up in the LIBS
environment variable which makes (at least if GNU configure is
used the common way) that everything in the pkg gets linked against db4,
whether needed or not, which causes hidden dependencies and strange errors
|
| 2009-07-09 08:37:41 by Hasso Tepper | Files touched by this commit (2) |
Log message:
Make it build with DragonFly master.
|
| 2009-06-14 19:43:27 by Joerg Sonnenberger | Files touched by this commit (120) |
Log message:
Remove @dirrm entries from PLISTs
|
| 2009-03-20 20:25:55 by Joerg Sonnenberger | Files touched by this commit (1252) |
Log message:
Simply and speed up buildlink3.mk files and processing.
This changes the buildlink3.mk files to use an include guard for the
recursive include. The use of BUILDLINK_DEPTH, BUILDLINK_DEPENDS,
BUILDLINK_PACKAGES and BUILDLINK_ORDER is handled by a single new
variable BUILDLINK_TREE. Each buildlink3.mk file adds a pair of
enter/exit marker, which can be used to reconstruct the tree and
to determine first level includes. Avoiding := for large variables
(BUILDLINK_ORDER) speeds up parse time as += has linear complexity.
The include guard reduces system time by avoiding reading files over and
over again. For complex packages this reduces both %user and %sys time to
half of the former time.
|
| 2009-01-21 16:44:32 by Matthias Drochner | Files touched by this commit (4) |
Log message:
add 2 more patches from the distribution site, fixing a deadlock
and a segfault
|
| 2008-11-19 00:53:58 by Thomas Klausner | Files touched by this commit (2) |
Log message:
Fix RCS Id in patch-ab.
|