summaryrefslogtreecommitdiff
path: root/Build/source/texk/dvisvgm/dvisvgm-1.0.2-PATCHES/ChangeLog
blob: ceca1f0d96e7cafe2794fea8a715143f4f3e0e96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
2010-09-23  Peter Breitenlohner  <peb@mppmu.mpg.de>

	Added patch-04-freetype to allow to build with freetype-2.4.0

	Problem detected and solution inspired by Paul Vojta
	<vojta@math.berkeley.edu>, mail from Tue, 17 Aug 2010 12:30:13.

2010-07-05  Peter Breitenlohner  <peb@mppmu.mpg.de>

	Portability patches from Martin Gieseking.

	Added patch-01-path, mail from Thu, 24 Jun 2010 09:16:04.
	Added patch-02-namespace, mail from Thu, 24 Jun 2010 15:49:05.
	Added patch-03-esc, mail from Thu, 24 Jun 2010 22:41:57.

2010-06-23  Peter Breitenlohner  <peb@mppmu.mpg.de>

	Imported release 1.0.2.

	Removed patch-01-isopen, patch-02-newline-at-end-of-file,
	patch-07-libdvisvgm-uint32, patch-08-static-const-members,
	patch-30-WIN32-warning,
	now all included in the original source tree.

2010-06-12  Peter Breitenlohner  <peb@mppmu.mpg.de>

	Imported release 1.0.1.

	Removed patch-01-potracelib-warning, patch-02-libdvisvgm-warnings,
	patch-03-libdvisvgm-uninitialized, patch-04-libdvisvgm-virtual,
	patch-05-libdvisvgm-dlfcn, patch-06-libdvisvgm-HAVE_LIBGS,
	patch-09-unistd, patch-10-TL-help, patch-20-gettimeofday-or-ftime,
	now all included in the original source tree.

	Added patch-01-isopen.
	* src/GFGlyphTracer.h: Avoid recent C++ STL extensions.
	From Martin Gieseking <martin.gieseking@uos.de>.

	Added patch-02-newline-at-end-of-file.
	* src/FontEncoding.cpp: Add newline at end of file.

2010-06-07  Peter Breitenlohner  <peb@mppmu.mpg.de>

	Added patch-08-static-const-members, from vvv.
	* src/FontCache.cpp (FontCache::VERSION),
	src/gzstream.cpp (gzstreambuf::bufferSize): Initialized static
	const class members need also to be declared (at least for AIX)

2010-06-05  Karl Berry  <karl@tug.org>

	* patch-07-libdvisvgm-uint32: declare glyphIndex as FT_UInt in the
	first place, instead of casting.  From vvv, confirmed for his AIX.

2010-05-31  Karl Berry  <karl@tug.org>

	Added patch-07-libdvisvgm-uint32.
	* src/FontEngine.cpp: must cast &glyphindex to (FT_Uint *)
	for AIX compiler (tlbuild 28 May 2010 15:23:25).

	Added patch-09-unistd.
	* src/FileSystem.cpp: unconditionally include <unistd.h>.
	(Needed on AIX, tlbuild 28 May 2010 15:08:06.)

2010-02-23  Peter Breitenlohner  <peb@mppmu.mpg.de>

	Added patch-30-WIN32-warning.
	* src/MetafontWrapper.cpp (execute) [WIN32]: Initialize the
	DWORD exitcode with (DWORD)-1 to avoid warning.

2009-12-14  Peter Breitenlohner  <peb@mppmu.mpg.de>

	Added patch-20-gettimeofday-or-ftime.
	* configure.ac, src/dvisvgm.cpp: Check for gettimeofday()
	and <sys/time.h> or ftime() and <sys/timeb.h>.

2009-11-18  Peter Breitenlohner  <peb@mppmu.mpg.de>

	Added patch-05-libdvisvgm-dlfcn.
	* src/Ghostscript.h: #include <dlfcn.h> only when used.
	* src/DVIToSVG.cpp, src/Ghostscript.{cpp,h}:
	Use defined(DISABLE_GS) instead of DISABLE_GS.

	Added patch-06-libdvisvgm-HAVE_LIBGS.
	* src/Ghostscript.{cpp,h}: Use defined(HAVE_LIBGS).

2009-11-14  Peter Breitenlohner  <peb@mppmu.mpg.de>

	Added patch-03-libdvisvgm-uninitialized.
	* src/InputReader.cpp (skipUntil): Avoid uninitialized variable.

	Added patch-04-libdvisvgm-virtual.
	* src/CmdLineParserBase.h, src/CommandLine.h: Added virtual
	destructors because there are virtual functions.

	Added patch-10-TL-help.
	* src/dvisvgm.cpp (show_help): With our proxy configure.ac
	PACKAGE_BUGREPORT is "tex-k@tug.org" and can't be used as email
	for the copyright.

2009-11-13  Peter Breitenlohner  <peb@mppmu.mpg.de>

	Added patch-01-potracelib-warning.
	* potracelib/potracelib.[ch]: Change return type of
	potrace_version() from 'char *' to 'const char *'.

	Added patch-02-libdvisvgm-warnings.
	* src/Color.cpp (float_to_byte): Cast from double to UInt8.
	* src/Color.cpp (HSB2RGB),
	src/ColorSpecialHandler.cpp (hsb_to_rgb),
	src/PsSpecialHandler.cpp (setdash),
	src/TpicSpecialHandler.cpp (drawArc): Casts from double to int.
	* src/PsSpecialHandler.h (setlinecap, setlinejoin): Casts from
	double to unsigned int.
	* src/FontManager.cpp (vfFirstFontNum): Cast from unsigned int
	to int.