From 1a3ecc54aaf390d2393ec5f14faeded41c26d38d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marco=20Trevisan=20=28Trevi=C3=B1o=29?= Date: Thu, 20 Oct 2022 16:47:13 +0200 Subject: [PATCH] glib: Also include glibconfig.h in the libglib dependencies and sources It must be there to build, or we'd fail: See: https://gitlab.gnome.org/GNOME/glib/-/jobs/2346909 --- glib/meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/glib/meson.build b/glib/meson.build index a2400481f..5220d6ff4 100644 --- a/glib/meson.build +++ b/glib/meson.build @@ -5,6 +5,7 @@ glibconfig_h = configure_file(input : 'glibconfig.h.in', output : 'glibconfig.h' install_dir : join_paths(get_option('libdir'), 'glib-2.0/include'), install_tag : 'devel', configuration : glibconfig_conf) +glib_sources += glibconfig_h gversionmacros_h = custom_target( input: 'gversionmacros.h.in',