1config BR2_PACKAGE_LIBGLADE
2	bool "libglade"
3	depends on BR2_PACKAGE_LIBGTK2
4	depends on BR2_USE_WCHAR # glib2
5	depends on BR2_TOOLCHAIN_HAS_THREADS # glib2
6	depends on BR2_USE_MMU # glib2
7	select BR2_PACKAGE_LIBGLIB2
8	select BR2_PACKAGE_AT_SPI2_CORE
9	select BR2_PACKAGE_LIBXML2
10	help
11	  Libglade allows you to load glade interface files in a program
12	  at runtime. It doesn't require GLADE to be used, but GLADE is
13	  by far the easiest way to create the interface files.
14
15	  https://download.gnome.org/sources/libglade/
16
17comment "libglade needs a toolchain w/ wchar, threads"
18	depends on BR2_USE_MMU
19	depends on BR2_PACKAGE_LIBGTK2
20	depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
21