Config.in 858 B

123456789101112131415161718192021222324252627282930
  1. config BR2_PACKAGE_NEARD
  2. bool "neard"
  3. depends on BR2_USE_WCHAR # libglib2
  4. depends on BR2_TOOLCHAIN_HAS_THREADS # libnl, dbus, libglib2
  5. depends on BR2_USE_MMU # dbus, libglib2
  6. depends on !BR2_STATIC_LIBS # dlopen
  7. depends on BR2_TOOLCHAIN_HAS_SYNC_4
  8. select BR2_PACKAGE_DBUS
  9. select BR2_PACKAGE_LIBGLIB2
  10. select BR2_PACKAGE_LIBNL
  11. help
  12. Near Field Communication (NFC) manager. This userspace
  13. daemon is a part of the NFC stack provided by the Linux NFC
  14. project.
  15. https://git.kernel.org/pub/scm/network/nfc/neard.git
  16. if BR2_PACKAGE_NEARD
  17. config BR2_PACKAGE_NEARD_TOOLS
  18. bool "neard tools"
  19. help
  20. Build and install neard tools.
  21. endif
  22. comment "neard needs a toolchain w/ wchar, threads, dynamic library"
  23. depends on BR2_USE_MMU
  24. depends on BR2_TOOLCHAIN_HAS_SYNC_4
  25. depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS