1# modules.cfg
2#
3# Copyright 2005-2018 by
4# David Turner, Robert Wilhelm, and Werner Lemberg.
5#
6# This file is part of the FreeType project, and may only be used, modified,
7# and distributed under the terms of the FreeType project license,
8# LICENSE.TXT.  By continuing to use, modify, or distribute this file you
9# indicate that you have read the license and understand and accept it
10# fully.
11#
12#
13# In case you compile the FreeType library with GNU make or makepp, this
14# file controls which components are built into the library.  Otherwise,
15# please read this file for information on the various modules and its
16# dependencies, then follow the instructions in the file `docs/INSTALL.ANY'.
17#
18# To deactivate a module, simply comment out the corresponding line.  To
19# activate a module, remove the comment character.
20#
21# Note that many modules and components are further controlled with macros
22# in the file `include/freetype/config/ftoption.h'.
23
24
25####
26#### font modules -- at least one is required
27####
28####   The order given here (from top to down) is the order used for testing
29####   font formats in the compiled library.
30####
31
32# TrueType font driver.
33#
34# This driver needs the `sfnt' module.
35FONT_MODULES += truetype
36
37# PostScript Type 1 font driver.
38#
39# This driver needs the `psaux', `pshinter', and `psnames' modules.
40# No FT_CONFIG_OPTION_PIC support.
41FONT_MODULES += type1
42
43# CFF/OpenType font driver.
44#
45# This driver needs the `sfnt', `psaux', `pshinter', and `psnames' modules.
46FONT_MODULES += cff
47
48# Type 1 CID-keyed font driver.
49#
50# This driver needs the `psaux', `pshinter', and `psnames' modules.
51# No FT_CONFIG_OPTION_PIC support.
52FONT_MODULES += cid
53
54# PFR/TrueDoc font driver.  See optional extension ftpfr.c below also.
55# No FT_CONFIG_OPTION_PIC support.
56FONT_MODULES += pfr
57
58# PostScript Type 42 font driver.
59#
60# This driver needs the `truetype' and `psaux' modules.
61# No FT_CONFIG_OPTION_PIC support.
62FONT_MODULES += type42
63
64# Windows FONT/FNT font driver.  See optional extension ftwinfnt.c below
65# also.
66# No FT_CONFIG_OPTION_PIC support.
67FONT_MODULES += winfonts
68
69# PCF font driver.
70# No FT_CONFIG_OPTION_PIC support.
71FONT_MODULES += pcf
72
73# BDF font driver.  See optional extension ftbdf.c below also.
74# No FT_CONFIG_OPTION_PIC support.
75FONT_MODULES += bdf
76
77# SFNT files support.  If used without `truetype' or `cff', it supports
78# bitmap-only fonts within an SFNT wrapper.
79#
80# This driver needs the `psnames' module.
81FONT_MODULES += sfnt
82
83
84####
85#### hinting modules
86####
87
88# FreeType's auto hinter.
89HINTING_MODULES += autofit
90
91# PostScript hinter.
92HINTING_MODULES += pshinter
93
94# The TrueType hinting engine doesn't have a module of its own but is
95# controlled in file include/freetype/config/ftoption.h
96# (TT_CONFIG_OPTION_BYTECODE_INTERPRETER and friends).
97
98
99####
100#### raster modules -- at least one is required for vector font formats
101####
102
103# Monochrome rasterizer.
104RASTER_MODULES += raster
105
106# Anti-aliasing rasterizer.
107RASTER_MODULES += smooth
108
109
110####
111#### auxiliary modules
112####
113
114# FreeType's cache sub-system (quite stable but still in beta -- this means
115# that its public API is subject to change if necessary).  See
116# include/freetype/ftcache.h.  Needs ftglyph.c.
117# No FT_CONFIG_OPTION_PIC support.
118AUX_MODULES += cache
119
120# TrueType GX/AAT table validation.  Needs ftgxval.c below.
121#
122# No FT_CONFIG_OPTION_PIC support.
123# AUX_MODULES += gxvalid
124
125# Support for streams compressed with gzip (files with suffix .gz).
126#
127# See include/freetype/ftgzip.h for the API.
128# No FT_CONFIG_OPTION_PIC support.
129AUX_MODULES += gzip
130
131# Support for streams compressed with LZW (files with suffix .Z).
132#
133# See include/freetype/ftlzw.h for the API.
134# No FT_CONFIG_OPTION_PIC support.
135AUX_MODULES += lzw
136
137# Support for streams compressed with bzip2 (files with suffix .bz2).
138#
139# See include/freetype/ftbzip2.h for the API.
140# No FT_CONFIG_OPTION_PIC support.
141AUX_MODULES += bzip2
142
143# OpenType table validation.  Needs ftotval.c below.
144#
145# No FT_CONFIG_OPTION_PIC support.
146# AUX_MODULES += otvalid
147
148# Auxiliary PostScript driver component to share common code.
149#
150# This module depends on `psnames'.
151# No FT_CONFIG_OPTION_PIC support.
152AUX_MODULES += psaux
153
154# Support for PostScript glyph names.
155#
156# This module can be controlled in ftconfig.h
157# (FT_CONFIG_OPTION_POSTSCRIPT_NAMES).
158AUX_MODULES += psnames
159
160
161####
162#### base module extensions
163####
164
165# Exact bounding box calculation.
166#
167# See include/freetype/ftbbox.h for the API.
168BASE_EXTENSIONS += ftbbox.c
169
170# Access BDF-specific strings.  Needs BDF font driver.
171#
172# See include/freetype/ftbdf.h for the API.
173BASE_EXTENSIONS += ftbdf.c
174
175# Utility functions for converting 1bpp, 2bpp, 4bpp, and 8bpp bitmaps into
176# 8bpp format, and for emboldening of bitmap glyphs.
177#
178# See include/freetype/ftbitmap.h for the API.
179BASE_EXTENSIONS += ftbitmap.c
180
181# Access CID font information.
182#
183# See include/freetype/ftcid.h for the API.
184BASE_EXTENSIONS += ftcid.c
185
186# Support functions for font formats.
187#
188# See include/freetype/ftfntfmt.h for the API.
189BASE_EXTENSIONS += ftfntfmt.c
190
191# Access FSType information.  Needs fttype1.c.
192#
193# See include/freetype/freetype.h for the API.
194BASE_EXTENSIONS += ftfstype.c
195
196# Support for GASP table queries.
197#
198# See include/freetype/ftgasp.h for the API.
199BASE_EXTENSIONS += ftgasp.c
200
201# Convenience functions to handle glyphs.  Needs ftbitmap.c.
202#
203# See include/freetype/ftglyph.h for the API.
204BASE_EXTENSIONS += ftglyph.c
205
206# Interface for gxvalid module.
207#
208# See include/freetype/ftgxval.h for the API.
209BASE_EXTENSIONS += ftgxval.c
210
211# Support for LCD color filtering of subpixel bitmaps.
212#
213# See include/freetype/ftlcdfil.h for the API.
214BASE_EXTENSIONS += ftlcdfil.c
215
216# Multiple Master font interface.
217#
218# See include/freetype/ftmm.h for the API.
219BASE_EXTENSIONS += ftmm.c
220
221# Interface for otvalid module.
222#
223# See include/freetype/ftotval.h for the API.
224BASE_EXTENSIONS += ftotval.c
225
226# Support for FT_Face_CheckTrueTypePatents.
227#
228# See include/freetype/freetype.h for the API.
229BASE_EXTENSIONS += ftpatent.c
230
231# Interface for accessing PFR-specific data.  Needs PFR font driver.
232#
233# See include/freetype/ftpfr.h for the API.
234BASE_EXTENSIONS += ftpfr.c
235
236# Path stroker.  Needs ftglyph.c.
237#
238# See include/freetype/ftstroke.h for the API.
239BASE_EXTENSIONS += ftstroke.c
240
241# Support for synthetic emboldening and slanting of fonts.  Needs ftbitmap.c.
242#
243# See include/freetype/ftsynth.h for the API.
244BASE_EXTENSIONS += ftsynth.c
245
246# Interface to access data specific to PostScript Type 1 and Type 2 (CFF)
247# fonts.
248#
249# See include/freetype/t1tables.h for the API.
250BASE_EXTENSIONS += fttype1.c
251
252# Interface for accessing data specific to Windows FNT files.  Needs winfnt
253# driver.
254#
255# See include/freetype/ftwinfnt.h for the API.
256BASE_EXTENSIONS += ftwinfnt.c
257
258####
259#### The components `ftsystem.c' (for memory allocation and stream I/O
260#### management) and `ftdebug.c' (for emitting debug messages to the user)
261#### are controlled with the following variables.
262####
263####   ftsystem.c:  $(FTSYS_SRC)
264####   ftdebug.c:   $(FTDEBUG_SRC)
265####
266#### Please refer to docs/CUSTOMIZE for details.
267####
268
269
270# EOF
271