diff options
author | ale <ale@FreeBSD.org> | 2004-03-19 00:02:49 +0800 |
---|---|---|
committer | ale <ale@FreeBSD.org> | 2004-03-19 00:02:49 +0800 |
commit | 7b75540432a083fff96131c4598184df98208342 (patch) | |
tree | 77e8bdd0b6e787d10dfe60717fa6e389524a81a9 /lang/php5 | |
parent | cd7db93a2ec64ab62fd246ca4b88e5faf02c8d54 (diff) | |
download | freebsd-ports-gnome-7b75540432a083fff96131c4598184df98208342.tar.gz freebsd-ports-gnome-7b75540432a083fff96131c4598184df98208342.tar.zst freebsd-ports-gnome-7b75540432a083fff96131c4598184df98208342.zip |
Fix build with new freetype2 library.
PR: ports/64417
Submitted by: Renato Botelho <renato@galle.com.br>
Diffstat (limited to 'lang/php5')
-rw-r--r-- | lang/php5/Makefile | 1 | ||||
-rw-r--r-- | lang/php5/files/patch-ext::gd::libgd::gdft.c | 11 |
2 files changed, 11 insertions, 1 deletions
diff --git a/lang/php5/Makefile b/lang/php5/Makefile index aa5516fb0322..b0e011afaaf5 100644 --- a/lang/php5/Makefile +++ b/lang/php5/Makefile @@ -45,7 +45,6 @@ PKGNAMESUFFIX= -cli .endif .endif DISTNAME= php-${PORTVERSION:S/.a/a/} -DISTFILES= ${DISTNAME}${EXTRACT_SUFX} MAINTAINER?= ale@FreeBSD.org COMMENT?= PHP Scripting Language (Apache Module and CLI) diff --git a/lang/php5/files/patch-ext::gd::libgd::gdft.c b/lang/php5/files/patch-ext::gd::libgd::gdft.c new file mode 100644 index 000000000000..beadf4bf3935 --- /dev/null +++ b/lang/php5/files/patch-ext::gd::libgd::gdft.c @@ -0,0 +1,11 @@ +--- ext/gd/libgd/gdft.c.orig Sun Dec 28 22:07:18 2003 ++++ ext/gd/libgd/gdft.c Thu Mar 18 16:54:09 2004 +@@ -63,7 +63,7 @@ + #include "gdcache.h" + #include <ft2build.h> + #include FT_FREETYPE_H +-#include "freetype/ftglyph.h" ++#include FT_GLYPH_H + + /* number of fonts cached before least recently used is replaced */ + #define FONTCACHESIZE 6 |