mirror of
https://github.com/X11Libre/xserver.git
synced 2026-03-24 10:14:52 +00:00
Use the new xorg-sdk build type instead of building a complete Xserver, to compile our drivers against. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
14 lines
346 B
Bash
Executable File
14 lines
346 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
. .github/scripts/util.sh
|
|
|
|
mkdir -p $X11_BUILD_DIR
|
|
cd $X11_BUILD_DIR
|
|
|
|
if [ "$X11_OS" = "Linux" ]; then
|
|
build_meson drm $(fdo_mirror drm) libdrm-2.4.121 -Domap=enabled -Dfreedreno=enabled
|
|
fi
|
|
build_meson xorgproto $(fdo_mirror xorgproto) xorgproto-2024.1
|