Mercurial > mplayer.hg
diff libvo/font_load_ft.c @ 27359:d788e177a35e
Rename some preprocessor directives from CONFIG_* to HAVE_* where appropriate;
CONFIG_ prefix for configurable options, HAVE_ for system-dependent stuff.
author | diego |
---|---|
date | Fri, 01 Aug 2008 20:28:58 +0000 |
parents | e7c989f7a7c9 |
children | 4876c89bafdd |
line wrap: on
line diff
--- a/libvo/font_load_ft.c Fri Aug 01 18:10:01 2008 +0000 +++ b/libvo/font_load_ft.c Fri Aug 01 20:28:58 2008 +0000 @@ -16,7 +16,7 @@ #include <math.h> #include <string.h> -#ifdef CONFIG_ICONV +#ifdef HAVE_ICONV #include <iconv.h> #endif @@ -716,7 +716,7 @@ return 0; } -#ifdef CONFIG_ICONV +#ifdef HAVE_ICONV /* decode from 'encoding' to unicode */ static FT_ULong decode_char(iconv_t *cd, char c) { FT_ULong o; @@ -1009,7 +1009,7 @@ } desc->face_cnt++; -#ifdef CONFIG_ICONV +#ifdef HAVE_ICONV if (unicode) { charset_size = prepare_charset_unicode(face, my_charset, my_charcodes); } else {