From 34964b6a98ca74a70ca1b956e90bebac089c641e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Mon, 24 Jan 2022 19:44:32 +0200 Subject: [PATCH] ges: Include ges-image-source.h in the installed headers It's referenced by `ges.h` and was previously available, so removing it is an API change. Fixes https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/963 Part-of: --- subprojects/gst-editing-services/ges/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subprojects/gst-editing-services/ges/meson.build b/subprojects/gst-editing-services/ges/meson.build index 79900bab3f..4d1d039737 100644 --- a/subprojects/gst-editing-services/ges/meson.build +++ b/subprojects/gst-editing-services/ges/meson.build @@ -224,7 +224,7 @@ endif # GESImageSource is unused and is internal only so it gets stripped out when we statically # link GES. We keep the header for backward compatibility reasons. -install_headers(ges_headers, subdir : 'gstreamer-1.0/ges') +install_headers(ges_headers + files('ges-image-source.h'), subdir : 'gstreamer-1.0/ges') libraries += [[pkg_name, library_def]] ges_dep = declare_dependency(link_with : libges,