diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2010-05-15 20:09:46 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2010-05-20 22:34:30 +0200 |
commit | 52e600ebec9cb571edee8f791da851035ae6b969 (patch) | |
tree | 5451ae767b7837f970deb5116711a11a0fbb6b7a /package/quagga/Config.in | |
parent | 56407a4efa4f0da90462e4eb71180b3c2c8bb874 (diff) | |
download | buildroot-novena-52e600ebec9cb571edee8f791da851035ae6b969.tar.gz buildroot-novena-52e600ebec9cb571edee8f791da851035ae6b969.zip |
netsnmp: disable build with external toolchain
There is a build problem with netsnmp on external toolchain that isn't
easy to fix: libtool strips the --sysroot that we are passing it,
which make the link step fail.
In preparation for the release, just make sure this package isn't
visible to external toolchain users. Of course, on the long run, we
should fix this.
We also disable the build of the Quagga SNMP support because it
selects netsnmp.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/quagga/Config.in')
-rw-r--r-- | package/quagga/Config.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/package/quagga/Config.in b/package/quagga/Config.in index e540cc608..fb0d590b6 100644 --- a/package/quagga/Config.in +++ b/package/quagga/Config.in @@ -59,8 +59,12 @@ config BR2_PACKAGE_QUAGGA_NETLINK config BR2_PACKAGE_QUAGGA_SNMP bool "SNMP support" + depends on !BR2_TOOLCHAIN_EXTERNAL select BR2_PACKAGE_NETSNMP +comment "quagga snmp support broken with external toolchains" + depends on BR2_TOOLCHAIN_EXTERNAL + config BR2_PACKAGE_QUAGGA_TCP_ZEBRA bool "TCP/IP socket connection between zebra and proto daemon" |