42372fd4d8
src/type1/t1cmap.c: updating and moving the Type 1 FT_CMap support from "src/type1" to "src/psaux" since it's going to be shared by the Type 1 and CID font drivers.. * src/psaux/Jamfile, src/psaux/psaux.c, src/psaux/psauxmod.c, src/psaux/rules.mk, include/freetype/internal/psaux.h: added support for Type 1 FT_CMaps.
24 lines
333 B
Plaintext
24 lines
333 B
Plaintext
# FreeType 2 src/psaux Jamfile (c) 2001 David Turner
|
|
#
|
|
|
|
SubDir FT2_TOP src psaux ;
|
|
|
|
SubDirHdrs [ FT2_SubDir src psaux ] ;
|
|
|
|
{
|
|
local _sources ;
|
|
|
|
if $(FT2_MULTI)
|
|
{
|
|
_sources = psauxmod psobjs t1decode t1cmap ;
|
|
}
|
|
else
|
|
{
|
|
_sources = psaux ;
|
|
}
|
|
|
|
Library $(FT2_LIB) : $(_sources).c ;
|
|
}
|
|
|
|
# end of src/psaux Jamfile
|