build-sys: Fix build error when sanitizers are enabled

Re-running 'meson setup' with sanitizer flags caused the following
error: 'ERROR: Unknown options: "b_lundef, b_sanitize"'

This is a workaround for an upstream Meson issue:
https://github.com/mesonbuild/meson/issues/13651

Signed-off-by: correctmost <126085-correctmost@users.noreply.gitlab.freedesktop.org>
Signed-off-by: Frediano Ziglio <freddy77@gmail.com>
This commit is contained in:
correctmost 2025-03-31 04:33:06 -04:00 committed by Frediano Ziglio
parent 2117405f95
commit 3a9e3668f1
2 changed files with 2 additions and 0 deletions

View File

@ -5,6 +5,7 @@ variables:
meson ninja-build gtk-doc glib2-devel
gettext gettext-devel bzip2 rpmlint rpm-build
mingw32-filesystem mingw64-filesystem
mingw32-gcc mingw64-gcc
before_script:
- dnf install -y $DEPS_COMMON

View File

@ -2,6 +2,7 @@
# project definition
#
project('spice-protocol',
'c',
version : '0.14.5',
license : 'BSD',
meson_version : '>= 0.41.0')