1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-09 23:34:20 +00:00

Fonts: Fix freetype compilation issues on Debian 10

This commit is contained in:
reuk 2024-09-17 20:16:20 +01:00 committed by reuk
parent df024aaf3b
commit 2a2ae47231
No known key found for this signature in database
GPG key ID: FCB43929F012EE5C
3 changed files with 7 additions and 4 deletions

View file

@ -115,6 +115,12 @@
#include <ft2build.h>
#include FT_FREETYPE_H
#include FT_ADVANCES_H
#include FT_TRUETYPE_TABLES_H
#include FT_GLYPH_H
#ifdef FT_COLOR_H
#include FT_COLOR_H
#endif
#endif
#if JUCE_USE_FONTCONFIG

View file

@ -87,6 +87,7 @@ JUCE_BEGIN_IGNORE_WARNINGS_GCC_LIKE ("-Wdeprecated-declarations",
#define __has_builtin(x) 1
#endif
#include <utility>
#include <juce_graphics/fonts/harfbuzz/hb.hh>
#include <juce_graphics/fonts/harfbuzz/harfbuzz.cc>

View file

@ -32,10 +32,6 @@
==============================================================================
*/
#include FT_TRUETYPE_TABLES_H
#include FT_GLYPH_H
#include FT_COLOR_H
namespace juce
{