1 From f065a2967e22658565f4228b73b1511d291e343f Mon Sep 17 00:00:00 2001
2 From: Matthias Clasen <mclasen@redhat.com>
3 Date: Wed, 25 Aug 2021 19:24:35 +0200
4 Subject: [PATCH] Don't include individual pango headers
6 As in every gnome library, you are only supposed
7 to include the main pango.h header from the outside.
9 This was causing build failures after some recent
10 pango header rearrangements.
12 pango/src/attributes.hg | 2 +-
13 1 file changed, 1 insertion(+), 1 deletion(-)
15 diff --git a/pango/src/attributes.hg b/pango/src/attributes.hg
16 index e234497..bd09f0f 100644
17 --- a/pango/src/attributes.hg
18 +++ b/pango/src/attributes.hg
20 #include <pangomm/rectangle.h>
21 #include <pangomm/color.h>
22 #include <pangomm/fontdescription.h>
23 -#include <pango/pango-attributes.h>
24 +#include <pango/pango.h>
25 #include <glibmm/slisthandle.h>
28 --- a/pango/pangomm/attributes.h
29 +++ b/pango/pangomm/attributes.h
31 #include <pangomm/rectangle.h>
32 #include <pangomm/color.h>
33 #include <pangomm/fontdescription.h>
34 -#include <pango/pango-attributes.h>
35 +#include <pango/pango.h>
36 #include <glibmm/slisthandle.h>