93e9b5378d
neardal is licensed under LGPL-2.0, which is (most likely) not license compatible with readline (GPL-3.0+), so always use the libedit backend. The choice is done by ./configure, which first checks for libedit, and uses readline only as a fallback. Since we do build libedit before neardal, that's what is going to be picked up. Signed-off-by: Peter Korsgaard <peter@korsgaard.com> [yann.morin.1998@free.fr: - add blurb about preference in ./configure ] Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
27 lines
661 B
Plaintext
27 lines
661 B
Plaintext
config BR2_PACKAGE_NEARDAL
|
|
bool "neardal"
|
|
depends on BR2_USE_WCHAR # glib2
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # dbus, glib2
|
|
depends on BR2_USE_MMU # dbus
|
|
select BR2_PACKAGE_DBUS
|
|
select BR2_PACKAGE_DBUS_GLIB
|
|
select BR2_PACKAGE_LIBEDIT
|
|
help
|
|
Provides a simple C API to exchange data with the neard NFC
|
|
manager daemon.
|
|
|
|
https://github.com/connectivity/neardal
|
|
|
|
if BR2_PACKAGE_NEARDAL
|
|
|
|
config BR2_PACKAGE_NEARDAL_NCL
|
|
bool "ncl tool"
|
|
help
|
|
Build and install neardal ncl command line interpreter tool.
|
|
|
|
endif
|
|
|
|
comment "neardal needs a toolchain w/ wchar, threads"
|
|
depends on BR2_USE_MMU
|
|
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
|