From 3e6059ff4a06d53117a11e906bb1606e2c37df9b Mon Sep 17 00:00:00 2001 From: Martin Schiller Date: Fri, 9 Oct 2020 08:23:23 +0200 Subject: [PATCH] quagga: fix dependency to libcares Commit 9a89e57d7614 ("quagga: update to 1.2.4") introduced a dependency to libcares. Fix this by disabling the not used nhrpd (next hop resolution protocol). Signed-off-by: Martin Schiller --- quagga/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/quagga/Makefile b/quagga/Makefile index b259a3d..ae65ece 100644 --- a/quagga/Makefile +++ b/quagga/Makefile @@ -174,6 +174,7 @@ CONFIGURE_ARGS+= \ --disable-ospfclient \ --disable-capabilities \ --disable-doc \ + --disable-nhrpd \ $(call autoconf_bool,CONFIG_PACKAGE_quagga-libzebra,zebra) \ $(call autoconf_bool,CONFIG_PACKAGE_quagga-libospf,ospfd) \ $(call autoconf_bool,CONFIG_PACKAGE_quagga-bgpd,bgpd) \