7fa0dc4ac2
* Updated the JDBC version shipped with Berkeley DB to support Oracle Java Embedded Client. * Fixed several memory leaks in the Online Backup API. * Fix a bug in the SQL API when using a blob field with a lot of content and multiple concurrent connections to the database. * Update EID_MASTER to be public static final so that it will be exposed in Java docs. * Fixed a bug where BFile module crashes when using BFile handle for SQL expressions interface on 64 bit platforms. * Fixed a bug where, on systems without FTRUNCATE, db_verify will return an error for truncated heap databases. * Let ADO.NET solution building skip SQLite Designer and Linq by default. * Fixed a bug that could cause BDB to run out of avaliable mutexes when renaming many databases. * Fixed a bug where the metadata page in hash databases would not be flushed to disk. * Fixed a bug where printlog would fail on in-memory heap databases. * Fixed a bug that would cause verify to call the wrong compare function if there are user defined compare functions used and the database has multilevel off page sorted duplicate trees. * Fixed a bug where two processes accessing the same table and one of those drops the table and recreates, the second process can crash. * Fixed a bug where it was possible to panic a heap database without an error message being printed. * Fixed a bug where it would fail to put records with overflow keys into hash duplicate database. * Fixed a bug where multiple Replication Manager processes would sometimes not all conform to replication-group-aware log archiving. * more...
51 lines
1.6 KiB
Makefile
51 lines
1.6 KiB
Makefile
# $NetBSD: Makefile,v 1.6 2011/10/03 10:54:45 adam Exp $
|
|
#
|
|
# NOTE:
|
|
# When updating this package, a change in the minor (5.n -> 5.(n+1))
|
|
# usually incurs a shlib name change. Please make sure to update the
|
|
# ABI depends in buildlink3.mk and bump PKGREVISIONs for all dependencies.
|
|
# In particular, take care to include BDB_ACCEPTED=db5 packages.
|
|
|
|
DISTNAME= db-5.2.36
|
|
PKGNAME= ${DISTNAME:S/db/db5/}
|
|
CATEGORIES= databases
|
|
MASTER_SITES= http://download.oracle.com/berkeley-db/ \
|
|
http://download-uk.oracle.com/berkeley-db/
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://www.oracle.com/database/berkeley-db/db/index.html
|
|
COMMENT= Berkeley DB version 5 from Oracle
|
|
LICENSE= modified-bsd
|
|
|
|
PKG_INSTALLATION_TYPES= overwrite pkgviews
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
USE_LANGUAGES= c c++
|
|
USE_LIBTOOL= yes
|
|
USE_TOOLS+= pax
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_DIRS= build_unix
|
|
CONFIGURE_SCRIPT= ../dist/configure
|
|
CONFIGURE_ARGS+= --enable-compat185
|
|
CONFIGURE_ARGS+= --enable-cxx
|
|
CONFIGURE_ARGS+= --includedir=${PREFIX}/include/db5
|
|
CONFIGURE_ARGS+= --program-transform-name=s,db_,db5_,
|
|
|
|
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.
|
|
PTHREAD_OPTS+= native
|
|
.include "../../mk/pthread.buildlink3.mk"
|
|
|
|
INSTALLATION_DIRS= include/db5 lib share/doc/db5
|
|
|
|
post-install:
|
|
chown -R ${DOCOWN}:${DOCGRP} ${DESTDIR}${PREFIX}/share/doc/db5
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|