diff options
author | Matthias Clasen <mclasen@redhat.com> | 2019-07-28 11:52:10 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2019-07-28 11:52:10 -0400 |
commit | a7b17aa2bad77c485943c860a20aedc2b2b115ff (patch) | |
tree | c9241b7e1bfed2e224b9b808307a49572c3dac93 | |
parent | d0a3b2cabbe448cfa4b98b9dfba9ff8ccc696b82 (diff) | |
download | pango-a7b17aa2bad77c485943c860a20aedc2b2b115ff.tar.gz |
Fix up harfbuzz includes
The correct include is without harfbuzz/.
Closes: https://gitlab.gnome.org/GNOME/pango/issues/387
-rw-r--r-- | pango/pango-coverage.h | 2 | ||||
-rw-r--r-- | pango/pango-font.h | 2 | ||||
-rw-r--r-- | pango/pangocoretext.c | 2 | ||||
-rw-r--r-- | pango/pangofc-font.c | 2 | ||||
-rw-r--r-- | utils/pango-list.c | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/pango/pango-coverage.h b/pango/pango-coverage.h index e46f34d1..9189af24 100644 --- a/pango/pango-coverage.h +++ b/pango/pango-coverage.h @@ -25,7 +25,7 @@ #include <glib.h> #include <pango/pango-version-macros.h> -#include <harfbuzz/hb.h> +#include <hb.h> G_BEGIN_DECLS diff --git a/pango/pango-font.h b/pango/pango-font.h index 41d9dff5..13730fa5 100644 --- a/pango/pango-font.h +++ b/pango/pango-font.h @@ -26,7 +26,7 @@ #include <pango/pango-types.h> #include <glib-object.h> -#include <harfbuzz/hb.h> +#include <hb.h> G_BEGIN_DECLS diff --git a/pango/pangocoretext.c b/pango/pangocoretext.c index 4975ade2..c261615e 100644 --- a/pango/pangocoretext.c +++ b/pango/pangocoretext.c @@ -32,7 +32,7 @@ #include "pangocoretext.h" #include "pangocoretext-private.h" -#include <harfbuzz/hb-coretext.h> +#include <hb-coretext.h> struct _PangoCoreTextFontPrivate { diff --git a/pango/pangofc-font.c b/pango/pangofc-font.c index 7d9eb782..5ed9b792 100644 --- a/pango/pangofc-font.c +++ b/pango/pangofc-font.c @@ -48,7 +48,7 @@ #include <ft2build.h> #include FT_MULTIPLE_MASTERS_H -#include <harfbuzz/hb-ot.h> +#include <hb-ot.h> enum { PROP_0, diff --git a/utils/pango-list.c b/utils/pango-list.c index b3688233..f22792df 100644 --- a/utils/pango-list.c +++ b/utils/pango-list.c @@ -22,7 +22,7 @@ #include "config.h" #include <pango/pangocairo.h> -#include <harfbuzz/hb-ot.h> +#include <hb-ot.h> #include <glib/gstdio.h> #include <stdlib.h> |