summaryrefslogtreecommitdiff
path: root/security
diff options
context:
space:
mode:
authorHajimu UMEMOTO <ume@FreeBSD.org>2007-08-06 15:01:21 +0000
committerHajimu UMEMOTO <ume@FreeBSD.org>2007-08-06 15:01:21 +0000
commit80f4aee1b7a21e07692d7c6e2f98a424e54cd7d2 (patch)
treef67a3625fc1595924b235053b98eaeeb6e487342 /security
parentcompatibility fix for DBENV->set_lk_max() (diff)
Allow to build with db45 and db46 as well.
Notes
Notes: svn path=/head/; revision=197226
Diffstat (limited to 'security')
-rw-r--r--security/cyrus-sasl2-saslauthd/Makefile5
-rw-r--r--security/cyrus-sasl2/Makefile5
2 files changed, 6 insertions, 4 deletions
diff --git a/security/cyrus-sasl2-saslauthd/Makefile b/security/cyrus-sasl2-saslauthd/Makefile
index 3e3c25a7177e..8f6dd8445e41 100644
--- a/security/cyrus-sasl2-saslauthd/Makefile
+++ b/security/cyrus-sasl2-saslauthd/Makefile
@@ -46,8 +46,9 @@ CONFIGURE_ARGS= --sysconfdir=${PREFIX}/etc \
.if ${WITH_BDB_VER} == 4
USE_BDB= 40
.elif ${WITH_BDB_VER} != 3 && ${WITH_BDB_VER} != 41 && \
- ${WITH_BDB_VER} != 42 && ${WITH_BDB_VER} != 43 && ${WITH_BDB_VER} != 44
-IGNORE= "cannot install: WITH_BDB_VER must be 3, 4, 41, 42, 43 or 44"
+ ${WITH_BDB_VER} != 42 && ${WITH_BDB_VER} != 43 && \
+ ${WITH_BDB_VER} != 44 && ${WITH_BDB_VER} != 45 && ${WITH_BDB_VER} != 46
+IGNORE= "cannot install: WITH_BDB_VER must be 3, 4, 41, 42, 43, 44, 45 or 46"
.endif
USE_BDB?= ${WITH_BDB_VER}
BDB_SUFFIX?= ${WITH_BDB_VER}
diff --git a/security/cyrus-sasl2/Makefile b/security/cyrus-sasl2/Makefile
index 3e7126c70ca5..7c109cb2ad3c 100644
--- a/security/cyrus-sasl2/Makefile
+++ b/security/cyrus-sasl2/Makefile
@@ -58,8 +58,9 @@ CONFIGURE_ARGS= --sysconfdir=${PREFIX}/etc \
.if ${WITH_BDB_VER} == 4
USE_BDB= 40
.elif ${WITH_BDB_VER} != 3 && ${WITH_BDB_VER} != 41 && \
- ${WITH_BDB_VER} != 42 && ${WITH_BDB_VER} != 43 && ${WITH_BDB_VER} != 44
-IGNORE= "cannot install: WITH_BDB_VER must be 3, 4, 41, 42, 43 or 44"
+ ${WITH_BDB_VER} != 42 && ${WITH_BDB_VER} != 43 && \
+ ${WITH_BDB_VER} != 44 && ${WITH_BDB_VER} != 45 && ${WITH_BDB_VER} != 46
+IGNORE= "cannot install: WITH_BDB_VER must be 3, 4, 41, 42, 43, 44, 45 or 46"
.endif
USE_BDB?= ${WITH_BDB_VER}
CONFIGURE_ARGS+=--with-dblib=berkeley --with-bdb-libdir=${LOCALBASE}/lib \