summaryrefslogtreecommitdiff
path: root/src/sfnt/ttpost.c
diff options
context:
space:
mode:
authorDavid Turner <david@freetype.org>2000-07-08 00:41:13 +0000
committerDavid Turner <david@freetype.org>2000-07-08 00:41:13 +0000
commita90663f591e995bd148d7b45178c9d63a2b7eb93 (patch)
treedf5e607af7cbeeb5e594d505758dcbcb84e50973 /src/sfnt/ttpost.c
parent7404301024208b605b0e81268469ddf3bf4cd00a (diff)
downloadfreetype2-a90663f591e995bd148d7b45178c9d63a2b7eb93.tar.gz
vast clean-up of the sources in order to allow flat
directory compilation (by defining the FT_FLAT_COMPILE macro at compile time..) moved "freetype2/BUILD" to "freetype2/docs/BUILD"
Diffstat (limited to 'src/sfnt/ttpost.c')
-rw-r--r--src/sfnt/ttpost.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/sfnt/ttpost.c b/src/sfnt/ttpost.c
index d613174fb..4151a6c5b 100644
--- a/src/sfnt/ttpost.c
+++ b/src/sfnt/ttpost.c
@@ -29,8 +29,14 @@
#include <freetype/internal/tterrors.h>
#include <freetype/tttags.h>
-#include <ttpost.h>
-#include <ttload.h>
+#ifdef FT_FLAT_COMPILE
+#include "ttpost.h"
+#include "ttload.h"
+#else
+#include <sfnt/ttpost.h>
+#include <sfnt/ttload.h>
+#endif
+
/*************************************************************************/