contrib/OWB: add correct SDL dependency, fix compilers used
[AROS-Contrib.git] / freetype1 / lib / arch / win16 / freetype.c
blob1ff2c887de72cbb6aa7925aab6cc5c11ebbd4769
1 /* This file is part of the FreeType project */
3 /* Single object library component for 16-bit Windows. */
4 /* Note that low-optimizing compilers (such as Borland ones) cannot */
5 /* successfully compile this file, because it exceeds 64K of code size. */
6 #define TT_MAKE_OPTION_SINGLE_OBJECT
8 /* first include common core components */
10 #include "ttapi.c"
11 #include "ttcache.c"
12 #include "ttcalc.c"
13 #include "ttcmap.c"
14 #include "ttdebug.c"
15 #include "ttgload.c"
16 #include "ttinterp.c"
17 #include "ttload.c"
18 #include "ttobjs.c"
19 #include "ttraster.c"
21 /* then system-specific (or ANSI) components */
23 #ifdef TT_HUGE_PTR
24 #include "arch/win16/hugefile.c"
25 #include "arch/win16/hugemem.c"
26 #else
27 #include "ttfile.c"
28 #include "ttmemory.c"
29 #endif
30 #include "ttmutex.c"
32 /* finally, add some extensions */
34 #ifdef TT_CONFIG_OPTION_EXTEND_ENGINE
35 #include "ttextend.c"
36 #endif
39 /* END */