From d19fef9187b4c925577ee1ab6011e8d1041f548a Mon Sep 17 00:00:00 2001 From: diego Date: Fri, 2 Jan 2009 14:41:38 +0000 Subject: Conditionally define render_one_glyph and kerning dummy functions in font_load.c when FreeType is not enabled instead of conditionally defining them in font_load.h. This moves the workaround closer to where the actual problem is. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28235 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libvo/font_load.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'libvo/font_load.c') diff --git a/libvo/font_load.c b/libvo/font_load.c index a18459b036..ba747dc7dc 100644 --- a/libvo/font_load.c +++ b/libvo/font_load.c @@ -335,3 +335,8 @@ fail_out: free(desc); return NULL; } + +#ifndef CONFIG_FREETYPE +void render_one_glyph(font_desc_t *desc, int c) {} +int kerning(font_desc_t *desc, int prevc, int c) { return 0; } +#endif -- cgit v1.2.3