From: Maxim Cournoyer Date: Thu, 14 Feb 2019 18:30:58 +0000 (-0500) Subject: net-snmp: disable support for perl X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=refs%2Fpull%2F8219%2Fhead;p=feed%2Fpackages.git net-snmp: disable support for perl Using an external toolchain, it was discovered that net-snmp would link with the Perl library (-lperl) from the host rather than from the target. Since we do not provide Perl as a dependency to net-snmp, the solution is to disable support for it. Fixes issue #8217. Signed-off-by: Maxim Cournoyer --- diff --git a/net/net-snmp/Makefile b/net/net-snmp/Makefile index 8fa011523a..6e452d3c81 100644 --- a/net/net-snmp/Makefile +++ b/net/net-snmp/Makefile @@ -206,6 +206,9 @@ CONFIGURE_ARGS += \ --without-zlib \ --with-nl \ $(call autoconf_bool,CONFIG_IPV6,ipv6) \ + --disable-perl-cc-checks \ + --disable-embedded-perl \ + --without-perl-modules CONFIGURE_VARS += \ ac_cv_header_netlink_netlink_h=yes \