631d0289fe
wchar is mandatory since switch to an active fork in commit
456a739831
:
In file included from /home/autobuild/autobuild/instance-13/output-1/build/zxing-cpp-1.4.0/core/src/Result.h:12,
from /home/autobuild/autobuild/instance-13/output-1/build/zxing-cpp-1.4.0/core/src/GTIN.cpp:9:
/home/autobuild/autobuild/instance-13/output-1/build/zxing-cpp-1.4.0/core/src/Content.h:40:14: error: 'wstring' in namespace 'std' does not name a type
40 | std::wstring render(bool withECI) const;
| ^~~~~~~
Fixes:
- http://autobuild.buildroot.org/results/4f97f1b291a99218f4706fce8b2934bd845755e1
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
19 lines
615 B
Plaintext
19 lines
615 B
Plaintext
comment "zxing-cpp needs a toolchain w/ C++, wchar, dynamic library"
|
|
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR || \
|
|
BR2_STATIC_LIBS
|
|
|
|
config BR2_PACKAGE_ZXING_CPP
|
|
bool "zxing-cpp"
|
|
depends on !BR2_STATIC_LIBS
|
|
depends on BR2_USE_WCHAR
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
select BR2_PACKAGE_STB
|
|
select BR2_PACKAGE_PYTHON_PYBIND if BR2_PACKAGE_PYTHON3
|
|
help
|
|
ZXing-cpp (pronounced "zebra crossing") is an open-source,
|
|
multi-format 1D/2D barcode image processing library
|
|
implemented in Java, with ports to other languages. This
|
|
compiles the C++ port.
|
|
|
|
https://github.com/zxing-cpp/zxing-cpp
|