diff options
author | Andrej Valek <andrej.v@skyrain.eu> | 2025-06-05 11:03:35 +0200 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2025-06-05 08:11:28 -0700 |
commit | e3e109465e2a90a8535c4db8bedf702620edac92 (patch) | |
tree | 9c51c86eec062ed467ed0f21116ed42e90d15b25 | |
parent | 0ae908de1a5ea3de90e6051f038b3836c7027b0c (diff) | |
download | meta-openembedded-e3e109465e2a90a8535c4db8bedf702620edac92.tar.gz |
freerdp: move alsa to packageconfig
This will allow to disable alsa which pulls the audio stuff even if
it could be disabled.
Signed-off-by: Andrej Valek <andrej.v@skyrain.eu>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-oe/recipes-support/freerdp/freerdp_2.11.7.bb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/meta-oe/recipes-support/freerdp/freerdp_2.11.7.bb b/meta-oe/recipes-support/freerdp/freerdp_2.11.7.bb index 846ebbf28f..e200f59b05 100644 --- a/meta-oe/recipes-support/freerdp/freerdp_2.11.7.bb +++ b/meta-oe/recipes-support/freerdp/freerdp_2.11.7.bb | |||
@@ -3,7 +3,7 @@ | |||
3 | 3 | ||
4 | DESCRIPTION = "FreeRDP RDP client & server library" | 4 | DESCRIPTION = "FreeRDP RDP client & server library" |
5 | HOMEPAGE = "http://www.freerdp.com" | 5 | HOMEPAGE = "http://www.freerdp.com" |
6 | DEPENDS = "openssl alsa-lib libusb1" | 6 | DEPENDS = "openssl libusb1" |
7 | SECTION = "net" | 7 | SECTION = "net" |
8 | LICENSE = "Apache-2.0" | 8 | LICENSE = "Apache-2.0" |
9 | LIC_FILES_CHKSUM = "file://LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57" | 9 | LIC_FILES_CHKSUM = "file://LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57" |
@@ -26,7 +26,6 @@ SRC_URI = "git://github.com/FreeRDP/FreeRDP.git;branch=stable-2.0;protocol=https | |||
26 | S = "${WORKDIR}/git" | 26 | S = "${WORKDIR}/git" |
27 | 27 | ||
28 | EXTRA_OECMAKE += " \ | 28 | EXTRA_OECMAKE += " \ |
29 | -DWITH_ALSA=ON \ | ||
30 | -DWITH_FFMPEG=OFF \ | 29 | -DWITH_FFMPEG=OFF \ |
31 | -DWITH_CUNIT=OFF \ | 30 | -DWITH_CUNIT=OFF \ |
32 | -DWITH_NEON=OFF \ | 31 | -DWITH_NEON=OFF \ |
@@ -38,7 +37,7 @@ EXTRA_OECMAKE += " \ | |||
38 | 37 | ||
39 | PACKAGECONFIG ??= " \ | 38 | PACKAGECONFIG ??= " \ |
40 | ${@bb.utils.filter('DISTRO_FEATURES', 'directfb pam pulseaudio wayland x11', d)}\ | 39 | ${@bb.utils.filter('DISTRO_FEATURES', 'directfb pam pulseaudio wayland x11', d)}\ |
41 | gstreamer cups pcsc server \ | 40 | alsa gstreamer cups pcsc server \ |
42 | " | 41 | " |
43 | 42 | ||
44 | X11_DEPS = "virtual/libx11 libxinerama libxext libxcursor libxv libxi libxrender libxfixes libxdamage libxrandr libxkbfile" | 43 | X11_DEPS = "virtual/libx11 libxinerama libxext libxcursor libxv libxi libxrender libxfixes libxdamage libxrandr libxkbfile" |
@@ -51,6 +50,7 @@ PACKAGECONFIG[pulseaudio] = "-DWITH_PULSEAUDIO=ON,-DWITH_PULSEAUDIO=OFF,pulseaud | |||
51 | PACKAGECONFIG[gstreamer] = "-DWITH_GSTREAMER_1_0=ON,-DWITH_GSTREAMER_1_0=OFF,gstreamer1.0 gstreamer1.0-plugins-base" | 50 | PACKAGECONFIG[gstreamer] = "-DWITH_GSTREAMER_1_0=ON,-DWITH_GSTREAMER_1_0=OFF,gstreamer1.0 gstreamer1.0-plugins-base" |
52 | PACKAGECONFIG[cups] = "-DWITH_CUPS=ON,-DWITH_CUPS=OFF,cups" | 51 | PACKAGECONFIG[cups] = "-DWITH_CUPS=ON,-DWITH_CUPS=OFF,cups" |
53 | PACKAGECONFIG[server] = "-DWITH_SERVER=ON,-DWITH_SERVER=OFF" | 52 | PACKAGECONFIG[server] = "-DWITH_SERVER=ON,-DWITH_SERVER=OFF" |
53 | PACKAGECONFIG[alsa] = "-DWITH_ALSA=ON,-DWITH_ALSA=OFF,alsa-lib" | ||
54 | 54 | ||
55 | PACKAGES =+ "libfreerdp" | 55 | PACKAGES =+ "libfreerdp" |
56 | 56 | ||