From 7451cc042e26474b0f538bcf1325c801243f588e Mon Sep 17 00:00:00 2001 From: Gilles Schintgen Date: Tue, 30 Apr 2024 08:28:13 +0200 Subject: [PATCH] AppImage: make libva build options more explicit --- .github/workflows/CI.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 769705e53f2..9110ff1f0b6 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -390,7 +390,12 @@ jobs: gh release download --archive=tar.gz --repo=intel/libva tar xzf libva-*.tar.gz && rm libva-*.tar.gz cd libva-* - ./autogen.sh --prefix=/usr --libdir=/usr/lib/x86_64-linux-gnu --enable-x11 --without-legacy + ./autogen.sh --prefix=/usr --libdir=/usr/lib/x86_64-linux-gnu \ + --enable-drm \ + --enable-x11 \ + --enable-glx \ + --enable-wayland \ + --without-legacy # emgd, nvctrl, fglrx make -j $(nproc) sudo make install cd .. && rm -rf libva-*