ci: build on xcbproto/libxcb master
Make newer version and yet unreleased fixes available to our build. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
parent
3455cdcd3f
commit
66d7dbed01
|
|
@ -19,7 +19,7 @@ variables:
|
|||
FDO_UPSTREAM_REPO: xorg/xserver
|
||||
FDO_DISTRIBUTION_VERSION: bullseye-slim
|
||||
FDO_DISTRIBUTION_EXEC: 'env FDO_CI_CONCURRENT=${FDO_CI_CONCURRENT} bash .gitlab-ci/debian-install.sh'
|
||||
FDO_DISTRIBUTION_TAG: "2024-08-23-fix-cross"
|
||||
FDO_DISTRIBUTION_TAG: "2024-08-23-xcb-0"
|
||||
MESON_BUILDDIR: "build"
|
||||
|
||||
include:
|
||||
|
|
|
|||
|
|
@ -49,10 +49,10 @@ build 'https://gitlab.freedesktop.org/pixman/pixman.git' 'pixman-0.38.4'
|
|||
build 'https://gitlab.freedesktop.org/xorg/lib/pthread-stubs.git' '0.4'
|
||||
# we can't use the xorgproto pkgconfig files from /usr/share/pkgconfig, because
|
||||
# these would add -I/usr/include to CFLAGS, which breaks cross-compilation
|
||||
build 'https://gitlab.freedesktop.org/xorg/proto/xorgproto.git' 'xorgproto-2024.1' '--datadir=/lib'
|
||||
build 'https://gitlab.freedesktop.org/xorg/proto/xorgproto.git' 'master' '--datadir=/lib'
|
||||
build 'https://gitlab.freedesktop.org/xorg/lib/libXau.git' 'libXau-1.0.9'
|
||||
build 'https://gitlab.freedesktop.org/xorg/proto/xcbproto.git' 'xcb-proto-1.14.1'
|
||||
build 'https://gitlab.freedesktop.org/xorg/lib/libxcb.git' 'libxcb-1.14'
|
||||
build 'https://gitlab.freedesktop.org/xorg/proto/xcbproto.git' 'master'
|
||||
build 'https://gitlab.freedesktop.org/xorg/lib/libxcb.git' 'master'
|
||||
build 'https://gitlab.freedesktop.org/xorg/lib/libxtrans.git' 'xtrans-1.4.0'
|
||||
# the default value of keysymdefdir is taken from the includedir variable for
|
||||
# xproto, which isn't adjusted by pkg-config for the sysroot
|
||||
|
|
|
|||
|
|
@ -115,6 +115,15 @@ apt-get install -y \
|
|||
xtrans-dev \
|
||||
xutils-dev
|
||||
|
||||
# Xnest requires xcb bugfix
|
||||
git clone https://gitlab.freedesktop.org/xorg/proto/xcbproto.git --depth 1 --branch=master
|
||||
( cd xcbproto && ./autogen.sh --prefix=/usr && make && make install )
|
||||
rm -Rf xcbproto
|
||||
|
||||
git clone https://gitlab.freedesktop.org/xorg/lib/libxcb.git --depth 1 --branch=master
|
||||
( cd libxcb && ./autogen.sh --prefix=/usr && make && make install )
|
||||
rm -Rf libxcb
|
||||
|
||||
.gitlab-ci/cross-prereqs-build.sh i686-w64-mingw32
|
||||
|
||||
cd /root
|
||||
|
|
|
|||
Loading…
Reference in New Issue