gnome-settings-daemon: add alsa as a mandatory dependency

In case the recipe is compiled without alsa DISTRO_FEATURE,
compilation fails with the following error:

../sources/gnome-settings-daemon-49.1/meson.build:132:0: ERROR: Assert failed: ALSA is not optional on Linux platforms

This change makes alsa a standard non-optional dependency.

Alsa is enabled by default in the upstream meson config, it is
not enabled explicitly in the recipe.

Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
Gyorgy Sarvari 2026-03-14 18:14:07 +01:00 committed by Khem Raj
parent 84d6a691c8
commit 8ceaab26fb
No known key found for this signature in database
GPG Key ID: BB053355919D3314

View File

@ -18,23 +18,23 @@ DEPENDS = " \
upower \ upower \
libwacom \ libwacom \
networkmanager \ networkmanager \
alsa-lib \
" "
# all these are mandatory # all these are mandatory
REQUIRED_DISTRO_FEATURES = "polkit pulseaudio systemd gobject-introspection-data" REQUIRED_DISTRO_FEATURES = "alsa polkit pulseaudio systemd gobject-introspection-data"
GIR_MESON_OPTION = "" GIR_MESON_OPTION = ""
SRC_URI += "file://0001-gsd-smartcard-enum-types.c.in-fix-reproducibility-is.patch" SRC_URI += "file://0001-gsd-smartcard-enum-types.c.in-fix-reproducibility-is.patch"
SRC_URI[archive.sha256sum] = "2a9957fc4f91c3b9127b49484179bef485120d9c1c208e44d44e6a746e6cc1c1" SRC_URI[archive.sha256sum] = "2a9957fc4f91c3b9127b49484179bef485120d9c1c208e44d44e6a746e6cc1c1"
PACKAGECONFIG ??= " \ PACKAGECONFIG ??= " \
${@bb.utils.filter('DISTRO_FEATURES', 'systemd x11 alsa', d)} \ ${@bb.utils.filter('DISTRO_FEATURES', 'systemd x11', d)} \
${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'xwayland', '', d)} \ ${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'xwayland', '', d)} \
gudev \ gudev \
smartcard \ smartcard \
cups \ cups \
" "
PACKAGECONFIG[alsa] = "-Dalsa=true,-Dalsa=false,alsa-lib"
PACKAGECONFIG[cups] = "-Dcups=true,-Dcups=false,cups" PACKAGECONFIG[cups] = "-Dcups=true,-Dcups=false,cups"
PACKAGECONFIG[gudev] = "-Dgudev=true,-Dgudev=false,libgudev" PACKAGECONFIG[gudev] = "-Dgudev=true,-Dgudev=false,libgudev"
PACKAGECONFIG[smartcard] = "-Dsmartcard=true,-Dsmartcard=false,nss" PACKAGECONFIG[smartcard] = "-Dsmartcard=true,-Dsmartcard=false,nss"