* include/freetype/config/ftoption.h: setting default options for

a release build (debugging off, bytecode interpreter off)
This commit is contained in:
David Turner 2002-01-07 10:05:34 +00:00
parent f86709a15b
commit 66f894e76c
2 changed files with 6 additions and 3 deletions

View File

@ -1,5 +1,8 @@
2002-01-06 David Turner <david@freetype.org> 2002-01-06 David Turner <david@freetype.org>
* include/freetype/config/ftoption.h: setting default options for
a release build (debugging off, bytecode interpreter off)
* src/base/ftobjs.c, src/base/ftoutln.c, src/cache/ftccmap.c, * src/base/ftobjs.c, src/base/ftoutln.c, src/cache/ftccmap.c,
src/cff/cffload.c, src/cff/cffobjs.c, src/pshinter/pshalgo2.c, src/cff/cffload.c, src/cff/cffobjs.c, src/pshinter/pshalgo2.c,
src/sfnt/ttload.c, src/sfnt/ttsbit.c: removing small compiler src/sfnt/ttload.c, src/sfnt/ttsbit.c: removing small compiler

View File

@ -249,8 +249,8 @@ FT_BEGIN_HEADER
/* */ /* */
/* Don't define any of these macros to compile in `release' mode! */ /* Don't define any of these macros to compile in `release' mode! */
/* */ /* */
#define FT_DEBUG_LEVEL_ERROR #undef FT_DEBUG_LEVEL_ERROR
#define FT_DEBUG_LEVEL_TRACE #undef FT_DEBUG_LEVEL_TRACE
/*************************************************************************/ /*************************************************************************/
@ -265,7 +265,7 @@ FT_BEGIN_HEADER
/* Note that the memory debugger is only activated at runtime when */ /* Note that the memory debugger is only activated at runtime when */
/* when the _environment_ variable "FT_DEBUG_MEMORY" is also defined! */ /* when the _environment_ variable "FT_DEBUG_MEMORY" is also defined! */
/* */ /* */
#define FT_DEBUG_MEMORY #undef FT_DEBUG_MEMORY
/*************************************************************************/ /*************************************************************************/