X-Git-Url: http://git.asbjorn.biz/?p=swftools.git;a=blobdiff_plain;f=lib%2Fmodules%2Fswffont.c;h=f8f7707e749c41ad902fe1928e7b6fa4acefe5c1;hp=f2727a462571a9653efcb8aaba2ab59014ba4537;hb=c17ea569d3883466bc247f479ab202ff9ce7c638;hpb=133453cc112df7e7d5ce35f3dde5178303154da5 diff --git a/lib/modules/swffont.c b/lib/modules/swffont.c index f2727a4..f8f7707 100644 --- a/lib/modules/swffont.c +++ b/lib/modules/swffont.c @@ -21,7 +21,7 @@ along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#ifdef USE_FREETYPE +#ifdef HAVE_FREETYPE #include #include @@ -244,7 +244,7 @@ SWFFONT* swf_LoadTrueTypeFont(char*filename) return font; } -#else //USE_FREETYPE +#else //HAVE_FREETYPE SWFFONT* swf_LoadTrueTypeFont(char*filename) { @@ -431,7 +431,7 @@ SWFFONT* swf_LoadFont(char*filename) if(isSWF(filename)) { return swf_ReadFont(filename); } -#if defined(USE_FREETYPE) +#if defined(HAVE_FREETYPE) return swf_LoadTrueTypeFont(filename); #elif defined(HAVE_T1LIB) return swf_LoadT1Font(filename);