From b3ba2961d2aedf2f4b58f83a04b28841e7e7dded Mon Sep 17 00:00:00 2001 From: Leonardo Taccari Date: Fri, 9 Nov 2018 22:13:30 +0100 Subject: [PATCH] font chooser: Properly include freetype headers freetype headers should be included via and then indirectly via FT_*_H macros. Fixes issue #1432. --- gtk/gtkfontchooserwidget.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/gtk/gtkfontchooserwidget.c b/gtk/gtkfontchooserwidget.c index 1b1be3d9a2..9fac247a9f 100644 --- a/gtk/gtkfontchooserwidget.c +++ b/gtk/gtkfontchooserwidget.c @@ -61,8 +61,9 @@ #include #include #include -#include -#include +#include +#include FT_FREETYPE_H +#include FT_MULTIPLE_MASTERS_H #include "language-names.h" #include "script-names.h" #endif