kumquat-buildroot/package/quagga/Config.in
Thomas Petazzoni 52e600ebec 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>
2010-05-20 22:34:30 +02:00

75 lines
1.6 KiB
Plaintext

config BR2_PACKAGE_QUAGGA
bool "quagga"
help
routing software suite, providing implementations of
OSPFv2, OSPFv3, RIP v1 and v2, RIPng and BGP-4.
http://www.quagga.net/
if BR2_PACKAGE_QUAGGA
config BR2_PACKAGE_QUAGGA_ZEBRA
bool "zebra daemon"
help
Build zebra daemon.
config BR2_PACKAGE_QUAGGA_BGPD
bool "bgpd support"
help
Enable bgpd support in quagga.
config BR2_PACKAGE_QUAGGA_RIPD
bool "ripd support"
help
Enable ripd support in quagga.
config BR2_PACKAGE_QUAGGA_RIPNGD
bool "ripngd support"
depends on BR2_INET_IPV6
help
Enable ripngd support in quagga.
config BR2_PACKAGE_QUAGGA_OSPFD
bool "ospfd support"
help
Enable ospfd support in quagga.
config BR2_PACKAGE_QUAGGA_OSPF6D
bool "ospf6d support"
depends on BR2_INET_IPV6
help
Enable ospf6d support in quagga.
config BR2_PACKAGE_QUAGGA_WATCHQUAGGA
bool "watchquagga support"
help
Enable watchquagga support in quagga.
config BR2_PACKAGE_QUAGGA_ISISD
bool "isisd support"
help
Enable isisd support in quagga.
config BR2_PACKAGE_QUAGGA_BGP_ANNOUNCE
bool "BGP route announcement"
config BR2_PACKAGE_QUAGGA_NETLINK
bool "use linux netlink interface"
default y
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"
config BR2_PACKAGE_QUAGGA_OPAGUE_LSA
bool "OSPF Opaque-LSA with OSPFAPI support (RFC2370)"
endif