Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Define properly the Freetype config
  • Loading branch information
Sebastien Bourdeauducq committed Jun 4, 2012
1 parent b26d67c commit 662aec9
Show file tree
Hide file tree
Showing 3 changed files with 826 additions and 1 deletion.
2 changes: 1 addition & 1 deletion libfreetype/Makefile
@@ -1,7 +1,7 @@
MISPDIR=..
include $(MISPDIR)/common.mak

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

FTSRC=$(FTDIR)/src

Expand Down
20 changes: 20 additions & 0 deletions libfreetype/include/freetype/config/ftmodule.h
@@ -0,0 +1,20 @@
/*
* This file registers the FreeType modules compiled into the library.
*
* If you use GNU make, this file IS NOT USED! Instead, it is created in
* the objects directory (normally `<topdir>/objs/') based on information
* from `<topdir>/modules.cfg'.
*
* Please read `docs/INSTALL.ANY' and `docs/CUSTOMIZE' how to compile
* FreeType without GNU make.
*
*/

FT_USE_MODULE( FT_Module_Class, autofit_module_class )
FT_USE_MODULE( FT_Driver_ClassRec, tt_driver_class )
FT_USE_MODULE( FT_Renderer_Class, ft_raster1_renderer_class )
FT_USE_MODULE( FT_Renderer_Class, ft_smooth_renderer_class )
FT_USE_MODULE( FT_Renderer_Class, ft_smooth_lcd_renderer_class )
FT_USE_MODULE( FT_Renderer_Class, ft_smooth_lcdv_renderer_class )

/* EOF */

0 comments on commit 662aec9

Please sign in to comment.