diff options
author | ume <ume@FreeBSD.org> | 2005-02-24 05:18:46 +0800 |
---|---|---|
committer | ume <ume@FreeBSD.org> | 2005-02-24 05:18:46 +0800 |
commit | f7b80fa5adb05512100d5334a70dd9c523e3bbd6 (patch) | |
tree | 94af63cdbfbccdfe419213f132054dbc203fe51d /security/cyrus-sasl2/Makefile | |
parent | ac9b92bce2aa9fd86763ee628eacb504681f6d3d (diff) | |
download | freebsd-ports-gnome-f7b80fa5adb05512100d5334a70dd9c523e3bbd6.tar.gz freebsd-ports-gnome-f7b80fa5adb05512100d5334a70dd9c523e3bbd6.tar.zst freebsd-ports-gnome-f7b80fa5adb05512100d5334a70dd9c523e3bbd6.zip |
Allow to use Berkeley DB 4.3.
PR: ports/76154
Submitted by: Sunpoet Po-Chuan Hsieh <sunpoet@sunpoet.net>
Diffstat (limited to 'security/cyrus-sasl2/Makefile')
-rw-r--r-- | security/cyrus-sasl2/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/security/cyrus-sasl2/Makefile b/security/cyrus-sasl2/Makefile index e8b2fbe43112..a4bc4f3c0576 100644 --- a/security/cyrus-sasl2/Makefile +++ b/security/cyrus-sasl2/Makefile @@ -66,8 +66,11 @@ CONFIGURE_ARGS+=--with-bdb-incdir=${LOCALBASE}/include/db41 --with-bdb=db41 .elif ${WITH_BDB_VER} == 42 LIB_DEPENDS+= db-4.2.2:${PORTSDIR}/databases/db42 CONFIGURE_ARGS+=--with-bdb-incdir=${LOCALBASE}/include/db42 --with-bdb=db-4.2 +.elif ${WITH_BDB_VER} == 43 +LIB_DEPENDS+= db-4.3.0:${PORTSDIR}/databases/db43 +CONFIGURE_ARGS+=--with-bdb-incdir=${LOCALBASE}/include/db43 --with-bdb=db-4.3 .else -BROKEN= "WITH_BDB_VER must be 3, 4, 41 or 42" +BROKEN= "WITH_BDB_VER must be 3, 4, 41, 42 or 43" .endif CONFIGURE_ARGS+=--with-dblib=berkeley --with-bdb-libdir=${LOCALBASE}/lib SASLDB_NAME= sasldb2 |