Config.in 553 B

1234567891011121314151617
  1. config BR2_PACKAGE_LUV
  2. bool "luv"
  3. depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL # libuv
  4. depends on BR2_USE_MMU # libuv
  5. depends on !BR2_STATIC_LIBS # libuv
  6. depends on BR2_TOOLCHAIN_HAS_SYNC_4 # libuv
  7. depends on !BR2_PACKAGE_LUA_5_4
  8. select BR2_PACKAGE_LIBUV
  9. help
  10. libuv bindings for LuaJIT and Lua.
  11. https://github.com/luvit/luv
  12. comment "luv needs a toolchain w/ NPTL, dynamic library, Lua <= 5.3"
  13. depends on !BR2_TOOLCHAIN_HAS_THREADS_NPTL || BR2_STATIC_LIBS || BR2_PACKAGE_LUA_5_4
  14. depends on BR2_USE_MMU
  15. depends on BR2_TOOLCHAIN_HAS_SYNC_4