1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-27 00:57:50 +00:00

OpenLDAP 2.0 links with Berkeley DB 3.3 or 4.0, newer with 4.1. In

fact DB->open is incompatible between version 4.0 and 4.1.

PR:		-
Submitted by:	Oliver Eikemeier <eikemeier@fillmore-labs.com>
This commit is contained in:
Edwin Groothuis 2003-04-24 11:35:43 +00:00
parent 062cd21bb1
commit b909f64bee
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=79581
2 changed files with 4 additions and 4 deletions

View File

@ -30,9 +30,9 @@ EXTRACT_SUFX= .tgz
MAINTAINER= ports@FreeBSD.org
COMMENT= Open source LDAP client and server software
.if exists(${LOCALBASE}/lib/libdb41.a)
.if exists(${LOCALBASE}/lib/libdb4.so)
DB_CFLAGS= -I${LOCALBASE}/include/db4
LIB_DEPENDS= db41:${PORTSDIR}/databases/db4
LIB_DEPENDS= db4.0:${PORTSDIR}/databases/db4
.else
DB_CFLAGS= -I${LOCALBASE}/include/db3
LIB_DEPENDS= db3.3:${PORTSDIR}/databases/db3

View File

@ -30,9 +30,9 @@ EXTRACT_SUFX= .tgz
MAINTAINER= ports@FreeBSD.org
COMMENT= Open source LDAP client and server software
.if exists(${LOCALBASE}/lib/libdb41.a)
.if exists(${LOCALBASE}/lib/libdb4.so)
DB_CFLAGS= -I${LOCALBASE}/include/db4
LIB_DEPENDS= db41:${PORTSDIR}/databases/db4
LIB_DEPENDS= db4.0:${PORTSDIR}/databases/db4
.else
DB_CFLAGS= -I${LOCALBASE}/include/db3
LIB_DEPENDS= db3.3:${PORTSDIR}/databases/db3