Config.in 705 B

123456789101112131415161718192021
  1. config 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. https://projects.gnome.org/gconf/
  16. comment "gconf needs a toolchain w/ threads, wchar, dynamic library"
  17. depends on BR2_USE_MMU
  18. depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_USE_WCHAR \
  19. || BR2_STATIC_LIBS