reflect the new modules/drivers list management performed through the file `freetype2/config/modules.mk' Changed the driver header files to reflect the new modules/drivers list management. We get rid, at last, of the infamous pre-processor tricks used to build the list at compile time. `src/base/ftinit.c' is also modified to reflect the changes..VER-2-0-4-PATCH
parent
f8bf6e2bc9
commit
10effdf61e
11 changed files with 36 additions and 280 deletions
@ -0,0 +1,6 @@ |
||||
make_module_list: add_sfnt_driver |
||||
|
||||
add_sfnt_driver: |
||||
$(OPEN_DRIVER)sfnt_driver_interface$(CLOSE_DRIVER)
|
||||
$(ECHO_DRIVER)sfnt $(ECHO_DRIVER_DESC) pseudo-driver for TrueType & OpenType formats $(ECHO_DRIVER_DONE)
|
||||
|
@ -0,0 +1,6 @@ |
||||
make_module_list: add_truetype_driver |
||||
|
||||
add_truetype_driver: |
||||
$(OPEN_DRIVER)tt_driver_interface$(CLOSE_DRIVER)
|
||||
$(ECHO_DRIVER)truetype $(ECHO_DRIVER_DESC) Windows/Mac font files with extension *.ttf or *.ttc $(ECHO_DRIVER_DONE)
|
||||
|
@ -0,0 +1,6 @@ |
||||
make_module_list: add_type1_driver |
||||
|
||||
add_type1_driver: |
||||
$(OPEN_DRIVER)t1_driver_interface$(CLOSE_DRIVER)
|
||||
$(ECHO_DRIVER)type1 $(ECHO_DRIVER_DESC) Postscript font files with extension *.pfa or *.pfb $(ECHO_DRIVER_DONE)
|
||||
|
Loading…
Reference in new issue