xref: /OK3568_Linux_fs/buildroot/package/libxmlpp/Config.in (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1config BR2_PACKAGE_LIBXMLPP
2	bool "libxml++"
3	depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # C++11
4	depends on BR2_INSTALL_LIBSTDCPP
5	depends on BR2_USE_WCHAR # glibmm -> libglib2
6	depends on BR2_TOOLCHAIN_HAS_THREADS # glibmm -> libglib2
7	depends on BR2_USE_MMU # glibmm -> libglib2
8	select BR2_PACKAGE_LIBXML2
9	select BR2_PACKAGE_GLIBMM
10	help
11	  libxml++ is a C++ wrapper for the libxml XML parser library.
12
13	  https://libxmlplusplus.github.io/libxmlplusplus/
14
15comment "libxml++ needs a toolchain w/ C++, wchar, threads, gcc >= 4.9"
16	depends on !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 || !BR2_USE_WCHAR \
17		||!BR2_TOOLCHAIN_HAS_THREADS || !BR2_INSTALL_LIBSTDCPP
18	depends on BR2_USE_MMU
19