Skip to content

Commit 662aec9

Browse files
author
Sebastien Bourdeauducq
committedJun 4, 2012
Define properly the Freetype config
1 parent b26d67c commit 662aec9

File tree

3 files changed

+826
-1
lines changed

3 files changed

+826
-1
lines changed
 

‎libfreetype/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
MISPDIR=..
22
include $(MISPDIR)/common.mak
33

4-
CFLAGS+=-I$(FTDIR)/include -include $(FTDIR)/include/freetype/internal/internal.h
4+
CFLAGS+=-Iinclude -I$(FTDIR)/include -include $(FTDIR)/include/freetype/internal/internal.h
55

66
FTSRC=$(FTDIR)/src
77

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
/*
2+
* This file registers the FreeType modules compiled into the library.
3+
*
4+
* If you use GNU make, this file IS NOT USED! Instead, it is created in
5+
* the objects directory (normally `<topdir>/objs/') based on information
6+
* from `<topdir>/modules.cfg'.
7+
*
8+
* Please read `docs/INSTALL.ANY' and `docs/CUSTOMIZE' how to compile
9+
* FreeType without GNU make.
10+
*
11+
*/
12+
13+
FT_USE_MODULE( FT_Module_Class, autofit_module_class )
14+
FT_USE_MODULE( FT_Driver_ClassRec, tt_driver_class )
15+
FT_USE_MODULE( FT_Renderer_Class, ft_raster1_renderer_class )
16+
FT_USE_MODULE( FT_Renderer_Class, ft_smooth_renderer_class )
17+
FT_USE_MODULE( FT_Renderer_Class, ft_smooth_lcd_renderer_class )
18+
FT_USE_MODULE( FT_Renderer_Class, ft_smooth_lcdv_renderer_class )
19+
20+
/* EOF */

‎libfreetype/include/freetype/config/ftoption.h

+805
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)
Please sign in to comment.