summaryrefslogtreecommitdiff
path: root/databases/db5/Makefile
diff options
context:
space:
mode:
authoradam <adam@pkgsrc.org>2011-06-15 20:56:04 +0000
committeradam <adam@pkgsrc.org>2011-06-15 20:56:04 +0000
commit0aa11034735b26cb239cc5878e274d7293021ac6 (patch)
tree4afd611f316a7a48188773e455684f7cbf98ea91 /databases/db5/Makefile
parent0cb3f22b1af237526fd68c6b757edad4321af241 (diff)
downloadpkgsrc-0aa11034735b26cb239cc5878e274d7293021ac6.tar.gz
Changes 5.2.28:
* Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
Diffstat (limited to 'databases/db5/Makefile')
-rw-r--r--databases/db5/Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/databases/db5/Makefile b/databases/db5/Makefile
index a1455568fbf..0edaab3561e 100644
--- a/databases/db5/Makefile
+++ b/databases/db5/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.4 2011/02/15 10:53:55 adam Exp $
+# $NetBSD: Makefile,v 1.5 2011/06/15 20:56:04 adam Exp $
#
# NOTE:
# When updating this package, a change in the minor (5.n -> 5.(n+1))
@@ -6,7 +6,7 @@
# ABI depends in buildlink3.mk and bump PKGREVISIONs for all dependencies.
# In particular, take care to include BDB_ACCEPTED=db5 packages.
-DISTNAME= db-5.1.25
+DISTNAME= db-5.2.28
PKGNAME= ${DISTNAME:S/db/db5/}
CATEGORIES= databases
MASTER_SITES= http://download.oracle.com/berkeley-db/ \
@@ -35,6 +35,8 @@ OPSYSVARS+= LIBSO_LIBS
LIBSO_LIBS.SunOS+= -lnsl -lrt
CONFIGURE_ENV+= LIBSO_LIBS=${LIBSO_LIBS:Q}
+CHECK_PORTABILITY_SKIP= test/xa/*/*.sh
+
# DB5 only want pthreads because it's really after POSIX 1003.1
# inter-process mutexes. In this case, we only care to use the native
# threads.