Adding missing code for flat compiling mode.
This commit is contained in:
parent
fd3b8e7ca1
commit
0339b6849c
|
@ -16,14 +16,25 @@
|
|||
/***************************************************************************/
|
||||
|
||||
|
||||
#include <psaux/t1decode.h>
|
||||
#include <psaux/psobjs.h>
|
||||
#include <freetype/internal/ftdebug.h> /* for FT_ERROR() */
|
||||
#include <freetype/internal/t1errors.h>
|
||||
#include <freetype/ftoutln.h>
|
||||
#include <freetype/internal/ftdebug.h>
|
||||
|
||||
|
||||
#ifdef FT_FLAT_COMPILE
|
||||
|
||||
#include "t1decode.h"
|
||||
#include "psobjs.h"
|
||||
|
||||
#else
|
||||
|
||||
#include <psaux/t1decode.h>
|
||||
#include <psaux/psobjs.h>
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
/*************************************************************************/
|
||||
/* */
|
||||
/* The macro FT_COMPONENT is used in trace mode. It is an implicit */
|
||||
|
|
|
@ -18,7 +18,16 @@
|
|||
|
||||
#define FT_MAKE_OPTION_SINGLE_OBJECT
|
||||
|
||||
|
||||
#ifdef FT_FLAT_COMPILE
|
||||
|
||||
#include "psmodule.c"
|
||||
|
||||
#else
|
||||
|
||||
#include <psnames/psmodule.c>
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
/* END */
|
||||
|
|
Loading…
Reference in New Issue