mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-19 16:40:46 -09:00
The wireplumber currently as "dbus" in its DEPENDENCIES, but it does not select/depend on it at the Kconfig level. A simple configuration such as: BR2_PACKAGE_LUA=y BR2_PACKAGE_PIPEWIRE=y BR2_PACKAGE_WIREPLUMBER=y Therefore fails to build with: Makefile:576: *** dbus is in the dependency chain of wireplumber that has added it to its _DEPENDENCIES variable without selecting it or depending on it from Config.in. Stop. Since dbus is actually an optional dependency of wireplumber, this commit fixes the issue by really handling it as an optional dependency. Fixes:c9a3c10417("package/wireplumber: new package") Signed-off-by: Théo Lebrun <theo.lebrun@bootlin.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com> (cherry picked from commit2699eb5631) Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
44 lines
1.2 KiB
Makefile
44 lines
1.2 KiB
Makefile
################################################################################
|
|
#
|
|
# wireplumber
|
|
#
|
|
################################################################################
|
|
|
|
WIREPLUMBER_VERSION = 0.4.2
|
|
WIREPLUMBER_SOURCE = wireplumber-$(WIREPLUMBER_VERSION).tar.bz2
|
|
WIREPLUMBER_SITE = https://gitlab.freedesktop.org/pipewire/wireplumber/-/archive/$(WIREPLUMBER_VERSION)
|
|
WIREPLUMBER_LICENSE = MIT
|
|
WIREPLUMBER_LICENSE_FILES = LICENSE
|
|
WIREPLUMBER_DEPENDENCIES = host-pkgconf pipewire libglib2 lua
|
|
|
|
WIREPLUMBER_CONF_OPTS = \
|
|
-Ddoc=disabled \
|
|
-Dsystem-lua=true \
|
|
-Dsystem-lua-version=
|
|
|
|
ifeq ($(BR2_PACKAGE_DBUS),y)
|
|
WIREPLUMBER_DEPENDENCIES += dbus
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_GOBJECT_INTROSPECTION),y)
|
|
WIREPLUMBER_DEPENDENCIES += host-doxygen host-python-lxml gobject-introspection
|
|
WIREPLUMBER_CONF_OPTS += -Dintrospection=enabled
|
|
else
|
|
WIREPLUMBER_CONF_OPTS += -Dintrospection=disabled
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_SYSTEMD),y)
|
|
WIREPLUMBER_DEPENDENCIES += systemd
|
|
WIREPLUMBER_CONF_OPTS += \
|
|
-Dsystemd=enabled \
|
|
-Dsystemd-system-service=true \
|
|
-Dsystemd-user-service=true
|
|
else
|
|
WIREPLUMBER_CONF_OPTS += \
|
|
-Dsystemd=disabled \
|
|
-Dsystemd-system-service=false \
|
|
-Dsystemd-user-service=false
|
|
endif
|
|
|
|
$(eval $(meson-package))
|