Config.in 762 B

123456789101112131415161718192021222324252627282930
  1. config BR2_PACKAGE_DBUS
  2. bool "dbus"
  3. depends on BR2_PACKAGE_EXPAT || BR2_PACKAGE_LIBXML2
  4. help
  5. The D-Bus message bus system.
  6. http://www.freedesktop.org/wiki/Software/dbus
  7. comment "dbus not available (need expat or libxml2)"
  8. depends on !BR2_PACKAGE_EXPAT && !BR2_PACKAGE_LIBXML2
  9. choice
  10. prompt "XML library to use"
  11. depends on BR2_PACKAGE_DBUS
  12. default BR2_DBUS_LIBXML2 if (BR2_PACKAGE_LIBXML2 && !BR2_PACKAGE_EXPAT)
  13. default BR2_DBUS_EXPAT
  14. help
  15. Select the XML library to use with D-Bus. Select Expat
  16. unless you have specific reasons for using libxml2 as
  17. Expat is significant smaller.
  18. config BR2_DBUS_EXPAT
  19. bool "Expat"
  20. depends on BR2_PACKAGE_EXPAT
  21. config BR2_DBUS_LIBXML2
  22. bool "libxml2"
  23. depends on BR2_PACKAGE_LIBXML2
  24. endchoice