* [Buildroot] [PATCH 1/2] netsnmp: enable agentx support by default
@ 2013-04-16 0:39 Gustavo Zacarias
2013-04-16 0:39 ` [Buildroot] [PATCH 2/2] quagga: bump to version 0.99.22.1 Gustavo Zacarias
` (2 more replies)
0 siblings, 3 replies; 8+ messages in thread
From: Gustavo Zacarias @ 2013-04-16 0:39 UTC (permalink / raw)
To: buildroot
Enable agentx support by default, it's required for newer versions of
quagga.
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
package/netsnmp/Config.in | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package/netsnmp/Config.in b/package/netsnmp/Config.in
index d5056f9..d94abb7 100644
--- a/package/netsnmp/Config.in
+++ b/package/netsnmp/Config.in
@@ -17,7 +17,7 @@ config BR2_PACKAGE_NETSNMP_ENABLE_MIBS
config BR2_PACKAGE_NETSNMP_WITH_MIB_MODULES
string "Build with these MIB modules"
- default "host ucd-snmp/dlmod"
+ default "host ucd-snmp/dlmod agentx"
depends on BR2_PACKAGE_NETSNMP
help
Specify which MIB modules to include.
--
1.8.1.5
^ permalink raw reply related [flat|nested] 8+ messages in thread* [Buildroot] [PATCH 2/2] quagga: bump to version 0.99.22.1
2013-04-16 0:39 [Buildroot] [PATCH 1/2] netsnmp: enable agentx support by default Gustavo Zacarias
@ 2013-04-16 0:39 ` Gustavo Zacarias
2013-04-17 19:49 ` Peter Korsgaard
2013-04-17 19:54 ` Peter Korsgaard
2013-04-17 15:53 ` [Buildroot] [PATCH 1/2] netsnmp: enable agentx support by default Arnout Vandecappelle
2013-04-17 19:48 ` Peter Korsgaard
2 siblings, 2 replies; 8+ messages in thread
From: Gustavo Zacarias @ 2013-04-16 0:39 UTC (permalink / raw)
To: buildroot
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
package/quagga/quagga.mk | 7 ++-----
1 file changed, 2 insertions(+), 5 deletions(-)
diff --git a/package/quagga/quagga.mk b/package/quagga/quagga.mk
index fb060ef..42f8506 100644
--- a/package/quagga/quagga.mk
+++ b/package/quagga/quagga.mk
@@ -4,7 +4,7 @@
#
#############################################################
-QUAGGA_VERSION = 0.99.21
+QUAGGA_VERSION = 0.99.22.1
QUAGGA_SITE = http://download.savannah.gnu.org/releases/quagga
QUAGGA_DEPENDENCIES = host-gawk
QUAGGA_LICENSE = GPLv2+
@@ -25,12 +25,9 @@ QUAGGA_CONF_OPT += $(if $(BR2_PACKAGE_QUAGGA_TCP_ZERBRA),--enable-tcp-zebra,--di
QUAGGA_CONF_OPT += $(if $(BR2_PACKAGE_QUAGGA_OPAQUE_LSA),--enable-opaque-lsa,--disable-opaque-lsa)
ifeq ($(BR2_PACKAGE_QUAGGA_SNMP),y)
+QUAGGA_CONF_ENV += ac_cv_path_NETSNMP_CONFIG=$(STAGING_DIR)/usr/bin/net-snmp-config
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
--
1.8.1.5
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [Buildroot] [PATCH 2/2] quagga: bump to version 0.99.22.1
2013-04-16 0:39 ` [Buildroot] [PATCH 2/2] quagga: bump to version 0.99.22.1 Gustavo Zacarias
@ 2013-04-17 19:49 ` Peter Korsgaard
2013-04-17 19:50 ` Gustavo Zacarias
2013-04-17 19:54 ` Peter Korsgaard
1 sibling, 1 reply; 8+ messages in thread
From: Peter Korsgaard @ 2013-04-17 19:49 UTC (permalink / raw)
To: buildroot
>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:
Gustavo> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Gustavo> ---
Gustavo> package/quagga/quagga.mk | 7 ++-----
Gustavo> 1 file changed, 2 insertions(+), 5 deletions(-)
Gustavo> diff --git a/package/quagga/quagga.mk b/package/quagga/quagga.mk
Gustavo> index fb060ef..42f8506 100644
Gustavo> --- a/package/quagga/quagga.mk
Gustavo> +++ b/package/quagga/quagga.mk
Gustavo> @@ -4,7 +4,7 @@
Gustavo> #
Gustavo> #############################################################
Gustavo> -QUAGGA_VERSION = 0.99.21
Gustavo> +QUAGGA_VERSION = 0.99.22.1
Gustavo> QUAGGA_SITE = http://download.savannah.gnu.org/releases/quagga
Gustavo> QUAGGA_DEPENDENCIES = host-gawk
Gustavo> QUAGGA_LICENSE = GPLv2+
Gustavo> @@ -25,12 +25,9 @@ QUAGGA_CONF_OPT += $(if $(BR2_PACKAGE_QUAGGA_TCP_ZERBRA),--enable-tcp-zebra,--di
Gustavo> QUAGGA_CONF_OPT += $(if $(BR2_PACKAGE_QUAGGA_OPAQUE_LSA),--enable-opaque-lsa,--disable-opaque-lsa)
Gustavo> ifeq ($(BR2_PACKAGE_QUAGGA_SNMP),y)
Gustavo> +QUAGGA_CONF_ENV += ac_cv_path_NETSNMP_CONFIG=$(STAGING_DIR)/usr/bin/net-snmp-config
Gustavo> QUAGGA_CONF_OPT += --enable-snmp
Gustavo> QUAGGA_DEPENDENCIES += netsnmp
Gustavo> -# SNMP support tries -lcrypto by default, disable it if we ain't got openssl
Gustavo> -ifneq ($(BR2_PACKAGE_OPENSSL),y)
Gustavo> -QUAGGA_CONF_OPT +=--without-crypto
Gustavo> -endif
Why? Doesn't it have crypto support any more? Or if it does, shouldn't
we ensure it gets built after openssl?
Gustavo> else
Gustavo> QUAGGA_CONF_OPT +=--disable-snmp
Gustavo> endif
Gustavo> --
Gustavo> 1.8.1.5
Gustavo> _______________________________________________
Gustavo> buildroot mailing list
Gustavo> buildroot at busybox.net
Gustavo> http://lists.busybox.net/mailman/listinfo/buildroot
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 8+ messages in thread
* [Buildroot] [PATCH 2/2] quagga: bump to version 0.99.22.1
2013-04-17 19:49 ` Peter Korsgaard
@ 2013-04-17 19:50 ` Gustavo Zacarias
2013-04-17 19:54 ` Peter Korsgaard
0 siblings, 1 reply; 8+ messages in thread
From: Gustavo Zacarias @ 2013-04-17 19:50 UTC (permalink / raw)
To: buildroot
On 04/17/2013 04:49 PM, Peter Korsgaard wrote:
> Why? Doesn't it have crypto support any more? Or if it does, shouldn't
> we ensure it gets built after openssl?
It was a bad default link line regarding net-snmp in the previous
versions, fixed by the switch to net-snmp-config.
Regards.
^ permalink raw reply [flat|nested] 8+ messages in thread
* [Buildroot] [PATCH 2/2] quagga: bump to version 0.99.22.1
2013-04-17 19:50 ` Gustavo Zacarias
@ 2013-04-17 19:54 ` Peter Korsgaard
0 siblings, 0 replies; 8+ messages in thread
From: Peter Korsgaard @ 2013-04-17 19:54 UTC (permalink / raw)
To: buildroot
>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:
Gustavo> On 04/17/2013 04:49 PM, Peter Korsgaard wrote:
>> Why? Doesn't it have crypto support any more? Or if it does, shouldn't
>> we ensure it gets built after openssl?
Gustavo> It was a bad default link line regarding net-snmp in the
Gustavo> previous versions, fixed by the switch to net-snmp-config.
Ok, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 8+ messages in thread
* [Buildroot] [PATCH 2/2] quagga: bump to version 0.99.22.1
2013-04-16 0:39 ` [Buildroot] [PATCH 2/2] quagga: bump to version 0.99.22.1 Gustavo Zacarias
2013-04-17 19:49 ` Peter Korsgaard
@ 2013-04-17 19:54 ` Peter Korsgaard
1 sibling, 0 replies; 8+ messages in thread
From: Peter Korsgaard @ 2013-04-17 19:54 UTC (permalink / raw)
To: buildroot
>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:
Gustavo> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Committed, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 8+ messages in thread
* [Buildroot] [PATCH 1/2] netsnmp: enable agentx support by default
2013-04-16 0:39 [Buildroot] [PATCH 1/2] netsnmp: enable agentx support by default Gustavo Zacarias
2013-04-16 0:39 ` [Buildroot] [PATCH 2/2] quagga: bump to version 0.99.22.1 Gustavo Zacarias
@ 2013-04-17 15:53 ` Arnout Vandecappelle
2013-04-17 19:48 ` Peter Korsgaard
2 siblings, 0 replies; 8+ messages in thread
From: Arnout Vandecappelle @ 2013-04-17 15:53 UTC (permalink / raw)
To: buildroot
On 16/04/13 02:39, Gustavo Zacarias wrote:
> Enable agentx support by default, it's required for newer versions of
> quagga.
Then quagga help text should get a remark that it requires agentx to be
configured in netsnmp.
Regards,
Arnout
>
> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
> ---
> package/netsnmp/Config.in | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/package/netsnmp/Config.in b/package/netsnmp/Config.in
> index d5056f9..d94abb7 100644
> --- a/package/netsnmp/Config.in
> +++ b/package/netsnmp/Config.in
> @@ -17,7 +17,7 @@ config BR2_PACKAGE_NETSNMP_ENABLE_MIBS
>
> config BR2_PACKAGE_NETSNMP_WITH_MIB_MODULES
> string "Build with these MIB modules"
> - default "host ucd-snmp/dlmod"
> + default "host ucd-snmp/dlmod agentx"
> depends on BR2_PACKAGE_NETSNMP
> help
> Specify which MIB modules to include.
>
--
Arnout Vandecappelle arnout at mind be
Senior Embedded Software Architect +32-16-286500
Essensium/Mind http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint: 7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F
^ permalink raw reply [flat|nested] 8+ messages in thread
* [Buildroot] [PATCH 1/2] netsnmp: enable agentx support by default
2013-04-16 0:39 [Buildroot] [PATCH 1/2] netsnmp: enable agentx support by default Gustavo Zacarias
2013-04-16 0:39 ` [Buildroot] [PATCH 2/2] quagga: bump to version 0.99.22.1 Gustavo Zacarias
2013-04-17 15:53 ` [Buildroot] [PATCH 1/2] netsnmp: enable agentx support by default Arnout Vandecappelle
@ 2013-04-17 19:48 ` Peter Korsgaard
2 siblings, 0 replies; 8+ messages in thread
From: Peter Korsgaard @ 2013-04-17 19:48 UTC (permalink / raw)
To: buildroot
>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:
Gustavo> Enable agentx support by default, it's required for newer versions of
Gustavo> quagga.
Committed, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2013-04-17 19:54 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-04-16 0:39 [Buildroot] [PATCH 1/2] netsnmp: enable agentx support by default Gustavo Zacarias
2013-04-16 0:39 ` [Buildroot] [PATCH 2/2] quagga: bump to version 0.99.22.1 Gustavo Zacarias
2013-04-17 19:49 ` Peter Korsgaard
2013-04-17 19:50 ` Gustavo Zacarias
2013-04-17 19:54 ` Peter Korsgaard
2013-04-17 19:54 ` Peter Korsgaard
2013-04-17 15:53 ` [Buildroot] [PATCH 1/2] netsnmp: enable agentx support by default Arnout Vandecappelle
2013-04-17 19:48 ` Peter Korsgaard
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox