6e61a4ce04
Commit 4e60247be6
("package/xerces: fix
coding style in Config.in") introduced a silly typo in the xerces
package depends on... which effectively made it impossible to enable
this package as the "USE_WCHAR" option does not exist.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
22 lines
480 B
Plaintext
22 lines
480 B
Plaintext
config BR2_PACKAGE_XERCES
|
|
bool "xerces-c++"
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
depends on BR2_USE_WCHAR
|
|
help
|
|
Xerces-C++ is a validating XML parser written in portable C++.
|
|
|
|
http://xerces.apache.org/xerces-c/
|
|
|
|
if BR2_PACKAGE_XERCES
|
|
|
|
config BR2_PACKAGE_XERCES_ENABLE_NETWORK
|
|
bool "Enable network support"
|
|
default y
|
|
help
|
|
Enable network support in xerces
|
|
|
|
endif
|
|
|
|
comment "xerces-c++ needs a toolchain w/ C++, wchar"
|
|
depends on !(BR2_INSTALL_LIBSTDCPP && BR2_USE_WCHAR)
|