From fd2bd9e3df276301f867b05bd9f47ab3ab7b4ef4 Mon Sep 17 00:00:00 2001 From: Gustavo Zacarias Date: Mon, 21 Feb 2011 16:25:06 -0300 Subject: quagga: fix build with snmp support Closes #3277 Quagga's snmp support tries to link with libcrypto from openssl by default. That's a bad no no since snmp might have ssl support disabled and openssl won't be around. Signed-off-by: Gustavo Zacarias Signed-off-by: Peter Korsgaard --- package/quagga/quagga.mk | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'package/quagga') diff --git a/package/quagga/quagga.mk b/package/quagga/quagga.mk index d2b14440c..a807f0f4a 100644 --- a/package/quagga/quagga.mk +++ b/package/quagga/quagga.mk @@ -67,6 +67,10 @@ endif ifeq ($(BR2_PACKAGE_QUAGGA_SNMP),y) QUAGGA_CONF_OPT+=--enable-snmp QUAGGA_DEPENDENCIES+=netsnmp +# SNMP support tries -lcrypto by default, disable it if we ain't got openssl +ifneq ($(BR2_PACKAGE_OPENSSL),y) +QUAGGA_CONF_OPT+=--without-crypto +endif else QUAGGA_CONF_OPT+=--disable-snmp endif -- cgit v1.2.3