diff options
author | ume <ume@FreeBSD.org> | 2007-08-06 23:01:21 +0800 |
---|---|---|
committer | ume <ume@FreeBSD.org> | 2007-08-06 23:01:21 +0800 |
commit | ba7fb9c619036801c1e2dd6c32290b97daaa822c (patch) | |
tree | 88672acd7e0858ee8a7400f63fec906250df48bb /security/cyrus-sasl2 | |
parent | 759e15369e62dec4913ece3929aa2eebae255eb2 (diff) | |
download | freebsd-ports-gnome-ba7fb9c619036801c1e2dd6c32290b97daaa822c.tar.gz freebsd-ports-gnome-ba7fb9c619036801c1e2dd6c32290b97daaa822c.tar.zst freebsd-ports-gnome-ba7fb9c619036801c1e2dd6c32290b97daaa822c.zip |
Allow to build with db45 and db46 as well.
Diffstat (limited to 'security/cyrus-sasl2')
-rw-r--r-- | security/cyrus-sasl2/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
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 \ |