diff options
author | Rasmus Lerdorf <rasmus@php.net> | 2003-12-18 08:17:45 +0000 |
---|---|---|
committer | Rasmus Lerdorf <rasmus@php.net> | 2003-12-18 08:17:45 +0000 |
commit | 749cf47ef7e4272f0bda107abe5247dc73f913ef (patch) | |
tree | f27ae95a893390c0dff2051640d89e374b685f4f | |
parent | 6abf31f09c84ffe74fe89544f832741da6b718f6 (diff) | |
download | php-git-749cf47ef7e4272f0bda107abe5247dc73f913ef.tar.gz |
Fix remaining gd build issue
-rw-r--r-- | ext/gd/gd.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/gd/gd.c b/ext/gd/gd.c index 3b70ad3be2..08c208db40 100644 --- a/ext/gd/gd.c +++ b/ext/gd/gd.c @@ -68,7 +68,8 @@ static void php_free_ps_enc(zend_rsrc_list_entry *rsrc TSRMLS_DC); #endif #ifdef ENABLE_GD_TTF # ifdef HAVE_LIBFREETYPE -# include <freetype/freetype.h> +# include <ft2build.h> +# include FT_FREETYPE_H # else # ifdef HAVE_LIBTTF # include <freetype.h> |