🛠️🐜 Antkeeper superbuild with dependencies included https://antkeeper.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

253 lines
6.3 KiB

  1. # modules.cfg
  2. #
  3. # Copyright (C) 2005-2022 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', `psaux', `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' and `psaux' modules.
  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. If debugging and tracing is enabled, needs `ftbitmap.c'.
  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. # Anti-aliasing rasterizer.
  77. RASTER_MODULES += smooth
  78. # Monochrome rasterizer.
  79. RASTER_MODULES += raster
  80. # OT-SVG.
  81. RASTER_MODULES += svg
  82. # Signed distance field rasterizer.
  83. RASTER_MODULES += sdf
  84. ####
  85. #### auxiliary modules
  86. ####
  87. # FreeType's cache sub-system (quite stable but still in beta -- this means
  88. # that its public API is subject to change if necessary). See
  89. # include/freetype/ftcache.h. Needs `ftglyph.c'.
  90. AUX_MODULES += cache
  91. # TrueType GX/AAT table validation. Needs `ftgxval.c' below.
  92. #
  93. # AUX_MODULES += gxvalid
  94. # Support for streams compressed with gzip (files with suffix .gz).
  95. #
  96. # See include/freetype/ftgzip.h for the API.
  97. AUX_MODULES += gzip
  98. # Support for streams compressed with LZW (files with suffix .Z).
  99. #
  100. # See include/freetype/ftlzw.h for the API.
  101. AUX_MODULES += lzw
  102. # Support for streams compressed with bzip2 (files with suffix .bz2).
  103. #
  104. # See include/freetype/ftbzip2.h for the API.
  105. AUX_MODULES += bzip2
  106. # OpenType table validation. Needs `ftotval.c' below.
  107. #
  108. # AUX_MODULES += otvalid
  109. # Auxiliary PostScript driver component to share common code.
  110. #
  111. # This module depends on `psnames'.
  112. AUX_MODULES += psaux
  113. # Support for PostScript glyph names.
  114. #
  115. # This module can be controlled in ftconfig.h
  116. # (FT_CONFIG_OPTION_POSTSCRIPT_NAMES).
  117. AUX_MODULES += psnames
  118. ####
  119. #### base module extensions
  120. ####
  121. # Exact bounding box calculation.
  122. #
  123. # See include/freetype/ftbbox.h for the API.
  124. BASE_EXTENSIONS += ftbbox.c
  125. # Access BDF-specific strings. Needs BDF font driver.
  126. #
  127. # See include/freetype/ftbdf.h for the API.
  128. BASE_EXTENSIONS += ftbdf.c
  129. # Utility functions for converting 1bpp, 2bpp, 4bpp, and 8bpp bitmaps into
  130. # 8bpp format, and for emboldening of bitmap glyphs.
  131. #
  132. # See include/freetype/ftbitmap.h for the API.
  133. BASE_EXTENSIONS += ftbitmap.c
  134. # Access CID font information.
  135. #
  136. # See include/freetype/ftcid.h for the API.
  137. BASE_EXTENSIONS += ftcid.c
  138. # Access FSType information. Needs `fttype1.c'.
  139. #
  140. # See include/freetype/freetype.h for the API.
  141. BASE_EXTENSIONS += ftfstype.c
  142. # Support for GASP table queries.
  143. #
  144. # See include/freetype/ftgasp.h for the API.
  145. BASE_EXTENSIONS += ftgasp.c
  146. # Convenience functions to handle glyphs. Needs `ftbitmap.c'.
  147. #
  148. # See include/freetype/ftglyph.h for the API.
  149. BASE_EXTENSIONS += ftglyph.c
  150. # Interface for gxvalid module.
  151. #
  152. # See include/freetype/ftgxval.h for the API.
  153. BASE_EXTENSIONS += ftgxval.c
  154. # Multiple Master font interface.
  155. #
  156. # See include/freetype/ftmm.h for the API.
  157. BASE_EXTENSIONS += ftmm.c
  158. # Interface for otvalid module.
  159. #
  160. # See include/freetype/ftotval.h for the API.
  161. BASE_EXTENSIONS += ftotval.c
  162. # Support for FT_Face_CheckTrueTypePatents.
  163. #
  164. # See include/freetype/freetype.h for the API.
  165. BASE_EXTENSIONS += ftpatent.c
  166. # Interface for accessing PFR-specific data. Needs PFR font driver.
  167. #
  168. # See include/freetype/ftpfr.h for the API.
  169. BASE_EXTENSIONS += ftpfr.c
  170. # Path stroker. Needs `ftglyph.c'.
  171. #
  172. # See include/freetype/ftstroke.h for the API.
  173. BASE_EXTENSIONS += ftstroke.c
  174. # Support for synthetic emboldening and slanting of fonts. Needs
  175. # `ftbitmap.c'.
  176. #
  177. # See include/freetype/ftsynth.h for the API.
  178. BASE_EXTENSIONS += ftsynth.c
  179. # Interface to access data specific to PostScript Type 1 and Type 2 (CFF)
  180. # fonts.
  181. #
  182. # See include/freetype/t1tables.h for the API.
  183. BASE_EXTENSIONS += fttype1.c
  184. # Interface for accessing data specific to Windows FNT files. Needs winfnt
  185. # driver.
  186. #
  187. # See include/freetype/ftwinfnt.h for the API.
  188. BASE_EXTENSIONS += ftwinfnt.c
  189. ####
  190. #### The components `ftsystem.c' (for memory allocation and stream I/O
  191. #### management) and `ftdebug.c' (for emitting debug messages to the user)
  192. #### are controlled with the following variables.
  193. ####
  194. #### ftsystem.c: $(FTSYS_SRC)
  195. #### ftdebug.c: $(FTDEBUG_SRC)
  196. ####
  197. #### Please refer to docs/CUSTOMIZE for details.
  198. ####
  199. # EOF