From 83e38a44136e09fa44985df6552bc887a616bc1b Mon Sep 17 00:00:00 2001 From: Marc Ferland Date: Tue, 28 Oct 2025 08:54:36 -0400 Subject: [PATCH] freerdp3: fix configure warning about image scaling Adding WITH_CAIRO=ON to fix this warning: CMake Warning at libfreerdp/CMakeLists.txt:193 (message): -DWITH_SWSCALE=OFF and -DWITH_CAIRO=OFF, compiling without image scaling support! Signed-off-by: Marc Ferland Signed-off-by: Khem Raj --- meta-oe/recipes-support/freerdp/freerdp3_3.17.2.bb | 1 + 1 file changed, 1 insertion(+) diff --git a/meta-oe/recipes-support/freerdp/freerdp3_3.17.2.bb b/meta-oe/recipes-support/freerdp/freerdp3_3.17.2.bb index ae87bd0925..7a95f5399e 100644 --- a/meta-oe/recipes-support/freerdp/freerdp3_3.17.2.bb +++ b/meta-oe/recipes-support/freerdp/freerdp3_3.17.2.bb @@ -34,6 +34,7 @@ EXTRA_OECMAKE = " \ -DWITH_ALSA=OFF \ -DWITH_CLIENT_SDL=OFF \ -DWITH_SAMPLE=OFF \ + -DWITH_CAIRO=ON \ " X11_DEPS = "virtual/libx11 libxinerama libxext libxcursor libxv libxi libxrender libxfixes libxdamage libxrandr libxkbfile"