1config BR2_PACKAGE_LIBXMLB
2	bool "libxmlb"
3	depends on !BR2_STATIC_LIBS # glib2
4	depends on BR2_TOOLCHAIN_HAS_THREADS # glib2
5	depends on BR2_USE_MMU # glib2
6	depends on BR2_USE_WCHAR # glib2
7	select BR2_PACKAGE_LIBGLIB2
8	help
9	  The libxmlb library takes XML source, and converts it
10	  to a structured binary representation with a deduplicated
11	  string table where the strings have the NULs included.
12
13	  https://github.com/hughsie/libxmlb
14
15comment "libxmlb needs a toolchain w/ wchar, threads, dynamic library"
16	depends on BR2_USE_MMU
17	depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS
18