1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-22 08:58:47 +00:00

- Fix recursive use of WITH_BDB_VER when WITH_BERKELEYDB and WITH_BDB_VER

are both defined.

Reported by:	Vivek Khera <VIVEK@KHERA.ORG>
This commit is contained in:
Clement Laforet 2008-01-28 20:42:04 +00:00
parent 9c42891cb8
commit 414f0aac90
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=206336
2 changed files with 2 additions and 2 deletions

View File

@ -51,7 +51,7 @@ WITH_DBM=bdb
. endif
.endif
.if defined(WITH_BERKELEYDB)
.if defined(WITH_BERKELEYDB) && !defined(WITH_BDB_VER)
. if ${WITH_BERKELEYDB} == "FreeBSD"
WITH_BDB_BASE=YES
. else

View File

@ -82,7 +82,7 @@ WITH_DBM=bdb
. endif
.endif
.if defined(WITH_BERKELEYDB)
.if defined(WITH_BERKELEYDB) && !defined(WITH_BDB_VER)
. if ${WITH_BERKELEYDB} == "FreeBSD"
WITH_BDB_BASE=YES
. else