Source-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS import: xsrc/external/mit/freetype/dist
Module Name: xsrc
Committed By: christos
Date: Sun May 15 22:35:36 UTC 2016
Update of /cvsroot/xsrc/external/mit/freetype/dist
In directory ivanova.netbsd.org:/tmp/cvs-serv24896
Log Message:
CHANGES BETWEEN 2.6.2 and 2.6.3
I. IMPORTANT CHANGES
- Khmer, Myanmar, Bengali, and Kannada script support has been
added to the auto-hinter.
II. MISCELLANEOUS
- Better support of Indic scripts like Devanagari by using a
top-to-bottom hinting flow.
- All FreeType macros starting with two underscores have been
renamed to avoid a violation of both the C and C++ standards.
Example: Header macros of the form `__FOO_H__' are now called
`FOO_H_'. In most cases, this should be completely transparent
to the user. The exception to this is `__FTERRORS_H__', which
must be sometimes undefined by the user to get FreeType error
strings: Both this form and the new `FTERRORS_H_' macro are
accepted for backwards compatibility.
- Minor improvements mainly to the Type 1 driver.
- The new CFF engine now supports all Type 2 operators except
`random'.
- The macro `_STANDALONE_', used for compiling the B/W and smooth
rasterizers as stand-alone modules, has been renamed to
`STANDALONE_', since macro names starting with an underscore and
followed by an uppercase letter are reserved in both C and C++.
- Function `FT_Library_SetLcdFilterWeights' now also activates
custom LCD filter weights (instead of just adjusting them).
- Support for `unpatented hinting' has been completely removed:
Consequently, the two functions `FT_Face_CheckTrueTypePatents'
and `FT_Face_SetUnpatentedHinting' now return always false,
doing nothing.
- The `ftgamma' demo program has been modernized; the gamma grid
display has been moved from `ftview' to this program.
- It is now possible to cycle through the available LCD fitlering
modes.
======================================================================
CHANGES BETWEEN 2.6.1 and 2.6.2
I. IMPORTANT CHANGES
- The auto-hinter now supports stem darkening, to be controlled by
the new `no-stem-darkening' and `darkening-parameters'
properties. This is an experimental feature contributed by
Nikolaus Waxweiler, and the interface might change in a future
release.
- By default, stem darkening is now switched off (for both the CFF
engine and the auto-hinter). The main reason is that you need
linear alpha blending and gamma correction to get correct
rendering results, and the latter is not yet available in most
freely available rendering stacks like X11. Applying stem
darkening without proper gamma correction leads to far too dark
rendering results.
- The meaning of `FT_RENDER_MODE_LIGHT' has been slightly
modified. It now essentially means `no hinting along the
horizontal axis'; in particular, no change of glyph advance
widths. Consequently, the auto-hinter is used for all scalable
font formats except for CFF. It is planned that other
font-specific rendering engines (TrueType, Type 1) will follow.
II. MISCELLANEOUS
- The default LCD filter has been changed to be normalized and
color-balanced.
- For better compatibility with FontConfig, function
`FT_Library_SetLcdFilter' accepts a new enumeration value
`FT_LCD_FILTER_LEGACY1' (which has the same meaning as
`FT_LCD_FILTER_LEGACY').
- A large number of bugs have been detected by using the libFuzzer
framework, which should further improve handling of invalid
fonts. Thanks again to Kostya Serebryany and Bungeman!
- `TT_CONFIG_OPTION_MAX_RUNNABLE_OPCODES', a new configuration
option, controls the maximum number of executed opcodes within a
bytecode program. You don't want to change this except for very
special situations (e.g., making a library fuzzer spend less
time to handle broken fonts).
- The smooth renderer has been made faster.
- The `ftstring' demo program now supports sub-pixel rendering;
use key `l' to cycle through the LCD modes.
- The `ftstring' demo program now supports colour rendering; use
the `space' key to cycle through various colour combinations.
- The graphical demo programs now use a default gamma value of 1.8
(instead of 1.2).
======================================================================
CHANGES BETWEEN 2.6 and 2.6.1
I. IMPORTANT BUG FIXES
- It turned out that for CFFs only the advance widths should be
taken from the `htmx' table, not the side bearings. This bug,
introduced in version 2.6.0, makes it necessary to upgrade if
you are using CFFs; otherwise, you get cropped glyphs with GUI
interfaces like GTK or Qt.
- Accessing Type 42 fonts returned incorrect results if the glyph
order of the embedded TrueType font differs from the glyph order
of the Type 42 charstrings table.
II. IMPORTANT CHANGES
- The header file layout has been changed (again), moving all
header files except `ft2build.h' into a subdirectory tree.
Doing so reduces the possibility of header file name clashes
(e.g., FTGL's `FTGlyph.h' with FreeType's `ftglyph.h') on case
insensitive file systems like Mac OS X or Windows.
Applications that use (a) the `freetype-config' script or
FreeType's `freetype2.pc' file for pkg-config to get the include
directory for the compiler, and (b) the documented way for
header inclusion like
#include <ft2build.h>
#include FT_FREETYPE_H
...
don't need any change to the source code.
- Simple access to named instances in GX variation fonts is now
available (in addition to the previous method via FreeType's MM
interface). In the `FT_Face' structure, bits 16-30 of the
`face_index' field hold the current named instance index for the
given face index, and bits 16-30 of `style_flags' contain the
number of instances for the given face index. `FT_Open_Face'
and friends also understand the extended bits of the face index
parameter.
You need to enable TT_CONFIG_OPTION_GX_VAR_SUPPORT for this new
feature. Otherwise, bits 16-30 of the two fields are zero (or
are ignored).
- Lao script support has been added to the auto-hinter.
III. MISCELLANEOUS
- The auto-hinter's Arabic script support has been enhanced.
- Superscript-like and subscript-like glyphs as used by various
phonetic alphabets like the IPA are now better supported by the
auto-hinter.
- The TrueType bytecode interpreter now runs slightly faster.
- Improved support for builds with cmake.
- The function `FT_CeilFix' now always rounds towards plus
infinity.
- The function `FT_FloorFix' now always rounds towards minus
infinity.
- A new load flag `FT_LOAD_COMPUTE_METRICS' has been added; it
makes FreeType ignore pre-computed metrics, as needed by font
validating or font editing programs. Right now, only the
TrueType module supports it to ignore data from the `hdmx'
table.
- Another round of bug fixes to better handle broken fonts, found
by Kostya Serebryany <kcc%google.com@localhost>.
Status:
Vendor Tag: xorg
Release Tags: freetype-2-6-3
U xsrc/external/mit/freetype/dist/CMakeLists.txt
U xsrc/external/mit/freetype/dist/version.sed
U xsrc/external/mit/freetype/dist/ChangeLog.20
U xsrc/external/mit/freetype/dist/ChangeLog.21
U xsrc/external/mit/freetype/dist/ChangeLog.22
U xsrc/external/mit/freetype/dist/ChangeLog.23
U xsrc/external/mit/freetype/dist/ChangeLog.24
N xsrc/external/mit/freetype/dist/ChangeLog.25
U xsrc/external/mit/freetype/dist/Jamrules
U xsrc/external/mit/freetype/dist/Makefile
U xsrc/external/mit/freetype/dist/README.git
U xsrc/external/mit/freetype/dist/autogen.sh
U xsrc/external/mit/freetype/dist/configure
U xsrc/external/mit/freetype/dist/modules.cfg
U xsrc/external/mit/freetype/dist/vms_make.com
U xsrc/external/mit/freetype/dist/Jamfile
U xsrc/external/mit/freetype/dist/README
U xsrc/external/mit/freetype/dist/ChangeLog
U xsrc/external/mit/freetype/dist/devel/ft2build.h
U xsrc/external/mit/freetype/dist/devel/ftoption.h
U xsrc/external/mit/freetype/dist/docs/INSTALL.CROSS
U xsrc/external/mit/freetype/dist/docs/GPLv2.TXT
U xsrc/external/mit/freetype/dist/docs/FTL.TXT
U xsrc/external/mit/freetype/dist/docs/CMAKE
U xsrc/external/mit/freetype/dist/docs/INSTALL.MAC
U xsrc/external/mit/freetype/dist/docs/MAKEPP
U xsrc/external/mit/freetype/dist/docs/PROBLEMS
U xsrc/external/mit/freetype/dist/docs/CUSTOMIZE
U xsrc/external/mit/freetype/dist/docs/DEBUG
U xsrc/external/mit/freetype/dist/docs/INSTALL
U xsrc/external/mit/freetype/dist/docs/INSTALL.ANY
U xsrc/external/mit/freetype/dist/docs/freetype-config.1
U xsrc/external/mit/freetype/dist/docs/INSTALL.GNU
U xsrc/external/mit/freetype/dist/docs/INSTALL.UNIX
U xsrc/external/mit/freetype/dist/docs/INSTALL.VMS
U xsrc/external/mit/freetype/dist/docs/LICENSE.TXT
U xsrc/external/mit/freetype/dist/docs/TODO
U xsrc/external/mit/freetype/dist/docs/formats.txt
U xsrc/external/mit/freetype/dist/docs/raster.txt
U xsrc/external/mit/freetype/dist/docs/release
U xsrc/external/mit/freetype/dist/docs/CHANGES
U xsrc/external/mit/freetype/dist/docs/VERSION.DLL
U xsrc/external/mit/freetype/dist/docs/reference/ft2-toc.html
U xsrc/external/mit/freetype/dist/docs/reference/README
U xsrc/external/mit/freetype/dist/docs/reference/ft2-winfnt_fonts.html
U xsrc/external/mit/freetype/dist/docs/reference/ft2-index.html
U xsrc/external/mit/freetype/dist/docs/reference/ft2-system_interface.html
U xsrc/external/mit/freetype/dist/docs/reference/ft2-glyph_stroker.html
U xsrc/external/mit/freetype/dist/docs/reference/ft2-ot_validation.html
U xsrc/external/mit/freetype/dist/docs/reference/ft2-base_interface.html
U xsrc/external/mit/freetype/dist/docs/reference/ft2-cache_subsystem.html
U xsrc/external/mit/freetype/dist/docs/reference/ft2-tt_driver.html
U xsrc/external/mit/freetype/dist/docs/reference/ft2-user_allocation.html
U xsrc/external/mit/freetype/dist/docs/reference/ft2-sfnt_names.html
U xsrc/external/mit/freetype/dist/docs/reference/ft2-incremental.html
U xsrc/external/mit/freetype/dist/docs/reference/ft2-multiple_masters.html
U xsrc/external/mit/freetype/dist/docs/reference/ft2-basic_types.html
U xsrc/external/mit/freetype/dist/docs/reference/ft2-bdf_fonts.html
U xsrc/external/mit/freetype/dist/docs/reference/ft2-glyph_management.html
U xsrc/external/mit/freetype/dist/docs/reference/ft2-truetype_engine.html
U xsrc/external/mit/freetype/dist/docs/reference/ft2-version.html
U xsrc/external/mit/freetype/dist/docs/reference/ft2-gx_validation.html
U xsrc/external/mit/freetype/dist/docs/reference/ft2-glyph_variants.html
U xsrc/external/mit/freetype/dist/docs/reference/ft2-font_formats.html
U xsrc/external/mit/freetype/dist/docs/reference/ft2-type1_tables.html
U xsrc/external/mit/freetype/dist/docs/reference/ft2-quick_advance.html
U xsrc/external/mit/freetype/dist/docs/reference/ft2-cff_driver.html
U xsrc/external/mit/freetype/dist/docs/reference/ft2-bitmap_handling.html
U xsrc/external/mit/freetype/dist/docs/reference/ft2-outline_processing.html
U xsrc/external/mit/freetype/dist/docs/reference/ft2-bzip2.html
U xsrc/external/mit/freetype/dist/docs/reference/ft2-cid_fonts.html
U xsrc/external/mit/freetype/dist/docs/reference/ft2-gzip.html
U xsrc/external/mit/freetype/dist/docs/reference/ft2-gasp_table.html
U xsrc/external/mit/freetype/dist/docs/reference/ft2-header_file_macros.html
U xsrc/external/mit/freetype/dist/docs/reference/ft2-module_management.html
U xsrc/external/mit/freetype/dist/docs/reference/ft2-raster.html
U xsrc/external/mit/freetype/dist/docs/reference/ft2-truetype_tables.html
U xsrc/external/mit/freetype/dist/docs/reference/ft2-computations.html
N xsrc/external/mit/freetype/dist/docs/reference/ft2-error_enumerations.html
U xsrc/external/mit/freetype/dist/docs/reference/ft2-sizes_management.html
U xsrc/external/mit/freetype/dist/docs/reference/ft2-mac_specific.html
U xsrc/external/mit/freetype/dist/docs/reference/ft2-pfr_fonts.html
U xsrc/external/mit/freetype/dist/docs/reference/ft2-lcd_filtering.html
N xsrc/external/mit/freetype/dist/docs/reference/ft2-error_code_values.html
U xsrc/external/mit/freetype/dist/docs/reference/ft2-auto_hinter.html
U xsrc/external/mit/freetype/dist/docs/reference/ft2-header_inclusion.html
U xsrc/external/mit/freetype/dist/docs/reference/ft2-lzw.html
U xsrc/external/mit/freetype/dist/docs/reference/ft2-list_processing.html
U xsrc/external/mit/freetype/dist/builds/detect.mk
U xsrc/external/mit/freetype/dist/builds/newline
U xsrc/external/mit/freetype/dist/builds/exports.mk
U xsrc/external/mit/freetype/dist/builds/freetype.mk
U xsrc/external/mit/freetype/dist/builds/link_dos.mk
U xsrc/external/mit/freetype/dist/builds/link_std.mk
U xsrc/external/mit/freetype/dist/builds/modules.mk
U xsrc/external/mit/freetype/dist/builds/toplevel.mk
U xsrc/external/mit/freetype/dist/builds/vms/ftconfig.h
U xsrc/external/mit/freetype/dist/builds/vms/ftsystem.c
U xsrc/external/mit/freetype/dist/builds/compiler/ansi-cc.mk
U xsrc/external/mit/freetype/dist/builds/compiler/bcc-dev.mk
U xsrc/external/mit/freetype/dist/builds/compiler/bcc.mk
U xsrc/external/mit/freetype/dist/builds/compiler/emx.mk
U xsrc/external/mit/freetype/dist/builds/compiler/gcc-dev.mk
U xsrc/external/mit/freetype/dist/builds/compiler/gcc.mk
U xsrc/external/mit/freetype/dist/builds/compiler/intelc.mk
U xsrc/external/mit/freetype/dist/builds/compiler/unix-lcc.mk
U xsrc/external/mit/freetype/dist/builds/compiler/visualage.mk
U xsrc/external/mit/freetype/dist/builds/compiler/visualc.mk
U xsrc/external/mit/freetype/dist/builds/compiler/watcom.mk
U xsrc/external/mit/freetype/dist/builds/compiler/win-lcc.mk
U xsrc/external/mit/freetype/dist/builds/unix/freetype2.in
U xsrc/external/mit/freetype/dist/builds/unix/pkg.m4
C xsrc/external/mit/freetype/dist/builds/unix/freetype-config.in
U xsrc/external/mit/freetype/dist/builds/unix/detect.mk
U xsrc/external/mit/freetype/dist/builds/unix/configure.raw
U xsrc/external/mit/freetype/dist/builds/unix/freetype2.m4
U xsrc/external/mit/freetype/dist/builds/unix/ft-munmap.m4
U xsrc/external/mit/freetype/dist/builds/unix/ftconfig.in
U xsrc/external/mit/freetype/dist/builds/unix/ftsystem.c
U xsrc/external/mit/freetype/dist/builds/unix/install.mk
U xsrc/external/mit/freetype/dist/builds/unix/unix-cc.in
U xsrc/external/mit/freetype/dist/builds/unix/unix-dev.mk
U xsrc/external/mit/freetype/dist/builds/unix/unix-lcc.mk
U xsrc/external/mit/freetype/dist/builds/unix/unix.mk
U xsrc/external/mit/freetype/dist/builds/unix/unixddef.mk
U xsrc/external/mit/freetype/dist/builds/unix/unix-def.in
U xsrc/external/mit/freetype/dist/builds/unix/configure.ac
U xsrc/external/mit/freetype/dist/builds/unix/aclocal.m4
U xsrc/external/mit/freetype/dist/builds/unix/config.guess
U xsrc/external/mit/freetype/dist/builds/unix/config.sub
U xsrc/external/mit/freetype/dist/builds/unix/install-sh
U xsrc/external/mit/freetype/dist/builds/unix/ltmain.sh
U xsrc/external/mit/freetype/dist/builds/unix/configure
U xsrc/external/mit/freetype/dist/builds/wince/ftdebug.c
U xsrc/external/mit/freetype/dist/builds/wince/vc2008-ce/freetype.vcproj
U xsrc/external/mit/freetype/dist/builds/wince/vc2008-ce/freetype.sln
U xsrc/external/mit/freetype/dist/builds/wince/vc2008-ce/index.html
U xsrc/external/mit/freetype/dist/builds/wince/vc2005-ce/freetype.vcproj
U xsrc/external/mit/freetype/dist/builds/wince/vc2005-ce/freetype.sln
U xsrc/external/mit/freetype/dist/builds/wince/vc2005-ce/index.html
U xsrc/external/mit/freetype/dist/builds/symbian/freetype.mmp
U xsrc/external/mit/freetype/dist/builds/symbian/bld.inf
U xsrc/external/mit/freetype/dist/builds/mac/FreeType.ppc_classic.make.txt
U xsrc/external/mit/freetype/dist/builds/mac/FreeType.m68k_cfm.make.txt
U xsrc/external/mit/freetype/dist/builds/mac/FreeType.m68k_far.make.txt
U xsrc/external/mit/freetype/dist/builds/mac/FreeType.ppc_carbon.make.txt
U xsrc/external/mit/freetype/dist/builds/mac/ascii2mpw.py
U xsrc/external/mit/freetype/dist/builds/mac/README
U xsrc/external/mit/freetype/dist/builds/mac/freetype-Info.plist
U xsrc/external/mit/freetype/dist/builds/mac/ftlib.prj.xml
U xsrc/external/mit/freetype/dist/builds/mac/ftmac.c
U xsrc/external/mit/freetype/dist/builds/os2/detect.mk
U xsrc/external/mit/freetype/dist/builds/os2/os2-def.mk
U xsrc/external/mit/freetype/dist/builds/os2/os2-dev.mk
U xsrc/external/mit/freetype/dist/builds/os2/os2-gcc.mk
N xsrc/external/mit/freetype/dist/builds/cmake/FindHarfBuzz.cmake
U xsrc/external/mit/freetype/dist/builds/cmake/iOS.cmake
N xsrc/external/mit/freetype/dist/builds/cmake/testbuild.sh
U xsrc/external/mit/freetype/dist/builds/beos/beos-def.mk
U xsrc/external/mit/freetype/dist/builds/beos/beos.mk
U xsrc/external/mit/freetype/dist/builds/beos/detect.mk
U xsrc/external/mit/freetype/dist/builds/amiga/makefile.os4
U xsrc/external/mit/freetype/dist/builds/amiga/README
U xsrc/external/mit/freetype/dist/builds/amiga/makefile
U xsrc/external/mit/freetype/dist/builds/amiga/smakefile
U xsrc/external/mit/freetype/dist/builds/amiga/include/config/ftconfig.h
U xsrc/external/mit/freetype/dist/builds/amiga/include/config/ftmodule.h
U xsrc/external/mit/freetype/dist/builds/amiga/src/base/ftdebug.c
U xsrc/external/mit/freetype/dist/builds/amiga/src/base/ftsystem.c
U xsrc/external/mit/freetype/dist/builds/atari/deflinejoiner.awk
U xsrc/external/mit/freetype/dist/builds/atari/FNames.SIC
U xsrc/external/mit/freetype/dist/builds/atari/FREETYPE.PRJ
U xsrc/external/mit/freetype/dist/builds/atari/gen-purec-patch.sh
U xsrc/external/mit/freetype/dist/builds/atari/ATARI.H
U xsrc/external/mit/freetype/dist/builds/atari/README.TXT
U xsrc/external/mit/freetype/dist/builds/windows/w32-mingw32.mk
U xsrc/external/mit/freetype/dist/builds/windows/detect.mk
U xsrc/external/mit/freetype/dist/builds/windows/ftdebug.c
U xsrc/external/mit/freetype/dist/builds/windows/w32-bcc.mk
U xsrc/external/mit/freetype/dist/builds/windows/w32-bccd.mk
U xsrc/external/mit/freetype/dist/builds/windows/w32-dev.mk
U xsrc/external/mit/freetype/dist/builds/windows/w32-gcc.mk
U xsrc/external/mit/freetype/dist/builds/windows/w32-icc.mk
U xsrc/external/mit/freetype/dist/builds/windows/w32-intl.mk
U xsrc/external/mit/freetype/dist/builds/windows/w32-lcc.mk
U xsrc/external/mit/freetype/dist/builds/windows/w32-vcc.mk
U xsrc/external/mit/freetype/dist/builds/windows/w32-wat.mk
U xsrc/external/mit/freetype/dist/builds/windows/win32-def.mk
U xsrc/external/mit/freetype/dist/builds/windows/visualc/freetype.vcproj
U xsrc/external/mit/freetype/dist/builds/windows/visualc/freetype.dsw
U xsrc/external/mit/freetype/dist/builds/windows/visualc/freetype.sln
U xsrc/external/mit/freetype/dist/builds/windows/visualc/freetype.dsp
U xsrc/external/mit/freetype/dist/builds/windows/visualc/index.html
U xsrc/external/mit/freetype/dist/builds/windows/vc2005/freetype.vcproj
U xsrc/external/mit/freetype/dist/builds/windows/vc2005/freetype.sln
U xsrc/external/mit/freetype/dist/builds/windows/vc2005/index.html
U xsrc/external/mit/freetype/dist/builds/windows/vc2008/freetype.vcproj
U xsrc/external/mit/freetype/dist/builds/windows/vc2008/freetype.sln
U xsrc/external/mit/freetype/dist/builds/windows/vc2008/index.html
U xsrc/external/mit/freetype/dist/builds/windows/visualce/freetype.vcproj
U xsrc/external/mit/freetype/dist/builds/windows/visualce/freetype.dsw
U xsrc/external/mit/freetype/dist/builds/windows/visualce/freetype.dsp
U xsrc/external/mit/freetype/dist/builds/windows/visualce/index.html
U xsrc/external/mit/freetype/dist/builds/windows/vc2010/freetype.user.props
U xsrc/external/mit/freetype/dist/builds/windows/vc2010/freetype.sln
U xsrc/external/mit/freetype/dist/builds/windows/vc2010/freetype.vcxproj.filters
U xsrc/external/mit/freetype/dist/builds/windows/vc2010/freetype.vcxproj
U xsrc/external/mit/freetype/dist/builds/windows/vc2010/index.html
U xsrc/external/mit/freetype/dist/builds/ansi/ansi-def.mk
U xsrc/external/mit/freetype/dist/builds/ansi/ansi.mk
U xsrc/external/mit/freetype/dist/builds/dos/detect.mk
U xsrc/external/mit/freetype/dist/builds/dos/dos-def.mk
U xsrc/external/mit/freetype/dist/builds/dos/dos-emx.mk
U xsrc/external/mit/freetype/dist/builds/dos/dos-gcc.mk
U xsrc/external/mit/freetype/dist/builds/dos/dos-wat.mk
U xsrc/external/mit/freetype/dist/objs/README
U xsrc/external/mit/freetype/dist/include/ft2build.h
C xsrc/external/mit/freetype/dist/include/freetype/ftadvanc.h
C xsrc/external/mit/freetype/dist/include/freetype/ftautoh.h
C xsrc/external/mit/freetype/dist/include/freetype/ftbbox.h
C xsrc/external/mit/freetype/dist/include/freetype/ftbdf.h
C xsrc/external/mit/freetype/dist/include/freetype/ftbitmap.h
C xsrc/external/mit/freetype/dist/include/freetype/ftbzip2.h
C xsrc/external/mit/freetype/dist/include/freetype/ftcache.h
C xsrc/external/mit/freetype/dist/include/freetype/ftcffdrv.h
C xsrc/external/mit/freetype/dist/include/freetype/ftchapters.h
C xsrc/external/mit/freetype/dist/include/freetype/ftcid.h
C xsrc/external/mit/freetype/dist/include/freetype/fterrdef.h
C xsrc/external/mit/freetype/dist/include/freetype/fterrors.h
N xsrc/external/mit/freetype/dist/include/freetype/ftfntfmt.h
C xsrc/external/mit/freetype/dist/include/freetype/ftgasp.h
C xsrc/external/mit/freetype/dist/include/freetype/ftglyph.h
C xsrc/external/mit/freetype/dist/include/freetype/ftgxval.h
C xsrc/external/mit/freetype/dist/include/freetype/ftgzip.h
C xsrc/external/mit/freetype/dist/include/freetype/ftimage.h
C xsrc/external/mit/freetype/dist/include/freetype/ftincrem.h
C xsrc/external/mit/freetype/dist/include/freetype/ftlcdfil.h
C xsrc/external/mit/freetype/dist/include/freetype/ftlist.h
C xsrc/external/mit/freetype/dist/include/freetype/ftlzw.h
C xsrc/external/mit/freetype/dist/include/freetype/ftmac.h
C xsrc/external/mit/freetype/dist/include/freetype/ftmm.h
C xsrc/external/mit/freetype/dist/include/freetype/ftmodapi.h
C xsrc/external/mit/freetype/dist/include/freetype/ftmoderr.h
C xsrc/external/mit/freetype/dist/include/freetype/ftotval.h
C xsrc/external/mit/freetype/dist/include/freetype/ftoutln.h
C xsrc/external/mit/freetype/dist/include/freetype/ftpfr.h
C xsrc/external/mit/freetype/dist/include/freetype/ftrender.h
C xsrc/external/mit/freetype/dist/include/freetype/ftsizes.h
C xsrc/external/mit/freetype/dist/include/freetype/ftsnames.h
C xsrc/external/mit/freetype/dist/include/freetype/ftstroke.h
C xsrc/external/mit/freetype/dist/include/freetype/ftsynth.h
C xsrc/external/mit/freetype/dist/include/freetype/ftsystem.h
C xsrc/external/mit/freetype/dist/include/freetype/fttrigon.h
N xsrc/external/mit/freetype/dist/include/freetype/ftttdrv.h
C xsrc/external/mit/freetype/dist/include/freetype/fttypes.h
C xsrc/external/mit/freetype/dist/include/freetype/ftwinfnt.h
C xsrc/external/mit/freetype/dist/include/freetype/t1tables.h
C xsrc/external/mit/freetype/dist/include/freetype/ttnameid.h
C xsrc/external/mit/freetype/dist/include/freetype/tttables.h
C xsrc/external/mit/freetype/dist/include/freetype/tttags.h
C xsrc/external/mit/freetype/dist/include/freetype/ttunpat.h
C xsrc/external/mit/freetype/dist/include/freetype/freetype.h
U xsrc/external/mit/freetype/dist/include/freetype/config/ftmodule.h
C xsrc/external/mit/freetype/dist/include/freetype/config/ftconfig.h
C xsrc/external/mit/freetype/dist/include/freetype/config/ftheader.h
C xsrc/external/mit/freetype/dist/include/freetype/config/ftoption.h
C xsrc/external/mit/freetype/dist/include/freetype/config/ftstdlib.h
C xsrc/external/mit/freetype/dist/include/freetype/internal/autohint.h
C xsrc/external/mit/freetype/dist/include/freetype/internal/ftcalc.h
C xsrc/external/mit/freetype/dist/include/freetype/internal/ftdebug.h
C xsrc/external/mit/freetype/dist/include/freetype/internal/ftdriver.h
C xsrc/external/mit/freetype/dist/include/freetype/internal/ftgloadr.h
N xsrc/external/mit/freetype/dist/include/freetype/internal/fthash.h
C xsrc/external/mit/freetype/dist/include/freetype/internal/ftmemory.h
C xsrc/external/mit/freetype/dist/include/freetype/internal/ftobjs.h
C xsrc/external/mit/freetype/dist/include/freetype/internal/ftpic.h
C xsrc/external/mit/freetype/dist/include/freetype/internal/ftrfork.h
C xsrc/external/mit/freetype/dist/include/freetype/internal/ftserv.h
C xsrc/external/mit/freetype/dist/include/freetype/internal/ftstream.h
C xsrc/external/mit/freetype/dist/include/freetype/internal/fttrace.h
C xsrc/external/mit/freetype/dist/include/freetype/internal/ftvalid.h
C xsrc/external/mit/freetype/dist/include/freetype/internal/internal.h
C xsrc/external/mit/freetype/dist/include/freetype/internal/psaux.h
C xsrc/external/mit/freetype/dist/include/freetype/internal/pshints.h
C xsrc/external/mit/freetype/dist/include/freetype/internal/sfnt.h
C xsrc/external/mit/freetype/dist/include/freetype/internal/t1types.h
C xsrc/external/mit/freetype/dist/include/freetype/internal/tttypes.h
N xsrc/external/mit/freetype/dist/include/freetype/internal/services/svfntfmt.h
C xsrc/external/mit/freetype/dist/include/freetype/internal/services/svbdf.h
C xsrc/external/mit/freetype/dist/include/freetype/internal/services/svcid.h
C xsrc/external/mit/freetype/dist/include/freetype/internal/services/svgldict.h
C xsrc/external/mit/freetype/dist/include/freetype/internal/services/svgxval.h
C xsrc/external/mit/freetype/dist/include/freetype/internal/services/svkern.h
C xsrc/external/mit/freetype/dist/include/freetype/internal/services/svmm.h
C xsrc/external/mit/freetype/dist/include/freetype/internal/services/svotval.h
C xsrc/external/mit/freetype/dist/include/freetype/internal/services/svpfr.h
C xsrc/external/mit/freetype/dist/include/freetype/internal/services/svpostnm.h
C xsrc/external/mit/freetype/dist/include/freetype/internal/services/svprop.h
C xsrc/external/mit/freetype/dist/include/freetype/internal/services/svpscmap.h
C xsrc/external/mit/freetype/dist/include/freetype/internal/services/svpsinfo.h
C xsrc/external/mit/freetype/dist/include/freetype/internal/services/svsfnt.h
C xsrc/external/mit/freetype/dist/include/freetype/internal/services/svttcmap.h
C xsrc/external/mit/freetype/dist/include/freetype/internal/services/svtteng.h
C xsrc/external/mit/freetype/dist/include/freetype/internal/services/svttglyf.h
C xsrc/external/mit/freetype/dist/include/freetype/internal/services/svwinfnt.h
U xsrc/external/mit/freetype/dist/src/Jamfile
U xsrc/external/mit/freetype/dist/src/type42/module.mk
U xsrc/external/mit/freetype/dist/src/type42/Jamfile
U xsrc/external/mit/freetype/dist/src/type42/t42drivr.c
U xsrc/external/mit/freetype/dist/src/type42/rules.mk
U xsrc/external/mit/freetype/dist/src/type42/t42drivr.h
U xsrc/external/mit/freetype/dist/src/type42/t42error.h
U xsrc/external/mit/freetype/dist/src/type42/t42objs.c
U xsrc/external/mit/freetype/dist/src/type42/t42objs.h
U xsrc/external/mit/freetype/dist/src/type42/t42parse.c
U xsrc/external/mit/freetype/dist/src/type42/t42parse.h
U xsrc/external/mit/freetype/dist/src/type42/t42types.h
U xsrc/external/mit/freetype/dist/src/type42/type42.c
U xsrc/external/mit/freetype/dist/src/sfnt/module.mk
U xsrc/external/mit/freetype/dist/src/sfnt/Jamfile
U xsrc/external/mit/freetype/dist/src/sfnt/pngshim.c
U xsrc/external/mit/freetype/dist/src/sfnt/pngshim.h
U xsrc/external/mit/freetype/dist/src/sfnt/rules.mk
U xsrc/external/mit/freetype/dist/src/sfnt/sfdriver.c
U xsrc/external/mit/freetype/dist/src/sfnt/sfdriver.h
U xsrc/external/mit/freetype/dist/src/sfnt/sferrors.h
U xsrc/external/mit/freetype/dist/src/sfnt/sfnt.c
U xsrc/external/mit/freetype/dist/src/sfnt/sfntpic.c
U xsrc/external/mit/freetype/dist/src/sfnt/sfntpic.h
U xsrc/external/mit/freetype/dist/src/sfnt/sfobjs.c
U xsrc/external/mit/freetype/dist/src/sfnt/sfobjs.h
U xsrc/external/mit/freetype/dist/src/sfnt/ttbdf.c
U xsrc/external/mit/freetype/dist/src/sfnt/ttbdf.h
C xsrc/external/mit/freetype/dist/src/sfnt/ttcmap.c
U xsrc/external/mit/freetype/dist/src/sfnt/ttcmap.h
U xsrc/external/mit/freetype/dist/src/sfnt/ttcmapc.h
U xsrc/external/mit/freetype/dist/src/sfnt/ttkern.c
U xsrc/external/mit/freetype/dist/src/sfnt/ttkern.h
U xsrc/external/mit/freetype/dist/src/sfnt/ttload.c
U xsrc/external/mit/freetype/dist/src/sfnt/ttload.h
U xsrc/external/mit/freetype/dist/src/sfnt/ttmtx.c
U xsrc/external/mit/freetype/dist/src/sfnt/ttmtx.h
U xsrc/external/mit/freetype/dist/src/sfnt/ttpost.c
U xsrc/external/mit/freetype/dist/src/sfnt/ttpost.h
U xsrc/external/mit/freetype/dist/src/sfnt/ttsbit.c
U xsrc/external/mit/freetype/dist/src/sfnt/ttsbit.h
U xsrc/external/mit/freetype/dist/src/cache/ftcache.c
U xsrc/external/mit/freetype/dist/src/cache/Jamfile
U xsrc/external/mit/freetype/dist/src/cache/ftcbasic.c
U xsrc/external/mit/freetype/dist/src/cache/ftccache.c
U xsrc/external/mit/freetype/dist/src/cache/ftccache.h
U xsrc/external/mit/freetype/dist/src/cache/ftccback.h
U xsrc/external/mit/freetype/dist/src/cache/ftccmap.c
U xsrc/external/mit/freetype/dist/src/cache/ftcerror.h
U xsrc/external/mit/freetype/dist/src/cache/ftcglyph.c
U xsrc/external/mit/freetype/dist/src/cache/ftcglyph.h
U xsrc/external/mit/freetype/dist/src/cache/ftcimage.c
U xsrc/external/mit/freetype/dist/src/cache/ftcimage.h
U xsrc/external/mit/freetype/dist/src/cache/ftcmanag.c
U xsrc/external/mit/freetype/dist/src/cache/ftcmanag.h
U xsrc/external/mit/freetype/dist/src/cache/ftcmru.c
U xsrc/external/mit/freetype/dist/src/cache/ftcmru.h
U xsrc/external/mit/freetype/dist/src/cache/ftcsbits.c
U xsrc/external/mit/freetype/dist/src/cache/ftcsbits.h
U xsrc/external/mit/freetype/dist/src/cache/rules.mk
C xsrc/external/mit/freetype/dist/src/lzw/ftzopen.c
U xsrc/external/mit/freetype/dist/src/lzw/Jamfile
U xsrc/external/mit/freetype/dist/src/lzw/ftlzw.c
U xsrc/external/mit/freetype/dist/src/lzw/ftzopen.h
U xsrc/external/mit/freetype/dist/src/lzw/rules.mk
U xsrc/external/mit/freetype/dist/src/pshinter/module.mk
U xsrc/external/mit/freetype/dist/src/pshinter/Jamfile
U xsrc/external/mit/freetype/dist/src/pshinter/pshalgo.c
U xsrc/external/mit/freetype/dist/src/pshinter/pshalgo.h
U xsrc/external/mit/freetype/dist/src/pshinter/pshglob.c
U xsrc/external/mit/freetype/dist/src/pshinter/pshglob.h
U xsrc/external/mit/freetype/dist/src/pshinter/pshinter.c
U xsrc/external/mit/freetype/dist/src/pshinter/pshmod.c
U xsrc/external/mit/freetype/dist/src/pshinter/pshmod.h
U xsrc/external/mit/freetype/dist/src/pshinter/pshnterr.h
U xsrc/external/mit/freetype/dist/src/pshinter/pshpic.c
U xsrc/external/mit/freetype/dist/src/pshinter/pshpic.h
U xsrc/external/mit/freetype/dist/src/pshinter/pshrec.c
U xsrc/external/mit/freetype/dist/src/pshinter/pshrec.h
U xsrc/external/mit/freetype/dist/src/pshinter/rules.mk
U xsrc/external/mit/freetype/dist/src/bdf/module.mk
U xsrc/external/mit/freetype/dist/src/bdf/README
U xsrc/external/mit/freetype/dist/src/bdf/rules.mk
U xsrc/external/mit/freetype/dist/src/bdf/bdf.c
U xsrc/external/mit/freetype/dist/src/bdf/Jamfile
U xsrc/external/mit/freetype/dist/src/bdf/bdf.h
U xsrc/external/mit/freetype/dist/src/bdf/bdfdrivr.c
U xsrc/external/mit/freetype/dist/src/bdf/bdfdrivr.h
U xsrc/external/mit/freetype/dist/src/bdf/bdferror.h
U xsrc/external/mit/freetype/dist/src/bdf/bdflib.c
U xsrc/external/mit/freetype/dist/src/pcf/module.mk
U xsrc/external/mit/freetype/dist/src/pcf/README
U xsrc/external/mit/freetype/dist/src/pcf/rules.mk
U xsrc/external/mit/freetype/dist/src/pcf/pcfutil.c
U xsrc/external/mit/freetype/dist/src/pcf/pcf.c
U xsrc/external/mit/freetype/dist/src/pcf/Jamfile
U xsrc/external/mit/freetype/dist/src/pcf/pcf.h
U xsrc/external/mit/freetype/dist/src/pcf/pcfdrivr.c
U xsrc/external/mit/freetype/dist/src/pcf/pcfdrivr.h
U xsrc/external/mit/freetype/dist/src/pcf/pcferror.h
U xsrc/external/mit/freetype/dist/src/pcf/pcfread.c
U xsrc/external/mit/freetype/dist/src/pcf/pcfread.h
U xsrc/external/mit/freetype/dist/src/pcf/pcfutil.h
U xsrc/external/mit/freetype/dist/src/autofit/afangles.h
U xsrc/external/mit/freetype/dist/src/autofit/Jamfile
U xsrc/external/mit/freetype/dist/src/autofit/afangles.c
U xsrc/external/mit/freetype/dist/src/autofit/afblue.c
U xsrc/external/mit/freetype/dist/src/autofit/afblue.cin
U xsrc/external/mit/freetype/dist/src/autofit/afblue.dat
U xsrc/external/mit/freetype/dist/src/autofit/afblue.h
U xsrc/external/mit/freetype/dist/src/autofit/afblue.hin
U xsrc/external/mit/freetype/dist/src/autofit/afcjk.c
U xsrc/external/mit/freetype/dist/src/autofit/afcjk.h
U xsrc/external/mit/freetype/dist/src/autofit/afcover.h
U xsrc/external/mit/freetype/dist/src/autofit/afdummy.c
U xsrc/external/mit/freetype/dist/src/autofit/afdummy.h
U xsrc/external/mit/freetype/dist/src/autofit/aferrors.h
U xsrc/external/mit/freetype/dist/src/autofit/afglobal.c
U xsrc/external/mit/freetype/dist/src/autofit/afglobal.h
U xsrc/external/mit/freetype/dist/src/autofit/afhints.c
U xsrc/external/mit/freetype/dist/src/autofit/afhints.h
U xsrc/external/mit/freetype/dist/src/autofit/afindic.c
U xsrc/external/mit/freetype/dist/src/autofit/afindic.h
U xsrc/external/mit/freetype/dist/src/autofit/aflatin.c
U xsrc/external/mit/freetype/dist/src/autofit/aflatin.h
U xsrc/external/mit/freetype/dist/src/autofit/aflatin2.c
U xsrc/external/mit/freetype/dist/src/autofit/aflatin2.h
U xsrc/external/mit/freetype/dist/src/autofit/afloader.c
U xsrc/external/mit/freetype/dist/src/autofit/afloader.h
U xsrc/external/mit/freetype/dist/src/autofit/afmodule.c
U xsrc/external/mit/freetype/dist/src/autofit/afmodule.h
U xsrc/external/mit/freetype/dist/src/autofit/afpic.c
U xsrc/external/mit/freetype/dist/src/autofit/afpic.h
U xsrc/external/mit/freetype/dist/src/autofit/afranges.c
U xsrc/external/mit/freetype/dist/src/autofit/afranges.h
U xsrc/external/mit/freetype/dist/src/autofit/afscript.h
N xsrc/external/mit/freetype/dist/src/autofit/afshaper.c
N xsrc/external/mit/freetype/dist/src/autofit/afshaper.h
U xsrc/external/mit/freetype/dist/src/autofit/afstyles.h
U xsrc/external/mit/freetype/dist/src/autofit/aftypes.h
U xsrc/external/mit/freetype/dist/src/autofit/afwarp.c
U xsrc/external/mit/freetype/dist/src/autofit/afwarp.h
U xsrc/external/mit/freetype/dist/src/autofit/afwrtsys.h
U xsrc/external/mit/freetype/dist/src/autofit/autofit.c
U xsrc/external/mit/freetype/dist/src/autofit/module.mk
U xsrc/external/mit/freetype/dist/src/autofit/rules.mk
U xsrc/external/mit/freetype/dist/src/smooth/ftgrays.c
U xsrc/external/mit/freetype/dist/src/smooth/Jamfile
U xsrc/external/mit/freetype/dist/src/smooth/ftgrays.h
U xsrc/external/mit/freetype/dist/src/smooth/ftsmerrs.h
C xsrc/external/mit/freetype/dist/src/smooth/ftsmooth.c
U xsrc/external/mit/freetype/dist/src/smooth/ftsmooth.h
U xsrc/external/mit/freetype/dist/src/smooth/ftspic.c
U xsrc/external/mit/freetype/dist/src/smooth/ftspic.h
U xsrc/external/mit/freetype/dist/src/smooth/module.mk
U xsrc/external/mit/freetype/dist/src/smooth/rules.mk
U xsrc/external/mit/freetype/dist/src/smooth/smooth.c
U xsrc/external/mit/freetype/dist/src/gzip/infcodes.c
U xsrc/external/mit/freetype/dist/src/gzip/zutil.c
U xsrc/external/mit/freetype/dist/src/gzip/infutil.c
U xsrc/external/mit/freetype/dist/src/gzip/inflate.c
U xsrc/external/mit/freetype/dist/src/gzip/inftrees.c
U xsrc/external/mit/freetype/dist/src/gzip/infblock.c
U xsrc/external/mit/freetype/dist/src/gzip/adler32.c
U xsrc/external/mit/freetype/dist/src/gzip/infblock.h
U xsrc/external/mit/freetype/dist/src/gzip/infcodes.h
U xsrc/external/mit/freetype/dist/src/gzip/inffixed.h
U xsrc/external/mit/freetype/dist/src/gzip/inftrees.h
U xsrc/external/mit/freetype/dist/src/gzip/infutil.h
U xsrc/external/mit/freetype/dist/src/gzip/zconf.h
U xsrc/external/mit/freetype/dist/src/gzip/zlib.h
U xsrc/external/mit/freetype/dist/src/gzip/zutil.h
U xsrc/external/mit/freetype/dist/src/gzip/Jamfile
C xsrc/external/mit/freetype/dist/src/gzip/ftgzip.c
U xsrc/external/mit/freetype/dist/src/gzip/rules.mk
U xsrc/external/mit/freetype/dist/src/cff/cf2blues.c
U xsrc/external/mit/freetype/dist/src/cff/cf2error.c
U xsrc/external/mit/freetype/dist/src/cff/cf2font.c
U xsrc/external/mit/freetype/dist/src/cff/cf2read.c
U xsrc/external/mit/freetype/dist/src/cff/cf2stack.c
U xsrc/external/mit/freetype/dist/src/cff/Jamfile
U xsrc/external/mit/freetype/dist/src/cff/cf2arrst.c
U xsrc/external/mit/freetype/dist/src/cff/cf2arrst.h
U xsrc/external/mit/freetype/dist/src/cff/cf2blues.h
U xsrc/external/mit/freetype/dist/src/cff/cf2error.h
U xsrc/external/mit/freetype/dist/src/cff/cf2fixed.h
U xsrc/external/mit/freetype/dist/src/cff/cf2font.h
U xsrc/external/mit/freetype/dist/src/cff/cf2ft.c
U xsrc/external/mit/freetype/dist/src/cff/cf2ft.h
U xsrc/external/mit/freetype/dist/src/cff/cf2glue.h
U xsrc/external/mit/freetype/dist/src/cff/cf2hints.c
U xsrc/external/mit/freetype/dist/src/cff/cf2hints.h
U xsrc/external/mit/freetype/dist/src/cff/cf2intrp.h
U xsrc/external/mit/freetype/dist/src/cff/cf2read.h
U xsrc/external/mit/freetype/dist/src/cff/cf2stack.h
U xsrc/external/mit/freetype/dist/src/cff/cf2types.h
U xsrc/external/mit/freetype/dist/src/cff/cff.c
U xsrc/external/mit/freetype/dist/src/cff/cffcmap.c
U xsrc/external/mit/freetype/dist/src/cff/cffcmap.h
U xsrc/external/mit/freetype/dist/src/cff/cffdrivr.c
U xsrc/external/mit/freetype/dist/src/cff/cffdrivr.h
U xsrc/external/mit/freetype/dist/src/cff/cfferrs.h
U xsrc/external/mit/freetype/dist/src/cff/cffgload.c
U xsrc/external/mit/freetype/dist/src/cff/cffgload.h
C xsrc/external/mit/freetype/dist/src/cff/cffload.c
U xsrc/external/mit/freetype/dist/src/cff/cffload.h
U xsrc/external/mit/freetype/dist/src/cff/cffobjs.c
U xsrc/external/mit/freetype/dist/src/cff/cffobjs.h
U xsrc/external/mit/freetype/dist/src/cff/cffparse.c
U xsrc/external/mit/freetype/dist/src/cff/cffparse.h
U xsrc/external/mit/freetype/dist/src/cff/cffpic.c
U xsrc/external/mit/freetype/dist/src/cff/cffpic.h
U xsrc/external/mit/freetype/dist/src/cff/cfftoken.h
U xsrc/external/mit/freetype/dist/src/cff/cfftypes.h
U xsrc/external/mit/freetype/dist/src/cff/module.mk
U xsrc/external/mit/freetype/dist/src/cff/rules.mk
U xsrc/external/mit/freetype/dist/src/cff/cf2intrp.c
U xsrc/external/mit/freetype/dist/src/type1/module.mk
U xsrc/external/mit/freetype/dist/src/type1/Jamfile
U xsrc/external/mit/freetype/dist/src/type1/t1driver.c
U xsrc/external/mit/freetype/dist/src/type1/rules.mk
U xsrc/external/mit/freetype/dist/src/type1/t1afm.c
U xsrc/external/mit/freetype/dist/src/type1/t1afm.h
U xsrc/external/mit/freetype/dist/src/type1/t1driver.h
U xsrc/external/mit/freetype/dist/src/type1/t1errors.h
U xsrc/external/mit/freetype/dist/src/type1/t1gload.c
U xsrc/external/mit/freetype/dist/src/type1/t1gload.h
U xsrc/external/mit/freetype/dist/src/type1/t1load.c
U xsrc/external/mit/freetype/dist/src/type1/t1load.h
U xsrc/external/mit/freetype/dist/src/type1/t1objs.c
U xsrc/external/mit/freetype/dist/src/type1/t1objs.h
U xsrc/external/mit/freetype/dist/src/type1/t1parse.c
U xsrc/external/mit/freetype/dist/src/type1/t1parse.h
U xsrc/external/mit/freetype/dist/src/type1/t1tokens.h
U xsrc/external/mit/freetype/dist/src/type1/type1.c
U xsrc/external/mit/freetype/dist/src/psaux/afmparse.c
U xsrc/external/mit/freetype/dist/src/psaux/Jamfile
U xsrc/external/mit/freetype/dist/src/psaux/afmparse.h
U xsrc/external/mit/freetype/dist/src/psaux/module.mk
U xsrc/external/mit/freetype/dist/src/psaux/psaux.c
U xsrc/external/mit/freetype/dist/src/psaux/psauxerr.h
U xsrc/external/mit/freetype/dist/src/psaux/psauxmod.c
U xsrc/external/mit/freetype/dist/src/psaux/psauxmod.h
U xsrc/external/mit/freetype/dist/src/psaux/psconv.c
U xsrc/external/mit/freetype/dist/src/psaux/psconv.h
U xsrc/external/mit/freetype/dist/src/psaux/psobjs.c
U xsrc/external/mit/freetype/dist/src/psaux/psobjs.h
U xsrc/external/mit/freetype/dist/src/psaux/rules.mk
U xsrc/external/mit/freetype/dist/src/psaux/t1cmap.c
U xsrc/external/mit/freetype/dist/src/psaux/t1cmap.h
U xsrc/external/mit/freetype/dist/src/psaux/t1decode.c
U xsrc/external/mit/freetype/dist/src/psaux/t1decode.h
U xsrc/external/mit/freetype/dist/src/base/basepic.c
U xsrc/external/mit/freetype/dist/src/base/md5.c
U xsrc/external/mit/freetype/dist/src/base/md5.h
U xsrc/external/mit/freetype/dist/src/base/Jamfile
U xsrc/external/mit/freetype/dist/src/base/basepic.h
U xsrc/external/mit/freetype/dist/src/base/ftadvanc.c
U xsrc/external/mit/freetype/dist/src/base/ftapi.c
U xsrc/external/mit/freetype/dist/src/base/ftbase.c
U xsrc/external/mit/freetype/dist/src/base/ftbase.h
U xsrc/external/mit/freetype/dist/src/base/ftbbox.c
U xsrc/external/mit/freetype/dist/src/base/ftbdf.c
U xsrc/external/mit/freetype/dist/src/base/ftbitmap.c
U xsrc/external/mit/freetype/dist/src/base/ftcalc.c
U xsrc/external/mit/freetype/dist/src/base/ftcid.c
U xsrc/external/mit/freetype/dist/src/base/ftdbgmem.c
U xsrc/external/mit/freetype/dist/src/base/ftdebug.c
U xsrc/external/mit/freetype/dist/src/base/ftfntfmt.c
U xsrc/external/mit/freetype/dist/src/base/ftfstype.c
U xsrc/external/mit/freetype/dist/src/base/ftgasp.c
U xsrc/external/mit/freetype/dist/src/base/ftgloadr.c
U xsrc/external/mit/freetype/dist/src/base/ftglyph.c
U xsrc/external/mit/freetype/dist/src/base/ftgxval.c
N xsrc/external/mit/freetype/dist/src/base/fthash.c
U xsrc/external/mit/freetype/dist/src/base/ftinit.c
U xsrc/external/mit/freetype/dist/src/base/ftlcdfil.c
U xsrc/external/mit/freetype/dist/src/base/ftmac.c
U xsrc/external/mit/freetype/dist/src/base/ftmm.c
U xsrc/external/mit/freetype/dist/src/base/ftobjs.c
U xsrc/external/mit/freetype/dist/src/base/ftotval.c
U xsrc/external/mit/freetype/dist/src/base/ftoutln.c
U xsrc/external/mit/freetype/dist/src/base/ftpatent.c
U xsrc/external/mit/freetype/dist/src/base/ftpfr.c
U xsrc/external/mit/freetype/dist/src/base/ftpic.c
U xsrc/external/mit/freetype/dist/src/base/ftrfork.c
U xsrc/external/mit/freetype/dist/src/base/ftsnames.c
U xsrc/external/mit/freetype/dist/src/base/ftstream.c
U xsrc/external/mit/freetype/dist/src/base/ftstroke.c
U xsrc/external/mit/freetype/dist/src/base/ftsynth.c
U xsrc/external/mit/freetype/dist/src/base/ftsystem.c
U xsrc/external/mit/freetype/dist/src/base/fttrigon.c
U xsrc/external/mit/freetype/dist/src/base/fttype1.c
U xsrc/external/mit/freetype/dist/src/base/ftutil.c
U xsrc/external/mit/freetype/dist/src/base/ftwinfnt.c
U xsrc/external/mit/freetype/dist/src/base/rules.mk
U xsrc/external/mit/freetype/dist/src/otvalid/module.mk
U xsrc/external/mit/freetype/dist/src/otvalid/Jamfile
U xsrc/external/mit/freetype/dist/src/otvalid/otvalid.c
U xsrc/external/mit/freetype/dist/src/otvalid/otvalid.h
U xsrc/external/mit/freetype/dist/src/otvalid/otvbase.c
U xsrc/external/mit/freetype/dist/src/otvalid/otvcommn.c
U xsrc/external/mit/freetype/dist/src/otvalid/otvcommn.h
U xsrc/external/mit/freetype/dist/src/otvalid/otverror.h
U xsrc/external/mit/freetype/dist/src/otvalid/otvgdef.c
U xsrc/external/mit/freetype/dist/src/otvalid/otvgpos.c
U xsrc/external/mit/freetype/dist/src/otvalid/otvgpos.h
U xsrc/external/mit/freetype/dist/src/otvalid/otvgsub.c
U xsrc/external/mit/freetype/dist/src/otvalid/otvjstf.c
U xsrc/external/mit/freetype/dist/src/otvalid/otvmath.c
U xsrc/external/mit/freetype/dist/src/otvalid/otvmod.c
U xsrc/external/mit/freetype/dist/src/otvalid/otvmod.h
U xsrc/external/mit/freetype/dist/src/otvalid/rules.mk
U xsrc/external/mit/freetype/dist/src/gxvalid/gxvalid.c
U xsrc/external/mit/freetype/dist/src/gxvalid/Jamfile
U xsrc/external/mit/freetype/dist/src/gxvalid/README
U xsrc/external/mit/freetype/dist/src/gxvalid/gxvalid.h
U xsrc/external/mit/freetype/dist/src/gxvalid/gxvbsln.c
U xsrc/external/mit/freetype/dist/src/gxvalid/gxvcommn.c
U xsrc/external/mit/freetype/dist/src/gxvalid/gxvcommn.h
U xsrc/external/mit/freetype/dist/src/gxvalid/gxverror.h
U xsrc/external/mit/freetype/dist/src/gxvalid/gxvfeat.c
U xsrc/external/mit/freetype/dist/src/gxvalid/gxvfeat.h
U xsrc/external/mit/freetype/dist/src/gxvalid/gxvfgen.c
U xsrc/external/mit/freetype/dist/src/gxvalid/gxvjust.c
U xsrc/external/mit/freetype/dist/src/gxvalid/gxvkern.c
U xsrc/external/mit/freetype/dist/src/gxvalid/gxvlcar.c
U xsrc/external/mit/freetype/dist/src/gxvalid/gxvmod.c
U xsrc/external/mit/freetype/dist/src/gxvalid/gxvmod.h
U xsrc/external/mit/freetype/dist/src/gxvalid/gxvmort.c
U xsrc/external/mit/freetype/dist/src/gxvalid/gxvmort.h
U xsrc/external/mit/freetype/dist/src/gxvalid/gxvmort0.c
U xsrc/external/mit/freetype/dist/src/gxvalid/gxvmort1.c
U xsrc/external/mit/freetype/dist/src/gxvalid/gxvmort2.c
U xsrc/external/mit/freetype/dist/src/gxvalid/gxvmort4.c
U xsrc/external/mit/freetype/dist/src/gxvalid/gxvmort5.c
U xsrc/external/mit/freetype/dist/src/gxvalid/gxvmorx.c
U xsrc/external/mit/freetype/dist/src/gxvalid/gxvmorx.h
U xsrc/external/mit/freetype/dist/src/gxvalid/gxvmorx0.c
U xsrc/external/mit/freetype/dist/src/gxvalid/gxvmorx1.c
U xsrc/external/mit/freetype/dist/src/gxvalid/gxvmorx2.c
U xsrc/external/mit/freetype/dist/src/gxvalid/gxvmorx4.c
U xsrc/external/mit/freetype/dist/src/gxvalid/gxvmorx5.c
U xsrc/external/mit/freetype/dist/src/gxvalid/gxvopbd.c
U xsrc/external/mit/freetype/dist/src/gxvalid/gxvprop.c
U xsrc/external/mit/freetype/dist/src/gxvalid/gxvtrak.c
U xsrc/external/mit/freetype/dist/src/gxvalid/module.mk
U xsrc/external/mit/freetype/dist/src/gxvalid/rules.mk
U xsrc/external/mit/freetype/dist/src/bzip2/ftbzip2.c
U xsrc/external/mit/freetype/dist/src/bzip2/Jamfile
U xsrc/external/mit/freetype/dist/src/bzip2/rules.mk
U xsrc/external/mit/freetype/dist/src/psnames/module.mk
U xsrc/external/mit/freetype/dist/src/psnames/Jamfile
U xsrc/external/mit/freetype/dist/src/psnames/psmodule.c
U xsrc/external/mit/freetype/dist/src/psnames/psmodule.h
U xsrc/external/mit/freetype/dist/src/psnames/psnamerr.h
U xsrc/external/mit/freetype/dist/src/psnames/psnames.c
U xsrc/external/mit/freetype/dist/src/psnames/pspic.c
U xsrc/external/mit/freetype/dist/src/psnames/pspic.h
U xsrc/external/mit/freetype/dist/src/psnames/pstables.h
U xsrc/external/mit/freetype/dist/src/psnames/rules.mk
U xsrc/external/mit/freetype/dist/src/winfonts/fnterrs.h
U xsrc/external/mit/freetype/dist/src/winfonts/Jamfile
U xsrc/external/mit/freetype/dist/src/winfonts/module.mk
U xsrc/external/mit/freetype/dist/src/winfonts/rules.mk
U xsrc/external/mit/freetype/dist/src/winfonts/winfnt.c
U xsrc/external/mit/freetype/dist/src/winfonts/winfnt.h
U xsrc/external/mit/freetype/dist/src/truetype/module.mk
U xsrc/external/mit/freetype/dist/src/truetype/Jamfile
U xsrc/external/mit/freetype/dist/src/truetype/truetype.c
U xsrc/external/mit/freetype/dist/src/truetype/rules.mk
U xsrc/external/mit/freetype/dist/src/truetype/ttdriver.c
U xsrc/external/mit/freetype/dist/src/truetype/ttdriver.h
U xsrc/external/mit/freetype/dist/src/truetype/tterrors.h
U xsrc/external/mit/freetype/dist/src/truetype/ttgload.c
U xsrc/external/mit/freetype/dist/src/truetype/ttgload.h
U xsrc/external/mit/freetype/dist/src/truetype/ttgxvar.c
U xsrc/external/mit/freetype/dist/src/truetype/ttgxvar.h
U xsrc/external/mit/freetype/dist/src/truetype/ttinterp.c
U xsrc/external/mit/freetype/dist/src/truetype/ttinterp.h
U xsrc/external/mit/freetype/dist/src/truetype/ttobjs.c
U xsrc/external/mit/freetype/dist/src/truetype/ttobjs.h
U xsrc/external/mit/freetype/dist/src/truetype/ttpic.c
U xsrc/external/mit/freetype/dist/src/truetype/ttpic.h
U xsrc/external/mit/freetype/dist/src/truetype/ttpload.c
U xsrc/external/mit/freetype/dist/src/truetype/ttpload.h
U xsrc/external/mit/freetype/dist/src/truetype/ttsubpix.c
U xsrc/external/mit/freetype/dist/src/truetype/ttsubpix.h
U xsrc/external/mit/freetype/dist/src/raster/ftraster.c
U xsrc/external/mit/freetype/dist/src/raster/Jamfile
U xsrc/external/mit/freetype/dist/src/raster/ftmisc.h
U xsrc/external/mit/freetype/dist/src/raster/ftraster.h
U xsrc/external/mit/freetype/dist/src/raster/ftrend1.c
U xsrc/external/mit/freetype/dist/src/raster/ftrend1.h
U xsrc/external/mit/freetype/dist/src/raster/module.mk
U xsrc/external/mit/freetype/dist/src/raster/raster.c
U xsrc/external/mit/freetype/dist/src/raster/rasterrs.h
U xsrc/external/mit/freetype/dist/src/raster/rastpic.c
U xsrc/external/mit/freetype/dist/src/raster/rastpic.h
U xsrc/external/mit/freetype/dist/src/raster/rules.mk
U xsrc/external/mit/freetype/dist/src/cid/ciderrs.h
U xsrc/external/mit/freetype/dist/src/cid/Jamfile
U xsrc/external/mit/freetype/dist/src/cid/cidgload.c
U xsrc/external/mit/freetype/dist/src/cid/cidgload.h
U xsrc/external/mit/freetype/dist/src/cid/cidload.c
U xsrc/external/mit/freetype/dist/src/cid/cidload.h
U xsrc/external/mit/freetype/dist/src/cid/cidobjs.c
U xsrc/external/mit/freetype/dist/src/cid/cidobjs.h
U xsrc/external/mit/freetype/dist/src/cid/cidparse.c
U xsrc/external/mit/freetype/dist/src/cid/cidparse.h
U xsrc/external/mit/freetype/dist/src/cid/cidriver.c
U xsrc/external/mit/freetype/dist/src/cid/cidriver.h
U xsrc/external/mit/freetype/dist/src/cid/cidtoken.h
U xsrc/external/mit/freetype/dist/src/cid/module.mk
U xsrc/external/mit/freetype/dist/src/cid/rules.mk
U xsrc/external/mit/freetype/dist/src/cid/type1cid.c
U xsrc/external/mit/freetype/dist/src/pfr/module.mk
U xsrc/external/mit/freetype/dist/src/pfr/Jamfile
U xsrc/external/mit/freetype/dist/src/pfr/pfrcmap.c
U xsrc/external/mit/freetype/dist/src/pfr/pfr.c
U xsrc/external/mit/freetype/dist/src/pfr/pfrcmap.h
U xsrc/external/mit/freetype/dist/src/pfr/pfrdrivr.c
U xsrc/external/mit/freetype/dist/src/pfr/pfrdrivr.h
U xsrc/external/mit/freetype/dist/src/pfr/pfrerror.h
U xsrc/external/mit/freetype/dist/src/pfr/pfrgload.c
U xsrc/external/mit/freetype/dist/src/pfr/pfrgload.h
U xsrc/external/mit/freetype/dist/src/pfr/pfrload.c
U xsrc/external/mit/freetype/dist/src/pfr/pfrload.h
U xsrc/external/mit/freetype/dist/src/pfr/pfrobjs.c
U xsrc/external/mit/freetype/dist/src/pfr/pfrobjs.h
U xsrc/external/mit/freetype/dist/src/pfr/pfrsbit.c
U xsrc/external/mit/freetype/dist/src/pfr/pfrsbit.h
U xsrc/external/mit/freetype/dist/src/pfr/pfrtypes.h
U xsrc/external/mit/freetype/dist/src/pfr/rules.mk
U xsrc/external/mit/freetype/dist/src/tools/cordic.py
U xsrc/external/mit/freetype/dist/src/tools/Jamfile
U xsrc/external/mit/freetype/dist/src/tools/update-copyright
U xsrc/external/mit/freetype/dist/src/tools/test_afm.c
U xsrc/external/mit/freetype/dist/src/tools/test_bbox.c
U xsrc/external/mit/freetype/dist/src/tools/test_trig.c
U xsrc/external/mit/freetype/dist/src/tools/apinames.c
U xsrc/external/mit/freetype/dist/src/tools/chktrcmp.py
U xsrc/external/mit/freetype/dist/src/tools/afblue.pl
U xsrc/external/mit/freetype/dist/src/tools/glnames.py
U xsrc/external/mit/freetype/dist/src/tools/no-copyright
U xsrc/external/mit/freetype/dist/src/tools/update-copyright-year
U xsrc/external/mit/freetype/dist/src/tools/ftrandom/ftrandom.c
U xsrc/external/mit/freetype/dist/src/tools/ftrandom/Makefile
U xsrc/external/mit/freetype/dist/src/tools/ftrandom/README
N xsrc/external/mit/freetype/dist/src/tools/ftfuzzer/ftfuzzer.cc
N xsrc/external/mit/freetype/dist/src/tools/ftfuzzer/README
N xsrc/external/mit/freetype/dist/src/tools/ftfuzzer/ftmutator.cc
N xsrc/external/mit/freetype/dist/src/tools/ftfuzzer/runinput.cc
U xsrc/external/mit/freetype/dist/src/tools/docmaker/docbeauty.py
U xsrc/external/mit/freetype/dist/src/tools/docmaker/content.py
U xsrc/external/mit/freetype/dist/src/tools/docmaker/docmaker.py
U xsrc/external/mit/freetype/dist/src/tools/docmaker/formatter.py
U xsrc/external/mit/freetype/dist/src/tools/docmaker/sources.py
U xsrc/external/mit/freetype/dist/src/tools/docmaker/tohtml.py
U xsrc/external/mit/freetype/dist/src/tools/docmaker/utils.py
89 conflicts created by this import.
Use the following command to help the merge:
cvs checkout -jxorg:yesterday -jxorg xsrc/external/mit/freetype/dist
Home |
Main Index |
Thread Index |
Old Index