mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-29 14:16:31 +00:00
Fix dependency loop in dbus
This commit is contained in:
parent
e1498416ac
commit
38b99b0381
@ -1,11 +1,15 @@
|
|||||||
config BR2_PACKAGE_DBUS
|
config BR2_PACKAGE_DBUS
|
||||||
bool "dbus"
|
bool "dbus"
|
||||||
default n
|
default n
|
||||||
|
depends on BR2_PACKAGE_EXPAT || BR2_PACKAGE_LIBXML2
|
||||||
help
|
help
|
||||||
The D-Bus message bus system.
|
The D-Bus message bus system.
|
||||||
|
|
||||||
http://www.freedesktop.org/wiki/Software/dbus
|
http://www.freedesktop.org/wiki/Software/dbus
|
||||||
|
|
||||||
|
comment "dbus not available (need expat or libxml2)
|
||||||
|
depends on !BR2_PACKAGE_EXPAT && !BR2_PACKAGE_LIBXML2
|
||||||
|
|
||||||
choice
|
choice
|
||||||
prompt "XML library to use"
|
prompt "XML library to use"
|
||||||
depends BR2_PACKAGE_DBUS
|
depends BR2_PACKAGE_DBUS
|
||||||
@ -18,10 +22,10 @@ choice
|
|||||||
|
|
||||||
config BR2_DBUS_EXPAT
|
config BR2_DBUS_EXPAT
|
||||||
bool "Expat"
|
bool "Expat"
|
||||||
select BR2_PACKAGE_EXPAT
|
depends on BR2_PACKAGE_EXPAT
|
||||||
|
|
||||||
config BR2_DBUS_LIBXML2
|
config BR2_DBUS_LIBXML2
|
||||||
bool "libxml2"
|
bool "libxml2"
|
||||||
select BR2_PACKAGE_LIBXML2
|
depends on BR2_PACKAGE_LIBXML2
|
||||||
|
|
||||||
endchoice
|
endchoice
|
||||||
|
Loading…
x
Reference in New Issue
Block a user