pixman: Branch 'master'

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Thu Oct 27 18:24:27 UTC 2022


 meson.build |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 1a0d50ce708548e1a192bc48015876aa4531eda8
Author: Simon Ser <contact at emersion.fr>
Date:   Mon Oct 24 12:40:15 2022 +0200

    meson: explicitly set C standard to gnu99
    
    This explicitly indicates that GNU extensions (like asm) are used.
    This fixes build errors when Pixman is used as a Meson subproject.
    
    Signed-off-by: Simon Ser <contact at emersion.fr>

diff --git a/meson.build b/meson.build
index aa641d2..3d1f016 100644
--- a/meson.build
+++ b/meson.build
@@ -24,7 +24,7 @@ project(
   version : '0.42.1',
   license : 'MIT',
   meson_version : '>= 0.52.0',
-  default_options : ['buildtype=debugoptimized'],
+  default_options : ['c_std=gnu99', 'buildtype=debugoptimized'],
 )
 
 config = configuration_data()


More information about the xorg-commit mailing list