pixman: Branch 'master'

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Fri Feb 17 19:51:13 UTC 2023


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

New commits:
commit e4c878d17942346dce5f54b25d7624440ef47de6
Author: Emanuel Schmidt <eschmidt216 at gmail.com>
Date:   Fri Feb 17 18:47:35 2023 +0100

    Fixed missing dependency in libdemo
    
    After the latest changes and separation of demo- and test-targets,
    it was visible that a dependency towards `libtestutils_dep` was
    missing in one of the demo-dependencies. This change will fix
    this particular problem.

diff --git a/demos/meson.build b/demos/meson.build
index c844e92..cff3cf2 100644
--- a/demos/meson.build
+++ b/demos/meson.build
@@ -47,7 +47,7 @@ if dep_gtk.found()
   libdemo = static_library(
     'demo',
     ['gtk-utils.c', config_h, version_h],
-    dependencies : [dep_gtk, dep_glib, dep_png, dep_m, dep_openmp],
+    dependencies : [libtestutils_dep, dep_gtk, dep_glib, dep_png, dep_m, dep_openmp],
     include_directories : inc_pixman,
   )
 


More information about the xorg-commit mailing list