kumquat-buildroot/package/libmnl/Config.in
Dario Binacchi ddcefbcfd8 package/libmnl: fix build failure
The rtnl-link-can application requires kernel headers of at least
version 4.11. Since the `make check` command compiles all examples, their
compilation is enabled only if the condition regarding the kernel headers
is satisfied.

Fixes:
- http://autobuild.buildroot.net/results/36c1619c8b02efeaf9caebae8bb5c3eb8a26238b/
- http://autobuild.buildroot.net/results/15f6dc103eec7bdeb5020acbc0ae99dc97c00e4e/

Signed-off-by: Dario Binacchi <dario.binacchi@amarulasolutions.com>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
2023-05-24 21:07:55 +02:00

21 lines
450 B
Plaintext

config BR2_PACKAGE_LIBMNL
bool "libmnl"
help
libmnl is a minimalistic user-space library oriented
to Netlink developers.
http://netfilter.org/projects/libmnl/
if BR2_PACKAGE_LIBMNL
config BR2_PACKAGE_LIBMNL_EXAMPLES
bool "install examples"
depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_11
help
Install binary examples.
comment "examples needs a toolchain w/ headers >= 4.11"
depends on !BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_11
endif