f5866484ff
The CS PPC 2011.3 and 2010.9 toolchains have a bad linux/socket.h header that doesn't define sa_family_t which is used by linux/netlink.h (and libnftnl). Patching external toolchain headers wouldn't be too nice and they seem to be the only CS toolchains affected. It's definitely NOT a kernel header version issue, the toolchain is based on 2.6.38 headers and vanilla 2.6.38 has the proper definitions in place. Fixes: http://autobuild.buildroot.net/results/1e2/1e2cac84f0faa9b8915a628260ef41765d86e174/ Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
37 lines
1.0 KiB
Plaintext
37 lines
1.0 KiB
Plaintext
config BR2_PACKAGE_LIBNFTNL
|
|
bool "libnftnl"
|
|
depends on BR2_INET_IPV6
|
|
depends on BR2_LARGEFILE
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
# bad headers, no sa_family_t in linux/socket.h
|
|
depends on !(BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC201103 || BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC201009)
|
|
select BR2_PACKAGE_LIBMNL
|
|
help
|
|
libnftnl is a userspace library providing a low-level
|
|
netlink programming interface (API) to the in-kernel
|
|
nf_tables subsystem. The library libnftnl has been
|
|
previously known as libnftables. This library is
|
|
currently used by nftables.
|
|
|
|
http://netfilter.org/projects/libnftnl/index.html
|
|
|
|
if BR2_PACKAGE_LIBNFTNL
|
|
|
|
config BR2_PACKAGE_LIBNFTNL_JSON
|
|
bool "enable JSON support"
|
|
select BR2_PACKAGE_JANSSON
|
|
help
|
|
Enable JSON parsing support
|
|
|
|
config BR2_PACKAGE_LIBNFTNL_XML
|
|
bool "enable XML support"
|
|
select BR2_PACKAGE_MXML
|
|
help
|
|
Enable XML parsing support
|
|
|
|
endif
|
|
|
|
comment "libnftnl needs a toolchain w/ threads, IPv6, largefile"
|
|
depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_INET_IPV6 || \
|
|
!BR2_LARGEFILE
|