mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-29 10:18:30 +00:00
bd4698ebe2
- Description as follows Version 4.3 of the Berkeley Data Base library which offers (key/value) storage with optional concurrent access or transactions interface. Utilities are included in the distribution to convert v1.85 databases to v4.3 databases, and a backwards compatible API is provided to maintain compatibility with programs using the v1.85 interface. For details on compatibility with other DB versions, see: http://www.sleepycat.com/download/patchlogs.shtml PR: ports/73790 Submitted by: Matthias Andree <matthias dot andree at gmx dot de>
26 lines
499 B
Makefile
26 lines
499 B
Makefile
# ports collection makefile for: Berkeley DB v4.3
|
|
# Date created: 2004-11-10
|
|
# Whom: Matthias Andree <matthias.andree@gmx.de>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= db43
|
|
PORTVERSION= 4.3.21
|
|
CATEGORIES= databases
|
|
PKGNAMESUFFIX?=
|
|
|
|
MAINTAINER= matthias.andree@gmx.de
|
|
COMMENT= The Berkeley DB package, revision 4.3
|
|
|
|
MASTERDIR?= ${.CURDIR}
|
|
|
|
.include <${MASTERDIR}/Makefile.db>
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${ARCH} == amd64
|
|
CONFIGURE_ARGS+= --with-mutex=x86/gcc-assembly
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|