modules.cfg 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250
  1. # modules.cfg
  2. #
  3. # Copyright 2005, 2006, 2007, 2009 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. #### font modules -- at least one is required
  25. ####
  26. #### The order given here (from top to down) is the order used for testing
  27. #### font formats in the compiled library.
  28. ####
  29. # TrueType font driver.
  30. #
  31. # This driver needs the `sfnt' module.
  32. FONT_MODULES += truetype
  33. # PostScript Type 1 font driver.
  34. #
  35. # This driver needs the `psaux', `pshinter', and `psnames' modules.
  36. FONT_MODULES += type1
  37. # CFF/OpenType font driver.
  38. #
  39. # This driver needs the `sfnt', `pshinter', and `psnames' modules.
  40. FONT_MODULES += cff
  41. # Type 1 CID-keyed font driver.
  42. #
  43. # This driver needs the `psaux', `pshinter', and `psnames' modules.
  44. FONT_MODULES += cid
  45. # PFR/TrueDoc font driver. See optional extension ftpfr.c below also.
  46. FONT_MODULES += pfr
  47. # PostScript Type 42 font driver.
  48. #
  49. # This driver needs the `truetype' module.
  50. FONT_MODULES += type42
  51. # Windows FONT/FNT font driver. See optional extension ftwinfnt.c below
  52. # also.
  53. FONT_MODULES += winfonts
  54. # PCF font driver.
  55. FONT_MODULES += pcf
  56. # BDF font driver. See optional extension ftbdf.c below also.
  57. FONT_MODULES += bdf
  58. # SFNT files support. If used without `truetype' or `cff', it supports
  59. # bitmap-only fonts within an SFNT wrapper.
  60. #
  61. # This driver needs the `psnames' module.
  62. FONT_MODULES += sfnt
  63. ####
  64. #### hinting modules
  65. ####
  66. # FreeType's auto hinter.
  67. HINTING_MODULES += autofit
  68. # PostScript hinter.
  69. HINTING_MODULES += pshinter
  70. # The TrueType hinting engine doesn't have a module of its own but is
  71. # controlled in file include/freetype/config/ftoption.h
  72. # (TT_CONFIG_OPTION_BYTECODE_INTERPRETER and friends).
  73. ####
  74. #### raster modules -- at least one is required for vector font formats
  75. ####
  76. # Monochrome rasterizer.
  77. RASTER_MODULES += raster
  78. # Anti-aliasing rasterizer.
  79. RASTER_MODULES += smooth
  80. ####
  81. #### auxiliary modules
  82. ####
  83. # FreeType's cache sub-system (quite stable but still in beta -- this means
  84. # that its public API is subject to change if necessary). See
  85. # include/freetype/ftcache.h. Needs ftglyph.c.
  86. AUX_MODULES += cache
  87. # TrueType GX/AAT table validation. Needs ftgxval.c below.
  88. # AUX_MODULES += gxvalid
  89. # Support for streams compressed with gzip (files with suffix .gz).
  90. #
  91. # See include/freetype/ftgzip.h for the API.
  92. AUX_MODULES += gzip
  93. # Support for streams compressed with LZW (files with suffix .Z).
  94. #
  95. # See include/freetype/ftlzw.h for the API.
  96. AUX_MODULES += lzw
  97. # OpenType table validation. Needs ftotval.c below.
  98. #
  99. # AUX_MODULES += otvalid
  100. # Auxiliary PostScript driver component to share common code.
  101. #
  102. # This module depends on `psnames'.
  103. AUX_MODULES += psaux
  104. # Support for PostScript glyph names.
  105. #
  106. # This module can be controlled in ftconfig.h
  107. # (FT_CONFIG_OPTION_POSTSCRIPT_NAMES).
  108. AUX_MODULES += psnames
  109. ####
  110. #### base module extensions
  111. ####
  112. # Exact bounding box calculation.
  113. #
  114. # See include/freetype/ftbbox.h for the API.
  115. BASE_EXTENSIONS += ftbbox.c
  116. # Access BDF-specific strings. Needs BDF font driver.
  117. #
  118. # See include/freetype/ftbdf.h for the API.
  119. BASE_EXTENSIONS += ftbdf.c
  120. # Utility functions for converting 1bpp, 2bpp, 4bpp, and 8bpp bitmaps into
  121. # 8bpp format, and for emboldening of bitmap glyphs.
  122. #
  123. # See include/freetype/ftbitmap.h for the API.
  124. BASE_EXTENSIONS += ftbitmap.c
  125. # Access CID font information.
  126. #
  127. # See include/freetype/ftcid.h for the API.
  128. BASE_EXTENSIONS += ftcid.c
  129. # Access FSType information. Needs fttype1.c.
  130. #
  131. # See include/freetype/freetype.h for the API.
  132. BASE_EXTENSIONS += ftfstype.c
  133. # Support for GASP table queries.
  134. #
  135. # See include/freetype/ftgasp.h for the API.
  136. BASE_EXTENSIONS += ftgasp.c
  137. # Convenience functions to handle glyphs. Needs ftbitmap.c.
  138. #
  139. # See include/freetype/ftglyph.h for the API.
  140. BASE_EXTENSIONS += ftglyph.c
  141. # Interface for gxvalid module.
  142. #
  143. # See include/freetype/ftgxval.h for the API.
  144. BASE_EXTENSIONS += ftgxval.c
  145. # Support for LCD color filtering of subpixel bitmaps.
  146. #
  147. # See include/freetype/ftlcdfil.h for the API.
  148. BASE_EXTENSIONS += ftlcdfil.c
  149. # Multiple Master font interface.
  150. #
  151. # See include/freetype/ftmm.h for the API.
  152. BASE_EXTENSIONS += ftmm.c
  153. # Interface for otvalid module.
  154. #
  155. # See include/freetype/ftotval.h for the API.
  156. BASE_EXTENSIONS += ftotval.c
  157. # Support for FT_Face_CheckTrueTypePatents.
  158. #
  159. # See include/freetype/freetype.h for the API.
  160. BASE_EXTENSIONS += ftpatent.c
  161. # Interface for accessing PFR-specific data. Needs PFR font driver.
  162. #
  163. # See include/freetype/ftpfr.h for the API.
  164. BASE_EXTENSIONS += ftpfr.c
  165. # Path stroker. Needs ftglyph.c.
  166. #
  167. # See include/freetype/ftstroke.h for the API.
  168. BASE_EXTENSIONS += ftstroke.c
  169. # Support for synthetic embolding and slanting of fonts. Needs ftbitmap.c.
  170. #
  171. # See include/freetype/ftsynth.h for the API.
  172. BASE_EXTENSIONS += ftsynth.c
  173. # Interface to access data specific to PostScript Type 1 and Type 2 (CFF)
  174. # fonts.
  175. #
  176. # See include/freetype/t1tables.h for the API.
  177. BASE_EXTENSIONS += fttype1.c
  178. # Interface for accessing data specific to Windows FNT files. Needs winfnt
  179. # driver.
  180. #
  181. # See include/freetype/ftwinfnt.h for the API.
  182. BASE_EXTENSIONS += ftwinfnt.c
  183. # Support functions for X11.
  184. #
  185. # See include/freetype/ftxf86.h for the API.
  186. BASE_EXTENSIONS += ftxf86.c
  187. ####
  188. #### The components `ftsystem.c' (for memory allocation and stream I/O
  189. #### management) and `ftdebug.c' (for emitting debug messages to the user)
  190. #### are controlled with the following variables.
  191. ####
  192. #### ftsystem.c: $(FTSYS_SRC)
  193. #### ftdebug.c: $(FTDEBUG_SRC)
  194. ####
  195. #### Please refer to docs/CUSTOMIZE for details.
  196. ####
  197. # EOF