From 64bcc5b4626ea9def041e78ba9a91636a403f7d0 Mon Sep 17 00:00:00 2001 From: Emmanuele Bassi Date: Tue, 18 Apr 2017 14:13:51 +0100 Subject: [PATCH] build: Do not mix private and public GDK headers The type generation script inside gtk/ will use the `gdk_headers` variable, and that must not contain private headers. --- gdk/meson.build | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/gdk/meson.build b/gdk/meson.build index 35cf05eb85..692da52cfd 100644 --- a/gdk/meson.build +++ b/gdk/meson.build @@ -96,7 +96,7 @@ gdkresources = gnome.compile_resources('gdkresources', c_name: '_gdk', extra_args: '--manual-register') -gdk_headers = gdk_public_headers + gdk_private_h_sources +gdk_headers = gdk_public_headers gdk_enums = gnome.mkenums('gdkenumtypes', sources: gdk_public_headers, @@ -167,7 +167,8 @@ gdk_sources += [ gdk_marshalers, gdkresources, gdkversionmacros, - gdk_headers + gdk_private_h_sources, + gdk_public_headers ] if wayland_enabled or broadway_enabled