Changeset - r28465:dc5543f2a315
[Not reviewed]
master
0 1 0
Patric Stout - 3 months ago 2024-01-15 20:59:19
truebrain@openttd.org
Fix: [Linux] install all X11 dependencies in linux-generic (#11787)

Without this, xrandr support is not compiled into SDL, which means
that SDL will only see a single display spanning all your displays
(a virtual desktop).
1 file changed with 16 insertions and 0 deletions:
0 comments (0 inline, 0 general)
.github/workflows/release-linux.yml
Show inline comments
 
@@ -119,6 +119,22 @@ jobs:
 
          # EOF
 
        echo "::endgroup::"
 

	
 
        echo "::group::Install video drivers"
 
        # These video libs are to make sure the SDL version of vcpkg adds
 
        # video-support; these libraries are not added to the resulting
 
        # binary, but the headers are used to enable them in SDL.
 
        yum install -y \
 
          libX11-devel \
 
          libXcursor-devel \
 
          libXext-devel \
 
          libXfixes-devel \
 
          libXi-devel \
 
          libxkbcommon-devel \
 
          libXrandr-devel \
 
          libXScrnSaver-devel \
 
          # EOF
 
        echo "::endgroup::"
 

	
 
        # We use vcpkg for our dependencies, to get more up-to-date version.
 
        echo "::group::Install vcpkg and dependencies"
 

	
0 comments (0 inline, 0 general)