X-Git-Url: http://git.asbjorn.it/?a=blobdiff_plain;ds=sidebyside;f=lib%2Fmodules%2Fswffont.c;h=f8f7707e749c41ad902fe1928e7b6fa4acefe5c1;hb=8278af2048460ef493b672d4e21f4e94c7e08f08;hp=f2727a462571a9653efcb8aaba2ab59014ba4537;hpb=e38d3a125e8bb4459e26cc4b42ee63f010c56ffb;p=swftools.git 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);