Maintainer: me Compile tested: armv7l, OpenWRT SDK Run tested: armv7l Linksys WRT1900ACS, OpenWrt SNAPSHOT, r9987-655fff1571 - confirmed dnsdist links correctly against dependencies and doesn't experience errors at run-time when enabling features. Description: dnsdist is a highly DNS-, DoS- and abuse-aware loadbalancer. Its goal in life is to route traffic to the best server, delivering top performance to legitimate users while shunting or blocking abusive traffic. dnsdist is dynamic, its configuration language is Lua and it can be changed at runtime, and its statistics can be queried from a console-like interface or an HTTP API. https://dnsdist.org/ Closes: PowerDNS/pdns#3294 Signed-off-by: James Taylor <james@jtaylor.id.au>
23 lines
1.1 KiB
Diff
23 lines
1.1 KiB
Diff
From d73bc006c62e4340ab56dd4baba5bc8eb8e1db49 Mon Sep 17 00:00:00 2001
|
|
From: Remi Gacogne <remi.gacogne@powerdns.com>
|
|
Date: Mon, 13 May 2019 16:01:06 +0200
|
|
Subject: [PATCH] SNMP: Use net-snmp-config --netsnmp-agent-libs instead of
|
|
--agent-libs
|
|
|
|
---
|
|
m4/pdns_with_net_snmp.m4 | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/m4/pdns_with_net_snmp.m4 b/m4/pdns_with_net_snmp.m4
|
|
index 8040672e6c..2da80c75fc 100644
|
|
--- a/m4/pdns_with_net_snmp.m4
|
|
+++ b/m4/pdns_with_net_snmp.m4
|
|
@@ -10,7 +10,7 @@ AC_DEFUN([PDNS_WITH_NET_SNMP], [
|
|
AS_IF([test "x$with_net_snmp" != "xno"], [
|
|
AS_IF([test "x$with_net_snmp" = "xyes" -o "x$with_net_snmp" = "xauto"], [
|
|
AC_CHECK_PROG([NET_SNMP_CFLAGS], [net-snmp-config], [`net-snmp-config --cflags`])
|
|
- AC_CHECK_PROG([NET_SNMP_LIBS], [net-snmp-config], [`net-snmp-config --agent-libs`])
|
|
+ AC_CHECK_PROG([NET_SNMP_LIBS], [net-snmp-config], [`net-snmp-config --netsnmp-agent-libs`])
|
|
AC_CHECK_DECLS([snmp_select_info2], [ : ], [ : ],
|
|
[AC_INCLUDES_DEFAULT
|
|
#include <net-snmp/net-snmp-config.h>
|