summaryrefslogtreecommitdiff
path: root/Build/source/libs/freetype2/freetype-2.4.7/src/truetype/truetype.c
diff options
context:
space:
mode:
authorPeter Breitenlohner <peb@mppmu.mpg.de>2011-10-20 11:50:24 +0000
committerPeter Breitenlohner <peb@mppmu.mpg.de>2011-10-20 11:50:24 +0000
commitae412569bd091f2ba5b7323a86382c6095f7e35f (patch)
tree8be13821e004df938c43a6fb1adc12b9c96fe00a /Build/source/libs/freetype2/freetype-2.4.7/src/truetype/truetype.c
parent784d0322464c748d7f9f43c8d41f7feea7b22199 (diff)
freetype2 2.4.7
git-svn-id: svn://tug.org/texlive/trunk@24339 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/libs/freetype2/freetype-2.4.7/src/truetype/truetype.c')
-rw-r--r--Build/source/libs/freetype2/freetype-2.4.7/src/truetype/truetype.c37
1 files changed, 37 insertions, 0 deletions
diff --git a/Build/source/libs/freetype2/freetype-2.4.7/src/truetype/truetype.c b/Build/source/libs/freetype2/freetype-2.4.7/src/truetype/truetype.c
new file mode 100644
index 00000000000..4bd1209787e
--- /dev/null
+++ b/Build/source/libs/freetype2/freetype-2.4.7/src/truetype/truetype.c
@@ -0,0 +1,37 @@
+/***************************************************************************/
+/* */
+/* truetype.c */
+/* */
+/* FreeType TrueType driver component (body only). */
+/* */
+/* Copyright 1996-2001, 2004, 2006 by */
+/* David Turner, Robert Wilhelm, and Werner Lemberg. */
+/* */
+/* This file is part of the FreeType project, and may only be used, */
+/* modified, and distributed under the terms of the FreeType project */
+/* license, LICENSE.TXT. By continuing to use, modify, or distribute */
+/* this file you indicate that you have read the license and */
+/* understand and accept it fully. */
+/* */
+/***************************************************************************/
+
+
+#define FT_MAKE_OPTION_SINGLE_OBJECT
+
+#include <ft2build.h>
+#include "ttpic.c"
+#include "ttdriver.c" /* driver interface */
+#include "ttpload.c" /* tables loader */
+#include "ttgload.c" /* glyph loader */
+#include "ttobjs.c" /* object manager */
+
+#ifdef TT_USE_BYTECODE_INTERPRETER
+#include "ttinterp.c"
+#endif
+
+#ifdef TT_CONFIG_OPTION_GX_VAR_SUPPORT
+#include "ttgxvar.c" /* gx distortable font */
+#endif
+
+
+/* END */