pixman: Branch 'master'

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Wed Aug 30 15:57:21 UTC 2023


 meson.build |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 695261d13026b72ff15f6c2ecded0f4dcb7b97da
Author: Matt Turner <mattst88 at gmail.com>
Date:   Wed Aug 30 11:54:19 2023 -0400

    meson: Fix syntax

diff --git a/meson.build b/meson.build
index b5f78f7..3a1abb4 100644
--- a/meson.build
+++ b/meson.build
@@ -440,8 +440,8 @@ else
   dep_openmp = null_dep
 endif
 
-dep_gtk = dependency('gtk+-3.0', required : get_option('gtk'), required: get_option('demos'))
-dep_glib = dependency('glib-2.0', required : get_option('gtk'), required: get_option('demos'))
+dep_gtk = dependency('gtk+-3.0', required : get_option('gtk') and get_option('demos'))
+dep_glib = dependency('glib-2.0', required : get_option('gtk') and get_option('demos'))
 
 dep_png = null_dep
 if not get_option('libpng').disabled()


More information about the xorg-commit mailing list