aboutsummaryrefslogtreecommitdiff
path: root/src/pfr/module.mk
diff options
context:
space:
mode:
authorDavid Turner <david@freetype.org>2002-04-19 15:13:47 +0000
committerDavid Turner <david@freetype.org>2002-04-19 15:13:47 +0000
commit609e28c3be484792936271dacefe9b48c378e7eb (patch)
treef3cd1f851af139660a2fd001630fd66bd847948a /src/pfr/module.mk
parentf123ab6e5f1f7c912ac2102547ab2178305d8c1d (diff)
downloadfreetype-609e28c3be484792936271dacefe9b48c378e7eb.tar.gz
* src/type1/t1gload.h, src/type1/t1gload.c: fixed incorrect
parameter sign-ness in callback function * include/freetype/config/ftmodule.h, include/freetype/internal/fttrace.h, src/Jamfile, src/pfr/*: adding a PFR font driver to the FreeType sources. Not that it doesn't support embedded bitmaps or kerning tables for now.. * include/freetype/internal/ftmemory.h: adding the FT_MEM_ZERO and FT_ZERO macros * include/freetype/internal/ftstream.h: adding the FT_NEXT_OFF3, FT_NEXT_UOFF3, FT_NEXT_OFF3_LE and FT_NEXT_UOFF3_LE to parse in-memory 24-bit integers.
Diffstat (limited to 'src/pfr/module.mk')
-rw-r--r--src/pfr/module.mk22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/pfr/module.mk b/src/pfr/module.mk
new file mode 100644
index 000000000..24ca8b2d2
--- /dev/null
+++ b/src/pfr/module.mk
@@ -0,0 +1,22 @@
+#
+# FreeType 2 PFR module definition
+#
+
+
+# Copyright 1996-2002 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.
+
+
+make_module_list: add_pfr_driver
+
+add_pfr_driver:
+ $(OPEN_DRIVER)pfr_driver_class$(CLOSE_DRIVER)
+ $(ECHO_DRIVER)pfr $(ECHO_DRIVER_DESC)PFR/TrueDoc font files with extension *.pfr$(ECHO_DRIVER_DONE)
+
+# EOF