xref: /OK3568_Linux_fs/buildroot/package/neard/Config.in (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1config 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
16	  https://git.kernel.org/pub/scm/network/nfc/neard.git
17
18if BR2_PACKAGE_NEARD
19
20config BR2_PACKAGE_NEARD_TOOLS
21	bool "neard tools"
22	help
23	  Build and install neard tools.
24
25endif
26
27comment "neard needs a toolchain w/ wchar, threads, dynamic library"
28	depends on BR2_USE_MMU
29	depends on BR2_TOOLCHAIN_HAS_SYNC_4
30	depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS
31