comparison libass/ass_mp.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
comparison
equal deleted inserted replaced
27358:e736897cf006 27359:d788e177a35e
63 extern char* font_name; 63 extern char* font_name;
64 extern char* sub_font_name; 64 extern char* sub_font_name;
65 extern float text_font_scale_factor; 65 extern float text_font_scale_factor;
66 extern int subtitle_autoscale; 66 extern int subtitle_autoscale;
67 67
68 #ifdef CONFIG_ICONV 68 #ifdef HAVE_ICONV
69 extern char* sub_cp; 69 extern char* sub_cp;
70 #else 70 #else
71 static char* sub_cp = 0; 71 static char* sub_cp = 0;
72 #endif 72 #endif
73 73