Hash :
9f95babf
Author :
Date :
2002-06-07T07:23:06
* src/type42/t42drivr.c, src/type42/t42drivr.h, src/type42/t42parse.c,
src/type42/t42parse.h, src/type42/t42objs.h, src/type42/t42objs.c,
src/type42/type42.c:
updated the Type42 driver by splitting it into several files since
it makes the code easier to read and maintain. Also fixed the bug
that prevented the correct display of fonts with "ftview"
# FreeType 2 src/type42 Jamfile (c) 2002 David Turner
#
SubDir FT2_TOP src type42 ;
SubDirHdrs [ FT2_SubDir src type42 ] ;
{
local _sources ;
if $(FT2_MULTI)
{
_sources = t42objs t42parse t42drivr ;
}
else
{
_sources = type42 ;
}
Library $(FT2_LIB) : $(_sources).c ;
}
# end of src/type42 Jamfile