2004-02-25 13:58:54 +01:00
|
|
|
# FreeType 2 src/base Jamfile (c) 2001, 2002, 2003, 2004 David Turner
|
2001-04-03 23:07:36 +02:00
|
|
|
#
|
2001-03-24 18:10:09 +01:00
|
|
|
|
2002-11-06 23:32:54 +01:00
|
|
|
SubDir FT2_TOP $(FT2_SRC_DIR) base ;
|
2001-03-24 18:10:09 +01:00
|
|
|
|
2003-01-08 10:10:53 +01:00
|
|
|
|
2001-03-24 18:10:09 +01:00
|
|
|
{
|
2001-04-03 23:07:36 +02:00
|
|
|
local _sources ;
|
|
|
|
|
|
|
|
if $(FT2_MULTI)
|
|
|
|
{
|
2002-02-24 06:26:57 +01:00
|
|
|
_sources = ftutil ftdbgmem ftstream ftcalc fttrigon ftgloadr ftoutln
|
2004-02-25 13:58:54 +01:00
|
|
|
ftobjs ftnames ftrfork ;
|
2001-04-03 23:07:36 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2001-04-06 09:05:50 +02:00
|
|
|
_sources = ftbase ;
|
2001-04-03 23:07:36 +02:00
|
|
|
}
|
|
|
|
|
2001-04-06 09:05:50 +02:00
|
|
|
Library $(FT2_LIB) : $(_sources).c ;
|
2001-03-24 18:10:09 +01:00
|
|
|
}
|
|
|
|
|
2001-04-03 23:07:36 +02:00
|
|
|
# Add the optional/replaceable files.
|
2001-03-24 18:10:09 +01:00
|
|
|
#
|
2003-01-15 23:48:27 +01:00
|
|
|
Library $(FT2_LIB) : ftsystem.c ftinit.c ftglyph.c ftmm.c ftbdf.c
|
|
|
|
ftbbox.c ftdebug.c ftxf86.c fttype1.c ftpfr.c
|
Adding OpenType validation module. The code is based on the
(unfinished) `otlayout' module but has been heavily modified to make
it much more compact.
* src/otvalid/*: New module.
* include/freetype/ftotval.h, src/base/ftotval.c,
include/freetype/internal/services/svotval.h: New files.
* include/freetype/config/ftmodule.h: Add otv_module_class.
* include/freetype/config/ftheader.h (FT_OPENTYPE_VALIDATE_H): New
macro.
* include/freetype/internal/ftserv.h
(FT_SERVICE_OPENTYPE_VALIDATE_H): New macro.
* include/freetype/internal/fttrace.h (otvmodule, otvcommon,
otvbase, otvgdef, otvgpos, otvgsub, otvjstf): New trace components.
* include/freetype/ftchapters.h: Updated.
* src/base/Jamfile (Library), src/base/descrip.mms (OBJS),
src/base/rules.mk (BASE_EXT_SRC): Updated.
* docs/CHANGES: Updated.
2004-09-10 16:39:00 +02:00
|
|
|
ftstroke.c ftwinfnt.c ftotval.c ;
|
2001-03-24 18:10:09 +01:00
|
|
|
|
2001-04-03 23:07:36 +02:00
|
|
|
# Add Macintosh-specific file to the library when necessary.
|
2001-03-24 18:10:09 +01:00
|
|
|
#
|
|
|
|
if $(MAC)
|
|
|
|
{
|
2001-04-03 23:07:36 +02:00
|
|
|
Library $(FT2_LIB) : ftmac.c ;
|
2001-03-24 18:10:09 +01:00
|
|
|
}
|
|
|
|
|
2001-04-03 23:07:36 +02:00
|
|
|
# end of src/base Jamfile
|