diff mbox series

package/syslog-ng: fix build if net-snmp is installed on the host (again)

Message ID 20210120134008.31802-1-patrickdepinguin@gmail.com
State Accepted
Headers show
Series package/syslog-ng: fix build if net-snmp is installed on the host (again) | expand

Commit Message

Thomas De Schampheleire Jan. 20, 2021, 1:40 p.m. UTC
From: Thomas De Schampheleire <thomas.de_schampheleire@nokia.com>

See also commit 4ff6e5239240a4e1bdf73c41d6e9bff9473ec62c which describes the
problem in detail.

The same problem now arises again, because syslog-ng renamed the
--enable-snmp-dest option into --enable-afsnmp. See syslog-ng commit
4537938474771673ef5bd4a9cad7c9a7dc20b7c1, first part of 3.27.1.

Update the configure options passed from Buildroot accordingly.

Signed-off-by: Thomas De Schampheleire <thomas.de_schampheleire@nokia.com>
---
 package/syslog-ng/syslog-ng.mk | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

Thomas Petazzoni Jan. 23, 2021, 8:35 p.m. UTC | #1
On Wed, 20 Jan 2021 14:40:07 +0100
Thomas De Schampheleire <patrickdepinguin@gmail.com> wrote:

> From: Thomas De Schampheleire <thomas.de_schampheleire@nokia.com>
> 
> See also commit 4ff6e5239240a4e1bdf73c41d6e9bff9473ec62c which describes the
> problem in detail.
> 
> The same problem now arises again, because syslog-ng renamed the
> --enable-snmp-dest option into --enable-afsnmp. See syslog-ng commit
> 4537938474771673ef5bd4a9cad7c9a7dc20b7c1, first part of 3.27.1.
> 
> Update the configure options passed from Buildroot accordingly.
> 
> Signed-off-by: Thomas De Schampheleire <thomas.de_schampheleire@nokia.com>
> ---
>  package/syslog-ng/syslog-ng.mk | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)

Applied to master, thanks.

Thomas
Peter Korsgaard Jan. 28, 2021, 4:50 p.m. UTC | #2
>>>>> "Thomas" == Thomas De Schampheleire <patrickdepinguin@gmail.com> writes:

 > From: Thomas De Schampheleire <thomas.de_schampheleire@nokia.com>
 > See also commit 4ff6e5239240a4e1bdf73c41d6e9bff9473ec62c which describes the
 > problem in detail.

 > The same problem now arises again, because syslog-ng renamed the
 > --enable-snmp-dest option into --enable-afsnmp. See syslog-ng commit
 > 4537938474771673ef5bd4a9cad7c9a7dc20b7c1, first part of 3.27.1.

 > Update the configure options passed from Buildroot accordingly.

 > Signed-off-by: Thomas De Schampheleire <thomas.de_schampheleire@nokia.com>

Committed to 2020.11.x (2020.02.x uses 3.24.1), thanks.
diff mbox series

Patch

diff --git a/package/syslog-ng/syslog-ng.mk b/package/syslog-ng/syslog-ng.mk
index 6d22883116..14888d2aed 100644
--- a/package/syslog-ng/syslog-ng.mk
+++ b/package/syslog-ng/syslog-ng.mk
@@ -100,10 +100,10 @@  endif
 
 ifeq ($(BR2_PACKAGE_NETSNMP),y)
 SYSLOG_NG_DEPENDENCIES += netsnmp
-SYSLOG_NG_CONF_OPTS += --enable-snmp-dest
+SYSLOG_NG_CONF_OPTS += --enable-afsnmp
 SYSLOG_NG_CONF_OPTS += --with-net-snmp="$(STAGING_DIR)/usr/bin"
 else
-SYSLOG_NG_CONF_OPTS += --disable-snmp-dest
+SYSLOG_NG_CONF_OPTS += --disable-afsnmp
 endif
 
 define SYSLOG_NG_INSTALL_INIT_SYSV