mirror of
https://git.freebsd.org/ports.git
synced 2025-06-06 05:10:29 -04:00
Remove patch to add -I/usr/local/include in freetype-config --cflags. If ports need extra headers they should look for them, and not get them via a side-effect. Freetype had a header resuffle in 2.5.1, patch ports to use the new header style. Thanks go to bdrewery for the two exp-runs and rakuco for helping me with some troublesome cmake ports. PR: ports/184587
14 lines
378 B
C
14 lines
378 B
C
--- src/libpaps.c.orig 2013-12-16 16:10:33.000000000 +0100
|
|
+++ src/libpaps.c 2013-12-16 16:11:06.000000000 +0100
|
|
@@ -25,8 +25,9 @@
|
|
|
|
#include <pango/pango.h>
|
|
#include <pango/pangoft2.h>
|
|
-#include <freetype/ftglyph.h>
|
|
-#include <freetype/ftoutln.h>
|
|
+#include <ft2build.h>
|
|
+#include FT_GLYPH_H
|
|
+#include FT_OUTLINE_H
|
|
#include <errno.h>
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|