<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">Fix freetype include paths.
https://github.com/love2d/love/commit/3d82eecc0847ce13d22950ba21f912de6e526fe6
--- src/modules/font/freetype/Font.h
+++ src/modules/font/freetype/Font.h
@@ -30,10 +30,8 @@
 #else
 #include &lt;ft2build.h&gt;
 #endif
-#include &lt;freetype/freetype.h&gt;
-#include &lt;freetype/ftglyph.h&gt;
-#include &lt;freetype/ftoutln.h&gt;
-#include &lt;freetype/fttrigon.h&gt;
+#include FT_FREETYPE_H
+#include FT_GLYPH_H
 
 namespace love
 {
--- src/modules/font/freetype/TrueTypeRasterizer.h
+++ src/modules/font/freetype/TrueTypeRasterizer.h
@@ -27,10 +27,8 @@
 
 // TrueType2
 #include &lt;ft2build.h&gt;
-#include &lt;freetype/freetype.h&gt;
-#include &lt;freetype/ftglyph.h&gt;
-#include &lt;freetype/ftoutln.h&gt;
-#include &lt;freetype/fttrigon.h&gt;
+#include FT_FREETYPE_H
+#include FT_GLYPH_H
 
 namespace love
 {
</pre></body></html>