108e9638b6
Retrieve upstream patch that fixes a build failure caused by strncat(): error: 'char* strncat(char*, const char*, size_t)' output may be truncated copying between 0 and 253 bytes from a string of length 253 This patch also allow to disable the use of the bundled tinyxml library so use this new option and add a dependency of openzwave on tinyxml to use it as a regular external library. Fixes: http://autobuild.buildroot.org/results/cbe0671831d874a5b96a944b891fe1eea823667b Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
18 lines
603 B
Plaintext
18 lines
603 B
Plaintext
config BR2_PACKAGE_OPENZWAVE
|
|
bool "openzwave"
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
depends on BR2_USE_WCHAR
|
|
select BR2_PACKAGE_TINYXML
|
|
help
|
|
Free software library that interfaces with selected Z-Wave
|
|
PC controllers, allowing anyone to create applications that
|
|
manipulate and respond to devices on a Z-Wave network,
|
|
without requiring in-depth knowledge of the Z-Wave protocol
|
|
|
|
http://www.openzwave.net
|
|
|
|
comment "openzwave needs a toolchain w/ C++, threads, wchar"
|
|
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS || \
|
|
!BR2_USE_WCHAR
|