diff options
author | otis <otis@pkgsrc.org> | 2020-09-03 20:35:17 +0000 |
---|---|---|
committer | otis <otis@pkgsrc.org> | 2020-09-03 20:35:17 +0000 |
commit | 790ac3a0fdb4a47d40b725221b49bf67c7983722 (patch) | |
tree | 4ee4732c46b9dba8a76a668be5097e6f29c00342 /net/bind916 | |
parent | 0bb747ef856dc380ab65cfa6ec432f1c513959db (diff) | |
download | pkgsrc-790ac3a0fdb4a47d40b725221b49bf67c7983722.tar.gz |
net/bind916: Explicitly disable lmdb with lmdb option unset
Disable lmdb explicitly to instruct configure to not look for lmdb at all.
Diffstat (limited to 'net/bind916')
-rw-r--r-- | net/bind916/options.mk | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/net/bind916/options.mk b/net/bind916/options.mk index 427c76b4aeb..0ccef81e218 100644 --- a/net/bind916/options.mk +++ b/net/bind916/options.mk @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.2 2020/08/30 19:26:45 christos Exp $ +# $NetBSD: options.mk,v 1.3 2020/09/03 20:35:17 otis Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.bind916 PKG_SUPPORTED_OPTIONS= bind-dig-sigchase bind-xml-statistics-server @@ -45,6 +45,8 @@ PKG_SUGGESTED_OPTIONS+= blocklist .include "../../databases/lmdb/buildlink3.mk" CONFIGURE_ARGS+= --with-lmdb=${PREFIX} PLIST.lmdb= yes +.else +CONFIGURE_ARGS+= --with-lmdb=no .endif .if !empty(PKG_OPTIONS:Mmysql) |