From e12a55a4ea80ca530089c7191162ee9f34a5aca9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Manuel=20J=C3=A1quez=20Leal?= Date: Mon, 17 Sep 2018 17:45:42 +0200 Subject: [PATCH] gl: meson: add missing headers for gir generations There are a lot of symbols in GstGL-1.0.gir generated by automake that are not when it is generated by meson, because a lot of headers were not included in meson's gir generation. https://bugzilla.gnome.org/show_bug.cgi?id=797158 --- gst-libs/gst/gl/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst-libs/gst/gl/meson.build b/gst-libs/gst/gl/meson.build index ed4fbe5fcf..b08e4d417d 100644 --- a/gst-libs/gst/gl/meson.build +++ b/gst-libs/gst/gl/meson.build @@ -890,7 +890,7 @@ if build_gstgl gen_sources = [] if build_gir gl_gir = gnome.generate_gir(gstgl, - sources : gl_sources + gir_gl_headers, + sources : gl_sources + gir_gl_headers + gl_x11_headers + gl_wayland_headers + gl_win32_headers + gl_cocoa_headers + gl_egl_headers, namespace : 'GstGL', nsversion : api_version, identifier_prefix : 'Gst',