fixed a broken inclusion of header files (a FT_FLAT_COMPILE test
was missing !!)
This commit is contained in:
parent
8d1779e3f2
commit
12c6965161
@ -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)
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
||||
|
||||
|
@ -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
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user