fixed a broken inclusion of header files (a FT_FLAT_COMPILE test

was missing !!)
This commit is contained in:
David Turner 2000-12-05 22:28:15 +00:00
parent 8d1779e3f2
commit 12c6965161
4 changed files with 18 additions and 17 deletions

View File

@ -1,5 +1,8 @@
2000-12-05 David Turner <david.turner@freetype.org>
* src/psaux/psauxmod.c: fixed a broken inclusion of component
header files (a FT_FLAT_COMPILE test was missing)
* src/cache/ftcmanag.c (FTC_Manager_Done): fixed a bug that caused
an occasional crash when the function was called (due to a dangling
pointer)

View File

@ -16,9 +16,15 @@
/***************************************************************************/
#include <psaux/psauxmod.h>
#include <psaux/psobjs.h>
#include <psaux/t1decode.h>
#ifdef FT_FLAT_COMPILE
# include "psauxmod.h"
# include "psobjs.h"
# include "t1decode.h"
#else
# include <psaux/psauxmod.h>
# include <psaux/psobjs.h>
# include <psaux/t1decode.h>
#endif
FT_CALLBACK_TABLE_DEF

View File

@ -21,13 +21,9 @@
#include <freetype/internal/ftdebug.h>
#ifdef FT_FLAT_COMPILE
#include "psobjs.h"
# include "psobjs.h"
#else
#include <psaux/psobjs.h>
# include <psaux/psobjs.h>
#endif

View File

@ -23,15 +23,11 @@
#ifdef FT_FLAT_COMPILE
#include "t1decode.h"
#include "psobjs.h"
# include "t1decode.h"
# include "psobjs.h"
#else
#include <psaux/t1decode.h>
#include <psaux/psobjs.h>
# include <psaux/t1decode.h>
# include <psaux/psobjs.h>
#endif