parent
b5c7de5b37
commit
af594e606a
17 changed files with 173 additions and 69 deletions
@ -1,11 +1,20 @@ |
||||
// TetiSoft: We must change FT_BASE_DEF and FT_EXPORT_DEF
|
||||
|
||||
//#define FT_BASE_DEF( x ) extern x // SAS/C wouldn't generate an XDEF
|
||||
//#define FT_EXPORT_DEF( x ) extern x // SAS/C wouldn't generate an XDEF
|
||||
//#define FT_BASE_DEF( x ) extern x // SAS/C wouldn't generate an XDEF
|
||||
//#define FT_EXPORT_DEF( x ) extern x // SAS/C wouldn't generate an XDEF
|
||||
#undef FT_BASE_DEF |
||||
#define FT_BASE_DEF( x ) x |
||||
#undef FT_EXPORT_DEF |
||||
#define FT_EXPORT_DEF( x ) x |
||||
|
||||
// TetiSoft: now include original file
|
||||
#ifndef __MORPHOS__ |
||||
#include "FT:include/freetype/config/ftconfig.h" |
||||
#else |
||||
// We must define that, it seems that
|
||||
// lib/gcc-lib/ppc-morphos/2.95.3/include/syslimits.h is missing in
|
||||
// ppc-morphos-gcc-2.95.3-bin.tgz (gcc for 68k producing MorphOS PPC elf
|
||||
// binaries from http://www.morphos.de)
|
||||
#define _LIBC_LIMITS_H_ |
||||
#include "/FT/include/freetype/config/ftconfig.h" |
||||
#endif |
||||
|
@ -0,0 +1,13 @@ |
||||
This file shows the interdependencies of various FreeType modules. |
||||
|
||||
Note that the use of `psnames' can be controlled in ftconfig.h |
||||
(FT_CONFIG_OPTION_POSTSCRIPT_NAMES). |
||||
|
||||
module dependency |
||||
--------------------------------------- |
||||
cff sfnt, pshinter, psnames |
||||
cid psaux, pshinter, psnames |
||||
truetype sfnt |
||||
type1 psaux, pshinter, psnames |
||||
psaux psnames |
||||
sfnt psnames |
Loading…
Reference in new issue