1config BR2_PACKAGE_GCONF 2 bool "gconf" 3 depends on BR2_TOOLCHAIN_HAS_THREADS # dbus, libglib2 4 depends on BR2_USE_MMU # dbus, libglib2 5 depends on BR2_USE_WCHAR # libglib2 6 depends on !BR2_STATIC_LIBS 7 select BR2_PACKAGE_DBUS 8 select BR2_PACKAGE_DBUS_GLIB 9 select BR2_PACKAGE_LIBGLIB2 10 select BR2_PACKAGE_LIBXML2 11 help 12 GConf was a system used by the GNOME desktop environment for 13 storing configuration settings for the desktop and 14 applications. It is similar to the Windows Registry. 15 16 https://projects.gnome.org/gconf/ 17 18comment "gconf needs a toolchain w/ threads, wchar, dynamic library" 19 depends on BR2_USE_MMU 20 depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_USE_WCHAR \ 21 || BR2_STATIC_LIBS 22