[Buildroot] [git commit branch/2018.05.x] package/heimdal: fix build when the host has some DB libs

Peter Korsgaard peter at korsgaard.com
Thu Jul 19 09:50:53 UTC 2018


commit: https://git.buildroot.net/buildroot/commit/?id=4f8a4685817a9bfdf4ea18b52adc6e13f4eed6c0
branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/2018.05.x

When the host has a DB library installed, namely LMDB, host-heimdal
will detect it and try to use, resulting in a build failure due to
missing symbols.

Really disable all the DB backends, we don't need them.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998 at free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni at bootlin.com>
(cherry picked from commit 07d4d97171a3ed293da07aa9d20bae572c4c5e1b)
Signed-off-by: Peter Korsgaard <peter at korsgaard.com>
---
 package/heimdal/heimdal.mk | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/package/heimdal/heimdal.mk b/package/heimdal/heimdal.mk
index 79aaacbd30..5f7b6c6853 100644
--- a/package/heimdal/heimdal.mk
+++ b/package/heimdal/heimdal.mk
@@ -24,7 +24,10 @@ HOST_HEIMDAL_CONF_OPTS = \
 	--without-libedit \
 	--without-hesiod \
 	--without-x \
+	--disable-mdb-db \
+	--disable-ndbm-db \
 	--disable-heimdal-documentation
+
 HOST_HEIMDAL_CONF_ENV = MAKEINFO=true
 HEIMDAL_LICENSE = BSD-3-Clause
 HEIMDAL_LICENSE_FILES = LICENSE


More information about the buildroot mailing list