Config.in 519 B

12345678910111213141516171819202122232425
  1. config BR2_PACKAGE_DBUS
  2. bool "dbus"
  3. help
  4. The D-Bus message bus system.
  5. http://www.freedesktop.org/wiki/Software/dbus
  6. choice
  7. prompt "XML library to use"
  8. depends on BR2_PACKAGE_DBUS
  9. default BR2_DBUS_EXPAT
  10. help
  11. Select the XML library to use with D-Bus. Select Expat
  12. unless you have specific reasons for using libxml2 as
  13. Expat is significant smaller.
  14. config BR2_DBUS_EXPAT
  15. bool "Expat"
  16. select BR2_PACKAGE_EXPAT
  17. config BR2_DBUS_LIBXML2
  18. bool "libxml2"
  19. select BR2_PACKAGE_LIBXML2
  20. endchoice