Config.in 768 B

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