Mercurial > mplayer.hg
changeset 11500:b4fcb6c47942
freetype build fix
author | henry |
---|---|
date | Thu, 20 Nov 2003 16:25:40 +0000 |
parents | 8f3305688c21 |
children | 8f43eb278413 |
files | libvo/font_load.h libvo/font_load_ft.c |
diffstat | 2 files changed, 5 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/libvo/font_load.h Thu Nov 20 11:56:04 2003 +0000 +++ b/libvo/font_load.h Thu Nov 20 16:25:40 2003 +0000 @@ -2,7 +2,8 @@ #define __MPLAYER_FONT_LOAD_H #ifdef HAVE_FREETYPE -#include <freetype/freetype.h> +#include <ft2build.h> +#include FT_FREETYPE_H #endif typedef struct {
--- a/libvo/font_load_ft.c Thu Nov 20 11:56:04 2003 +0000 +++ b/libvo/font_load_ft.c Thu Nov 20 16:25:40 2003 +0000 @@ -20,8 +20,9 @@ #include <iconv.h> -#include <freetype/freetype.h> -#include <freetype/ftglyph.h> +#include <ft2build.h> +#include FT_FREETYPE_H +#include FT_GLYPH_H #include "../bswap.h" #include "font_load.h"