git: fix build with with no threads
[buildroot-gz.git] / package / olsr / Config.in
blob85c5b4da1f876cbdd9d1b407a3c47ada77080c7b
1 config BR2_PACKAGE_OLSR
2         bool "olsr"
3         depends on BR2_USE_MMU # fork()
4         depends on BR2_TOOLCHAIN_HAS_THREADS
5         depends on !BR2_STATIC_LIBS
6         # doesn't build with musl,
7         # https://github.com/OLSR/olsrd/issues/6
8         depends on !BR2_TOOLCHAIN_USES_MUSL
9         help
10           The Optimized Link State Routing protocol (OLSR) is a
11           routing protocol that is optimised for mobile ad-hoc
12           networks, sometimes called wireless mesh networks. It is a
13           proactive link-state routing protocol that floods a full
14           topology table to all nodes in the network which then
15           compute optimal forwarding paths locally.
17           http://www.olsr.org/
19 comment "olsr needs a uClibc or glibc toolchain w/ threads, dynamic library"
20         depends on BR2_USE_MMU
21         depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS || \
22                 BR2_TOOLCHAIN_USES_MUSL