Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Thomas De Schampheleire <patrickdepinguin@gmail.com>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH] package/syslog-ng: update patch that fixes --with-net-snmp
Date: Wed, 25 Mar 2020 10:38:26 +0100	[thread overview]
Message-ID: <20200325093826.26221-1-patrickdepinguin@gmail.com> (raw)

From: Thomas De Schampheleire <thomas.de_schampheleire@nokia.com>

The final solution accepted upstream differs from the local patch applied
earlier in Buildroot (commit 4ff6e5239240a4e1bdf73c41d6e9bff9473ec62c).

Update the local code accordingly.

Signed-off-by: Thomas De Schampheleire <thomas.de_schampheleire@nokia.com>
---
 .../0002-configure.ac-fix-with-netsnmp.patch  | 44 +++++++++++--------
 package/syslog-ng/syslog-ng.mk                |  2 +-
 2 files changed, 27 insertions(+), 19 deletions(-)

diff --git a/package/syslog-ng/0002-configure.ac-fix-with-netsnmp.patch b/package/syslog-ng/0002-configure.ac-fix-with-netsnmp.patch
index f5b2a39bba..4d531aedd0 100644
--- a/package/syslog-ng/0002-configure.ac-fix-with-netsnmp.patch
+++ b/package/syslog-ng/0002-configure.ac-fix-with-netsnmp.patch
@@ -1,7 +1,7 @@
-From 39ab118a7e79b223941b50b372c8ed51f0e21f4b Mon Sep 17 00:00:00 2001
+From bc327e4deb44f6b7a380a85d0b344647ea162ea9 Mon Sep 17 00:00:00 2001
 From: Thomas De Schampheleire <thomas.de_schampheleire@nokia.com>
 Date: Mon, 16 Mar 2020 15:41:03 +0100
-Subject: [PATCH] configure.ac: fix --with-netsnmp
+Subject: [PATCH] configure.ac: fix --with-net-snmp
 
 The option '--with-net-snmp' did not work, because later checks were using
 the variable '$with_netsnmp' rather than '$with_net_snmp'.
@@ -10,32 +10,40 @@ There are two possible solutions:
 - make the option '--with-netsnmp'
 - change the internal variables
 
-Taking into account that latest upstream has moved away from autotools and
-towards cmake, we opt for the first option that has the least amount of
-changes.
+Opt for the second option so the user-visible options remain the same.
 
 Signed-off-by: Thomas De Schampheleire <thomas.de_schampheleire@nokia.com>
-Upstream-status: not applicable (latest upstream moved to cmake)
-
+Upstream-status: backport
 ---
- configure.ac | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
+ configure.ac | 6 +++---
+ 1 file changed, 3 insertions(+), 3 deletions(-)
 
 diff --git a/configure.ac b/configure.ac
-index bfc85c32d..392ab8bf3 100644
+index 75901bd98..6e8462c37 100644
 --- a/configure.ac
 +++ b/configure.ac
-@@ -148,8 +148,8 @@ AC_ARG_WITH(libnet,
+@@ -151,7 +151,7 @@ AC_ARG_WITH(libnet,
+ AC_ARG_WITH(net-snmp,
+    [  --with-net-snmp=path      use path to net-snmp-config script],
     ,
-    [with_libnet=""])
+-   [with_netsnmp=""])
++   [with_net_snmp=""])
  
--AC_ARG_WITH(net-snmp,
--   [  --with-net-snmp=path      use path to net-snmp-config script],
-+AC_ARG_WITH(netsnmp,
-+   [  --with-netsnmp=path      use path to net-snmp-config script],
-    ,
-    [with_netsnmp=""])
+ AC_ARG_WITH(pidfile-dir,
+    [  --with-pidfile-dir=path   Use path as the directory for storing pidfiles],
+@@ -1104,10 +1104,10 @@ dnl afsnmp module & net-snmp headers/libraries
+ dnl ***************************************************************************
+ AC_MSG_CHECKING(whether to enable snmp destination driver)
+ 
+-if test "x$with_netsnmp" = "x"; then
++if test "x$with_net_snmp" = "x"; then
+    NETSNMP_CONFIG="`which net-snmp-config`"
+ else
+-   NETSNMP_CONFIG="$with_netsnmp/net-snmp-config"
++   NETSNMP_CONFIG="$with_net_snmp/net-snmp-config"
+ fi
  
+ if test "x$enable_afsnmp" = "xyes"; then
 -- 
 2.24.1
 
diff --git a/package/syslog-ng/syslog-ng.mk b/package/syslog-ng/syslog-ng.mk
index 203f2c96b6..a0c21a8907 100644
--- a/package/syslog-ng/syslog-ng.mk
+++ b/package/syslog-ng/syslog-ng.mk
@@ -100,7 +100,7 @@ endif
 ifeq ($(BR2_PACKAGE_NETSNMP),y)
 SYSLOG_NG_DEPENDENCIES += netsnmp
 SYSLOG_NG_CONF_OPTS += --enable-snmp-dest
-SYSLOG_NG_CONF_OPTS += --with-netsnmp="$(STAGING_DIR)/usr/bin"
+SYSLOG_NG_CONF_OPTS += --with-net-snmp="$(STAGING_DIR)/usr/bin"
 else
 SYSLOG_NG_CONF_OPTS += --disable-snmp-dest
 endif
-- 
2.24.1

             reply	other threads:[~2020-03-25  9:38 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-03-25  9:38 Thomas De Schampheleire [this message]
2020-03-26 21:29 ` [Buildroot] [PATCH] package/syslog-ng: update patch that fixes --with-net-snmp Thomas Petazzoni

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20200325093826.26221-1-patrickdepinguin@gmail.com \
    --to=patrickdepinguin@gmail.com \
    --cc=buildroot@busybox.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox