2003-12-31 18:05 Ralph Giles

Add a clause to the license description for the Freetype License requirements.

[LICENSE 1.2.2.1]

2003-12-31 17:51 Ralph Giles

Add the text of the Freetype license and references to the freetype project to clarify our
compilance. The new truetype bytecode interpreter is based in part of code made available
as part of Freetype 1.

[doc/Develop.htm 1.110.2.4, doc/FTL.txt 1.1.2.1, doc/Language.htm 1.68.2.3]

2003-12-24 03:31 Ralph Giles

Correct a typo in the maintainer-clean target in the legacy unix makefiles. Thanks to William
Bader for catching this.

[src/unix-gcc.mak 1.42.2.1, src/unixansi.mak 1.30.2.2]

2003-12-23 00:06 Ralph Giles

Update changelog and release notes for the 8.13 release candidate.

[doc/Changes.htm 1.43.2.2, doc/Details.htm 1.1.2.2, doc/Details8.htm 1.5.2.3, doc/History8.htm 1.1.2.3, doc/News.htm 1.123.2.3]

2003-12-22 23:05 Ralph Giles

Update version and release date on the stable branch.

[doc/API.htm 1.31.2.2, doc/Bug-form.htm 1.34.2.2, doc/Bug-info.htm 1.32.2.2, doc/C-style.htm 1.40.2.2, doc/Commprod.htm 1.26.2.2, doc/Copying.htm 1.25.2.2, doc/DLL.htm 1.27.2.2, doc/Deprecated.htm 1.6.2.2, doc/Details8.htm 1.5.2.2, doc/Develop.htm 1.110.2.3, doc/Devices.htm 1.63.2.2, doc/Drivers.htm 1.37.2.2, doc/Fonts.htm 1.35.2.2, doc/Helpers.htm 1.29.2.2, doc/History1.htm 1.25.2.2, doc/History2.htm 1.25.2.2, doc/History3.htm 1.25.2.2, doc/History4.htm 1.25.2.2, doc/History5.htm 1.27.2.2, doc/History6.htm 1.42.2.2, doc/History7.htm 1.30.2.2, doc/History8.htm 1.1.2.2, doc/Htmstyle.htm 1.30.2.2, doc/Install.htm 1.39.2.2, doc/Issues.htm 1.34.2.2, doc/Language.htm 1.68.2.2, doc/Lib.htm 1.28.2.2, doc/Maintain.htm 1.36.2.2, doc/Make.htm 1.63.2.2, doc/New-user.htm 1.44.2.2, doc/Projects.htm 1.49.2.2, doc/Ps-style.htm 1.23.2.2, doc/Ps2epsi.htm 1.27.2.2, doc/Ps2pdf.htm 1.51.2.2, doc/Psfiles.htm 1.43.2.2, doc/Readme.htm 1.48.2.2, doc/Release.htm 1.76.2.2, doc/Source.htm 1.25.2.2, doc/Tester.htm 1.25.2.2, doc/Testing.htm 1.17.2.2, doc/Unix-lpr.htm 1.25.2.2, doc/Use.htm 1.81.2.2, doc/Xfonts.htm 1.25.2.2, man/dvipdf.1 1.22.2.2, man/font2c.1 1.22.2.2, man/gs.1 1.23.2.2, man/gslp.1 1.22.2.2, man/gsnd.1 1.22.2.2, man/pdf2dsc.1 1.21.2.2, man/pdf2ps.1 1.23.2.2, man/pdfopt.1 1.21.2.2, man/pf2afm.1 1.22.2.2, man/pfbtopfa.1 1.23.2.2, man/printafm.1 1.22.2.2, man/ps2ascii.1 1.21.2.2, man/ps2epsi.1 1.20.2.2, man/ps2pdf.1 1.27.2.2, man/ps2pdfwr.1 1.26.2.2, man/ps2ps.1 1.29.2.2, man/wftopfa.1 1.22.2.2]

2003-12-22 22:05 Ralph Giles

Bump the version number of the stable branch.

[doc/News.htm 1.123.2.2, lib/gs_init.ps 1.87.2.2, src/version.mak 1.60.2.2]

2003-12-22 21:19 Ralph Giles

Attempt to work around systems that do not have stdint.h but do have some stdint types in
sys/types.h which is universally included by our std.h. This code is untested.

[src/configure.ac 1.28.2.3, src/stdint_.h 1.1.2.2]

2003-12-20 17:15 Ralph Giles

Remove a duplicate semicolon at the end of statement.

[src/gxistate.h 1.15.2.2]

2003-12-20 17:00 Ralph Giles

Add a missing newline at the end of the file.

[src/zchar1.c 1.28.2.2]

2003-12-20 16:31 Ralph Giles

Correct some line endings. Thanks to Nelson Beebe for reporting this.

[src/gp_unifs.c 1.13.2.2]

2003-12-20 04:11 Ray Johnston

Fix a premature closedevice leading to a SEGV when a setpagedevice follows
a setdevice with the only reference to the device in the graphics state.
Bug #686909 and #687204 detected with ps2epsi.ps.

DETAILS:

the ps2epsi.ps sets an image device, then does a .setsafe which uses
setpagedevice to set .LockSafetyParams. Eventually setpagedevice results
in a call to gs_setdevice_no_init, but the reference count to the current
device is 1 so even though the device is not being changed, the device
was being closed (which freed the buffer and line pointers). Usually
the currentdevice reference count is > 1 since there is more than one
gstate containing a pointer to the device.

This has been broken since 8.10 when version 1.19 was released with
some changes to device finalization.

Note that ps2epsi.ps is extremely fragile and still doesn't work with
examples/alphabet.ps after the patch (due to the "clear cleardictstack
alphabetsave restore" logic at the end. This patch is ONLY for the SEGV.
IMO, ps2epsi really is a mess and needs to be scrapped and designed
properly.

[src/gsdevice.c 1.19.2.1]

2003-12-14 01:30 Alex Cherepanov

Fix MSVC debug targets: add explicit makefile specification.
Fix bug 687205.

DETAILS:
Debug targets have always been broken on Windows because nmake by 
default looks for "MAKEFILE" and fails. Until recently, the default
target was built without the -O2 flag and could be used for debugging.
This patch adds the correct filename explicitly to the debug target 
so it can be used instead.

[src/msvc32.mak 1.44.2.2]

2003-12-13 05:09 Ralph Giles

Remove another file no longer relevent.

[src/gxop1.h 1.5.2.1]

2003-12-13 04:42 Ralph Giles

Remove some files that are no longer current.

[src/gxhint1.c 1.5.2.1, src/gxhint2.c 1.6.2.1, src/gxhint3.c 1.7.2.1]

2003-12-12 22:35 Ralph Giles

Propagate recent portability fixes from the HEAD branch.

[doc/Develop.htm 1.110.2.2, src/configure.ac 1.28.2.2, src/idict.c 1.7.2.2, src/lib.mak 1.126.2.2, src/sjbig2.c 1.4.2.1, src/sjbig2.h 1.3.2.1, src/std.h 1.8.2.2, src/stdint_.h 1.1.2.1, src/stdpre.h 1.15.2.2, src/ttfsfnt.h 1.6.2.2]

2003-12-12 22:07 Ralph Giles

Update the GS_8_1X branch to the 8.12 release.

[Resource/CMap/ETHK-B5-H 1.1.4.1, Resource/CMap/ETHK-B5-V 1.1.4.1, Resource/CMap/ETen-B5-H 1.1.2.1, Resource/CMap/ETen-B5-UCS2 1.1.4.1, Resource/CMap/ETen-B5-V 1.1.2.1, Resource/CMap/ETenms-B5-H 1.1.4.1, Resource/CMap/ETenms-B5-V 1.1.4.1, Resource/CMap/Identity-H 1.1.4.1, Resource/CMap/Identity-V 1.1.4.1, Resource/ColorSpace/DefaultCMYK 1.2.2.1, Resource/ColorSpace/DefaultGray 1.2.2.1, Resource/ColorSpace/DefaultRGB 1.2.2.1, Resource/Decoding/Latin1 1.1.2.1, Resource/Decoding/StandardEncoding 1.1.4.1, Resource/Decoding/Unicode 1.1.2.1, doc/API.htm 1.31.2.1, doc/Bug-form.htm 1.34.2.1, doc/Bug-info.htm 1.32.2.1, doc/C-style.htm 1.40.2.1, doc/Changes.htm 1.43.2.1, doc/Commprod.htm 1.26.2.1, doc/Copying.htm 1.25.2.1, doc/DLL.htm 1.27.2.1, doc/Deprecated.htm 1.6.2.1, doc/Details.htm 1.1.2.1, doc/Details8.htm 1.5.2.1, doc/Develop.htm 1.110.2.1, doc/Devices.htm 1.63.2.1, doc/Drivers.htm 1.37.2.1, doc/Fonts.htm 1.35.2.1, doc/Helpers.htm 1.29.2.1, doc/History1.htm 1.25.2.1, doc/History2.htm 1.25.2.1, doc/History3.htm 1.25.2.1, doc/History4.htm 1.25.2.1, doc/History5.htm 1.27.2.1, doc/History6.htm 1.42.2.1, doc/History7.htm 1.30.2.1, doc/History8.htm 1.1.2.1, doc/Htmstyle.htm 1.30.2.1, doc/Install.htm 1.39.2.1, doc/Issues.htm 1.34.2.1, doc/Language.htm 1.68.2.1, doc/Lib.htm 1.28.2.1, doc/Maintain.htm 1.36.2.1, doc/Make.htm 1.63.2.1, doc/New-user.htm 1.44.2.1, doc/News.htm 1.123.2.1, doc/Projects.htm 1.49.2.1, doc/Ps-style.htm 1.23.2.1, doc/Ps2epsi.htm 1.27.2.1, doc/Ps2pdf.htm 1.51.2.1, doc/Psfiles.htm 1.43.2.1, doc/Readme.htm 1.48.2.1, doc/Release.htm 1.76.2.1, doc/Source.htm 1.25.2.1, doc/Tester.htm 1.25.2.1, doc/Testing.htm 1.17.2.1, doc/Unix-lpr.htm 1.25.2.1, doc/Use.htm 1.81.2.1, doc/Xfonts.htm 1.25.2.1, doc/gs-vms.hlp 1.24.2.1, icclib/icc.c 1.8.2.1, ijs/Makefile.in 1.1.6.1, lib/Fontmap 1.1.10.1, lib/bdftops.ps 1.6.2.1, lib/dumphint 1.1.4.1, lib/dumphint.bat 1.1.4.1, lib/dumphint.ps 1.1.4.1, lib/font2c.ps 1.5.2.1, lib/gs_cidcm.ps 1.10.2.1, lib/gs_ciddc.ps 1.11.2.1, lib/gs_cidfn.ps 1.26.2.1, lib/gs_cspace.ps 1.5.2.1, lib/gs_devcs.ps 1.1.2.1, lib/gs_diskn.ps 1.4.2.1, lib/gs_fntem.ps 1.4.2.1, lib/gs_fonts.ps 1.28.2.1, lib/gs_frsd.ps 1.6.2.1, lib/gs_icc.ps 1.7.2.1, lib/gs_init.ps 1.87.2.1, lib/gs_lev2.ps 1.29.2.1, lib/gs_ll3.ps 1.18.2.1, lib/gs_pdfwr.ps 1.31.2.1, lib/gs_pfile.ps 1.4.2.1, lib/gs_res.ps 1.33.2.1, lib/gs_resst.ps 1.2.2.1, lib/gs_sepr.ps 1.2.2.1, lib/gs_statd.ps 1.11.2.1, lib/gs_stres.ps 1.2.2.1, lib/gs_ttf.ps 1.28.2.1, lib/gslp.ps 1.5.2.1, lib/pdf_base.ps 1.34.2.1, lib/pdf_draw.ps 1.66.2.1, lib/pdf_font.ps 1.53.2.1, lib/pdf_main.ps 1.71.2.1, lib/pdf_ops.ps 1.27.2.1, lib/pdf_rbld.ps 1.4.4.1, lib/pdf_sec.ps 1.11.2.1, lib/pdfopt.ps 1.16.2.1, lib/pdfwrite.ps 1.10.2.1, lib/pphs.ps 1.5.2.1, lib/ps2ascii.ps 1.7.2.1, lib/ps2epsi.ps 1.9.2.1, lib/wftopfa.ps 1.4.2.1, man/dvipdf.1 1.22.2.1, man/font2c.1 1.22.2.1, man/gs.1 1.23.2.1, man/gslp.1 1.22.2.1, man/gsnd.1 1.22.2.1, man/pdf2dsc.1 1.21.2.1, man/pdf2ps.1 1.23.2.1, man/pdfopt.1 1.21.2.1, man/pf2afm.1 1.22.2.1, man/pfbtopfa.1 1.23.2.1, man/printafm.1 1.22.2.1, man/ps2ascii.1 1.21.2.1, man/ps2epsi.1 1.20.2.1, man/ps2pdf.1 1.27.2.1, man/ps2pdfwr.1 1.26.2.1, man/ps2ps.1 1.29.2.1, man/wftopfa.1 1.22.2.1, src/Makefile.in 1.24.2.1, src/bcwin32.mak 1.27.2.1, src/configure.ac 1.28.2.1, src/devs.mak 1.91.2.1, src/dmmain.c 1.3.4.1, src/dmmain.r 1.1.4.1, src/dpmain.c 1.8.2.1, src/dscparse.c 1.12.2.1, src/dscparse.h 1.11.2.1, src/dvx-gcc.mak 1.23.2.1, src/dw32c.def 1.2.10.1, src/dwdll.c 1.5.2.1, src/dwimg.c 1.8.2.1, src/dwmain.c 1.12.2.1, src/dwmain32.def 1.2.10.1, src/dwmainc.c 1.14.2.1, src/dwnodll.c 1.4.2.1, src/dwsetup.def 1.2.8.1, src/dwtrace.h 1.4.2.1, src/dwuninst.def 1.2.8.1, src/dxmain.c 1.10.2.1, src/dxmainc.c 1.7.2.1, src/errors.h 1.7.2.1, src/fapi_ft.c 1.8.2.1, src/fapiufst.c 1.22.2.1, src/gdevbbox.c 1.11.2.1, src/gdevbit.c 1.6.2.1, src/gdevcgm.c 1.6.2.1, src/gdevdbit.c 1.8.2.1, src/gdevddrw.c 1.7.2.1, src/gdevddrw.h 1.2.2.1, src/gdevdevn.c 1.5.2.1, src/gdevdevn.h 1.2.4.1, src/gdevdflt.c 1.10.2.1, src/gdevdgbr.c 1.9.2.1, src/gdevdljm.c 1.8.2.1, src/gdevdsp.c 1.19.2.1, src/gdevepsc.c 1.9.2.1, src/gdevm32.c 1.4.2.1, src/gdevmrun.c 1.4.2.1, src/gdevnfwd.c 1.8.2.1, src/gdevp14.c 1.14.2.1, src/gdevpdf.c 1.67.2.1, src/gdevpdfb.c 1.18.2.1, src/gdevpdfc.c 1.31.2.1, src/gdevpdfd.c 1.27.2.1, src/gdevpdfg.c 1.31.2.1, src/gdevpdfg.h 1.21.2.1, src/gdevpdfi.c 1.45.2.1, src/gdevpdfj.c 1.24.2.1, src/gdevpdfm.c 1.28.2.1, src/gdevpdfo.c 1.19.2.1, src/gdevpdfp.c 1.30.2.1, src/gdevpdfu.c 1.40.2.1, src/gdevpdfv.c 1.21.2.1, src/gdevpdfx.h 1.68.2.1, src/gdevpdtb.c 1.18.2.1, src/gdevpdtb.h 1.8.2.1, src/gdevpdtc.c 1.17.2.1, src/gdevpdtd.c 1.11.2.1, src/gdevpdte.c 1.33.2.1, src/gdevpdtf.c 1.25.2.1, src/gdevpdtf.h 1.16.2.1, src/gdevpdti.c 1.14.2.1, src/gdevpdts.c 1.24.2.1, src/gdevpdtt.c 1.43.2.1, src/gdevpdtt.h 1.14.2.1, src/gdevpdtv.c 1.1.4.1, src/gdevpdtv.h 1.1.4.1, src/gdevpdtw.c 1.16.2.1, src/gdevpdtw.h 1.2.2.1, src/gdevpdtx.h 1.1.2.1, src/gdevplnx.c 1.5.2.1, src/gdevpng.c 1.7.2.1, src/gdevpnga.c 1.6.2.1, src/gdevprn.c 1.13.2.1, src/gdevps.c 1.34.2.1, src/gdevpsd.c 1.4.2.1, src/gdevpsdf.h 1.18.2.1, src/gdevpsdi.c 1.25.2.1, src/gdevpsdu.c 1.17.2.1, src/gdevpsf.h 1.22.2.1, src/gdevpsf2.c 1.26.2.1, src/gdevpsfm.c 1.13.2.1, src/gdevpsft.c 1.28.2.1, src/gdevpsfu.c 1.10.2.1, src/gdevpsfx.c 1.17.2.1, src/gdevpx.c 1.12.2.1, src/gdevrops.c 1.6.2.1, src/gdevtrac.c 1.4.2.1, src/gdevupd.c 1.12.2.1, src/gdevvec.c 1.18.2.1, src/gdevvec.h 1.11.2.1, src/genarch.c 1.5.2.1, src/geninit.c 1.7.2.1, src/gp.h 1.22.2.1, src/gp_dosfs.c 1.14.2.1, src/gp_dvx.c 1.8.2.1, src/gp_iwatc.c 1.13.2.1, src/gp_mac.h 1.4.2.1, src/gp_macio.c 1.20.2.1, src/gp_mswin.c 1.16.2.1, src/gp_ntfs.c 1.18.2.1, src/gp_os2.c 1.26.2.1, src/gp_os9.c 1.9.2.1, src/gp_unifn.c 1.13.2.1, src/gp_unifs.c 1.13.2.1, src/gp_unix.c 1.10.2.1, src/gp_vms.c 1.29.2.1, src/gpmisc.c 1.21.2.1, src/gpmisc.h 1.11.2.1, src/gs.c 1.10.2.1, src/gsalloc.c 1.19.2.1, src/gsccode.h 1.9.2.1, src/gscdef.c 1.33.2.1, src/gscdevn.c 1.14.2.1, src/gscdevn.h 1.7.2.1, src/gscencs.c 1.6.2.1, src/gscencs.h 1.4.2.1, src/gscie.c 1.13.2.1, src/gscie.h 1.12.2.1, src/gsciemap.c 1.12.2.1, src/gscolor.c 1.10.2.1, src/gscolor1.c 1.8.2.1, src/gscolor2.c 1.14.2.1, src/gscolor2.h 1.7.2.1, src/gscpixel.c 1.8.2.1, src/gscscie.c 1.8.2.1, src/gscsepr.c 1.20.2.1, src/gscspace.c 1.9.2.1, src/gsdcolor.h 1.10.2.1, src/gsdfilt.c 1.7.2.1, src/gsdfilt.h 1.8.2.1, src/gsdll.c 1.9.2.1, src/gsdll32.def 1.3.2.1, src/gsdps1.c 1.7.2.1, src/gsexit.h 1.8.2.1, src/gsfcmap.c 1.21.2.1, src/gsfcmap1.c 1.5.2.1, src/gsfont.c 1.20.2.1, src/gsfont.h 1.8.2.1, src/gsfunc.c 1.7.2.1, src/gsfunc.h 1.8.2.1, src/gsfunc0.c 1.10.2.1, src/gsfunc3.c 1.13.2.1, src/gsfunc4.c 1.13.2.1, src/gsht.c 1.16.2.1, src/gshtscr.c 1.13.2.1, src/gsicc.c 1.10.2.1, src/gsiomacres.c 1.1.2.1, src/gsistate.c 1.7.2.1, src/gslib.c 1.11.2.1, src/gspaint.c 1.6.2.1, src/gspath.c 1.7.2.1, src/gspcolor.c 1.9.2.1, src/gsptype1.c 1.15.2.1, src/gsptype2.c 1.12.2.1, src/gsptype2.h 1.7.2.1, src/gsshade.c 1.8.2.1, src/gsshade.h 1.6.2.1, src/gsstate.c 1.19.2.1, src/gsstate.h 1.8.2.1, src/gsstruct.h 1.15.2.1, src/gstext.c 1.11.2.1, src/gstext.h 1.8.2.1, src/gstrans.c 1.16.2.1, src/gstype1.c 1.22.2.1, src/gstype1.h 1.6.2.1, src/gstype2.c 1.25.2.1, src/gstype42.c 1.30.2.1, src/gswin.icx 1.1.4.1, src/gswts.c 1.4.2.1, src/gx.h 1.7.2.1, src/gxacpath.c 1.8.2.1, src/gxblend.c 1.4.2.1, src/gxccache.c 1.15.2.1, src/gxccman.c 1.7.2.1, src/gxchar.c 1.27.2.1, src/gxchar.h 1.13.2.1, src/gxcldev.h 1.12.2.1, src/gxclip.c 1.9.2.1, src/gxclip2.c 1.6.2.1, src/gxclipm.c 1.7.2.1, src/gxclist.c 1.9.2.1, src/gxclpath.c 1.17.2.1, src/gxclrast.c 1.26.2.1, src/gxclrect.c 1.5.2.1, src/gxcmap.c 1.14.2.1, src/gxcolor2.h 1.7.2.1, src/gxcpath.c 1.6.2.1, src/gxcspace.h 1.9.2.1, src/gxdcolor.c 1.10.2.1, src/gxdda.h 1.4.2.1, src/gxdevcli.h 1.15.2.1, src/gxdevice.h 1.11.2.1, src/gxdevndi.c 1.2.2.1, src/gxdtfill.h 1.4.2.1, src/gxfcache.h 1.10.2.1, src/gxfcmap.h 1.14.2.1, src/gxfcopy.c 1.25.2.1, src/gxfcopy.h 1.8.2.1, src/gxfdrop.c 1.8.2.1, src/gxfdrop.h 1.4.2.1, src/gxfill.c 1.34.2.1, src/gxfill.h 1.8.2.1, src/gxfont.h 1.19.2.1, src/gxfont1.h 1.11.2.1, src/gxfont42.h 1.14.2.1, src/gxfunc.h 1.7.2.1, src/gxhintn.c 1.21.2.1, src/gxhintn.h 1.12.2.1, src/gxhldevc.c 1.3.4.1, src/gxhldevc.h 1.4.4.1, src/gxi12bit.c 1.5.2.1, src/gxicolor.c 1.8.2.1, src/gxifast.c 1.8.2.1, src/gximage3.c 1.11.2.1, src/gximono.c 1.10.2.1, src/gxipixel.c 1.8.2.1, src/gxiscale.c 1.7.2.1, src/gxistate.h 1.15.2.1, src/gxpath.c 1.8.2.1, src/gxpath.h 1.7.2.1, src/gxpcmap.c 1.7.2.1, src/gxpcolor.h 1.7.2.1, src/gxpcopy.c 1.8.2.1, src/gxpflat.c 1.5.2.1, src/gxshade.c 1.16.2.1, src/gxstate.h 1.7.2.1, src/gxstroke.c 1.7.2.1, src/gxtext.h 1.10.2.1, src/gxttfb.c 1.19.2.1, src/gxttfb.h 1.9.2.1, src/gxtype1.c 1.23.2.1, src/gxtype1.h 1.12.2.1, src/gzacpath.h 1.5.2.1, src/gzcpath.h 1.4.2.1, src/gzpath.h 1.8.2.1, src/gzspotan.c 1.4.2.1, src/gzspotan.h 1.2.2.1, src/gzstate.h 1.8.2.1, src/ialloc.c 1.5.2.1, src/iapi.c 1.8.2.1, src/iapi.h 1.8.2.1, src/ibnum.c 1.6.2.1, src/iccfont.c 1.7.2.1, src/ichar1.h 1.9.2.1, src/icid.h 1.6.2.1, src/icontext.c 1.14.2.1, src/icstate.h 1.11.2.1, src/idict.c 1.7.2.1, src/idisp.c 1.5.2.1, src/idparam.c 1.7.2.1, src/ierrors.h 1.2.2.1, src/ifont2.h 1.5.2.1, src/igc.c 1.9.2.1, src/igc.h 1.5.2.1, src/igstate.h 1.7.2.1, src/iinit.c 1.8.2.1, src/ilocate.c 1.8.2.1, src/imain.c 1.31.2.1, src/imain.h 1.7.2.1, src/imainarg.c 1.29.2.1, src/iname.c 1.6.2.1, src/inobtokn.c 1.4.2.1, src/int.mak 1.108.2.1, src/interp.c 1.14.2.1, src/interp.h 1.5.2.1, src/iparam.c 1.8.2.1, src/iplugin.c 1.3.2.1, src/ireclaim.c 1.6.2.1, src/isave.c 1.7.2.1, src/isave.h 1.5.2.1, src/iscan.c 1.13.2.1, src/iscanbin.c 1.12.2.1, src/iscannum.c 1.6.2.1, src/istack.c 1.5.2.1, src/iutil.c 1.8.2.1, src/iutil2.c 1.5.2.1, src/jbig2.mak 1.3.2.1, src/lib.mak 1.126.2.1, src/libpng.mak 1.13.2.1, src/macgenmcpxml.sh 1.8.2.1, src/macos-fw.mak 1.6.2.1, src/macos-mcp.mak 1.16.2.1, src/macos_carbon_d_pre.h 1.1.2.1, src/macos_carbon_pre.h 1.2.4.1, src/macos_classic_d_pre.h 1.1.2.1, src/macosx.mak 1.19.2.1, src/msvc32.mak 1.44.2.1, src/msvclib.mak 1.23.2.1, src/msvctail.mak 1.9.2.1, src/opcheck.h 1.5.2.1, src/openvms.mak 1.30.2.1, src/openvms.mmk 1.24.2.1, src/oper.h 1.5.2.1, src/os2.mak 1.32.2.1, src/sa85d.c 1.8.2.1, src/sdcparam.c 1.5.2.1, src/std.h 1.8.2.1, src/stdio_.h 1.8.2.1, src/stdpre.h 1.15.2.1, src/stream.c 1.21.2.1, src/szlibd.c 1.5.2.1, src/time_.h 1.6.2.1, src/ttcalc.c 1.1.4.1, src/ttcalc.h 1.1.4.1, src/ttcommon.h 1.1.4.1, src/ttconf.h 1.2.2.1, src/ttconfig.h 1.1.4.1, src/ttfinp.c 1.1.4.1, src/ttfinp.h 1.1.4.1, src/ttfmain.c 1.19.2.1, src/ttfmemd.c 1.6.2.1, src/ttfmemd.h 1.3.4.1, src/ttfoutl.h 1.12.2.1, src/ttfsfnt.h 1.6.2.1, src/ttinterp.c 1.11.2.1, src/ttinterp.h 1.1.4.1, src/ttload.c 1.4.4.1, src/ttload.h 1.1.4.1, src/ttmisc.h 1.2.2.1, src/ttobjs.c 1.6.4.1, src/ttobjs.h 1.5.2.1, src/tttables.h 1.2.2.1, src/tttype.h 1.2.2.1, src/tttypes.h 1.1.4.1, src/ugcclib.mak 1.24.2.1, src/unistd_.h 1.8.2.1, src/unix-aux.mak 1.9.2.1, src/unix-dll.mak 1.9.2.1, src/unixansi.mak 1.30.2.1, src/unixinst.mak 1.30.2.1, src/vdtrace.c 1.7.2.1, src/vdtrace.h 1.7.2.1, src/version.mak 1.60.2.1, src/vms_x_fix.h 1.6.2.1, src/watclib.mak 1.21.2.1, src/watcw32.mak 1.25.2.1, src/windows_.h 1.4.2.1, src/winint.mak 1.18.2.1, src/winplat.mak 1.4.2.1, src/wrfont.c 1.2.2.1, src/write_t2.c 1.4.2.1, src/zbfont.c 1.18.2.1, src/zchar.c 1.10.2.1, src/zchar1.c 1.28.2.1, src/zchar42.c 1.10.2.1, src/zchar42.h 1.1.4.1, src/zcid.c 1.7.2.1, src/zcidtest.c 1.2.2.1, src/zcolor.c 1.14.2.1, src/zdscpars.c 1.15.2.1, src/zfapi.c 1.48.2.1, src/zfcid.c 1.13.2.1, src/zfcid0.c 1.19.2.1, src/zfcid1.c 1.16.2.1, src/zfile.c 1.32.2.1, src/zfile1.c 1.9.2.1, src/zfjbig2.c 1.2.2.1, src/zfont.c 1.8.2.1, src/zfont42.c 1.14.2.1, src/zfontenum.c 1.3.4.1, src/zfsample.c 1.8.2.1, src/zgstate.c 1.7.2.1, src/zht2.c 1.10.2.1, src/zimage.c 1.10.2.1, src/ziodev.c 1.12.2.1, src/zpcolor.c 1.7.2.1, src/ztoken.c 1.10.2.1, src/ztrans.c 1.19.2.1, src/zusparam.c 1.9.2.1, toolbin/encs2c.ps 1.3.2.1, toolbin/genfontmap.ps 1.2.4.1, toolbin/split_changelog.py 1.1.2.1, toolbin/tests/check_all.py 1.3.2.1, toolbin/tests/check_comments.py 1.2.4.1, toolbin/tests/check_dirs.py 1.6.2.1, toolbin/tests/check_docrefs.py 1.7.2.1, toolbin/tests/check_source.py 1.5.2.1, toolbin/tests/dump_testdb 1.4.2.1, toolbin/tests/fuzzy.c 1.9.2.1, toolbin/tests/get_baselines 1.2.4.1, toolbin/tests/gscheck_all.py 1.3.2.1, toolbin/tests/gscheck_fuzzypdf.py 1.5.2.1, toolbin/tests/gscheck_pdfwrite.py 1.13.2.1, toolbin/tests/gscheck_raster.py 1.3.2.1, toolbin/tests/gstestgs.py 1.19.2.1, toolbin/tests/make_testdb 1.10.2.1, toolbin/tests/make_two_pdfversions 1.6.2.1, toolbin/tests/make_two_versions 1.10.2.1, toolbin/tests/revert_baseline 1.10.2.1, toolbin/tests/revert_pdfbaseline 1.8.2.1, toolbin/tests/run_nightly 1.17.2.1, toolbin/tests/run_regression 1.11.2.1, toolbin/tests/testdiff 1.2.2.1, toolbin/tests/testing.cfg.example 1.2.2.1, toolbin/tests/update_baseline 1.11.2.1, toolbin/tests/update_pdfbaseline 1.7.2.1]