2002-04-19 17:13:47 +02:00
|
|
|
# FreeType 2 src/pfr Jamfile (c) 2002 David Turner
|
|
|
|
#
|
|
|
|
|
|
|
|
SubDir FT2_TOP src pfr ;
|
|
|
|
|
|
|
|
SubDirHdrs [ FT2_SubDir src pfr ] ;
|
|
|
|
|
|
|
|
{
|
|
|
|
local _sources ;
|
|
|
|
|
|
|
|
if $(FT2_MULTI)
|
|
|
|
{
|
* src/pfr/pfrsbit.h, src/pfr/pfrsbit.c, src/pfr/pfrload.c,
src/pfr/pfrgload.c, src/pfr/pfrobjs.c, src/pfr/pfrtypes.h,
Jamfile, src/base/ftobjs.c: adding support for embedded bitmaps to
the PFR driver, and rewriting its kerning loader / handler to use all
kerning pairs in a physical font (and not just the first item).
* src/tools/docmaker/content.py, src/tools/docmaker/sources.py,
src/tools/docmaker/tohtml.py: fixing a few nasty bugs
* src/sfnt/ttcmap0.c: the validator for format 4 sub-tables is
now capable of dealing with invalid "length" fields at the start
of the sub-table. This allows fonts like "mg______.ttf" (i.e.
Marriage) to return accurate charmaps.
2002-10-05 16:57:03 +02:00
|
|
|
_sources = pfrdrivr pfrgload pfrload pfrobjs pfrcmap pfrsbit ;
|
2002-04-19 17:13:47 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
_sources = pfr ;
|
|
|
|
}
|
|
|
|
|
|
|
|
Library $(FT2_LIB) : $(_sources).c ;
|
|
|
|
}
|
|
|
|
|
|
|
|
# end of src/pfr Jamfile
|