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
117
118
119
120
121
122
123
124
125
126
127
128
129
|
2015-03-04 Peter Breitenlohner <peb@mppmu.mpg.de>
* patch-07-w64-ptr: Better handling of WIN64 ptr->long.
2015-03-03 Peter Breitenlohner <peb@mppmu.mpg.de>
* Imported release 1.15 from savannah.nongnu.org.
* patch-01-gd-copyright: Removed.
* patch-05-sys_wait (removed): Included in 1.15.
* patch-02-const, patch-03-programname, patch-06-WIN32,
patch-07-w64-ptr: Adapted.
2014-11-05 Peter Breitenlohner <peb@mppmu.mpg.de>
* patch-07-w64-ptr: Fixed a typo.
2014-07-15 Peter Breitenlohner <peb@mppmu.mpg.de>
* patch-07-w64-ptr: Avoid WIN64 warning due to different size.
2013-07-09 Peter Breitenlohner <peb@mppmu.mpg.de>
* COPYING.gd (new): From libgd-2.1.0/COPYING, with '@' => '@@'.
* patch-01-gd-copyright: Refer to COPYING.gd instead of
including it into dvipng.texi.
* patch-04-dvigif (removed): Merged into patch-03-programname.
* patch-03-programname: Use kpse_program_basename().
2012-08-25 Peter Breitenlohner <peb@mppmu.mpg.de>
* patch-06-WIN32: Avoid warning when redefining pipe.
2012-08-01 Peter Breitenlohner <peb@mppmu.mpg.de>
* patch-06-WIN32: Do not redefine snprintf, handled by kpathsea.
Also, kpathsea has included <fcntl.h>, <io.h>, and <process.h>.
2011-08-03 Peter Breitenlohner <peb@mppmu.mpg.de>
* patch-06-WIN32 (new): Call texlive_gs_init() for MINGW32,
as for native WIN32, from Akira.
2011-02-07 Peter Breitenlohner <peb@mppmu.mpg.de>
* patch-05-sys_wait (new): #include <sys/wait.h>, not <wait.h>.
Reported by Nikola Lecic <nikola.lecic@anthesphoria.net>.
2010-12-30 Peter Breitenlohner <peb@mppmu.mpg.de>
* patch-03-programname (new): Use basename() as defined in
<libgen.h> or xbasename() from kpathsea to extract programname
from argv[0]. Avoid uninitialized use of programname.
* patch-04-dvigif (new): Check for argv[0] with .exe via
strcasecmp(), if possible.
2010-12-15 Peter Breitenlohner <peb@mppmu.mpg.de>
* Imported release 1.14 from savannah.nongnu.org.
* patch-2?-* (removed): Included in 1.14.
* patch-01-gd-copyright (new): Include full gd copyright notice
into dvipng.texi; seems the safe thing to do.
* patch-02-const (new): Avoid compiler warnings.
2010-10-02 Peter Breitenlohner <peb@mppmu.mpg.de>
* patch-22-win32-bugfix (new): WIN32 bug fix from Akira Kakuto.
2010-03-18 Peter Breitenlohner <peb@mppmu.mpg.de>
* Imported release 1.13 from savannah.nongnu.org.
* patch-[01]?-* (removed): Included in 1.13.
* patch-20-rpl_malloc (new): Avoid implicit decl of malloc().
* patch-21-win32 (new): Avoid unnecessary warning in WIN32 code.
2010-03-09 Peter Breitenlohner <peb@mppmu.mpg.de>
* patch-12-set_program_name: Replace kpse_set_progname() by
kpse_set_program_name().
2010-02-24 Peter Breitenlohner <peb@mppmu.mpg.de>
* patch-10-mmap-for-WIN32 (new): Former MIKTEX code for mmap
from Fabrice Popineau (?) now used for all WIN32 variants.
* patch-11-win32-fork-and-pipe (new): WIN32 specific replacement
for fork and pipe, using code from Akira Kakuto.
2010-02-21 Peter Breitenlohner <peb@mppmu.mpg.de>
* patch-07-always-undef (new): Always undefine min/max before
redefining them (for MinGW32).
* patch-08-HAVE_MMAP (new): #include <sys/mman.h> only
#if defined(HAVE_MMAP) (for MinGW32).
* patch-09-sleep (new): Use Sleep and #include <stdlib.h>
(for WIN32/MinGW32).
2010-01-29 Karl Berry <karl@tug.org>
* patch-06-mathptmx (new): Do not use \usepackage{mathptmx}
in test_dvipng.tex.
2009-06-12 Peter Breitenlohner <peb@mppmu.mpg.de>
* patch-05-warnings (new): Avoid more compiler warnings.
2009-06-09 Peter Breitenlohner <peb@mppmu.mpg.de>
* patch-04-static (new): Avoid warnings when compiling with
'gcc --Wmissing-prototypes'.
2009-02-22 Peter Breitenlohner <peb@mppmu.mpg.de>
* patch-03-have-ft2 (new): Bug fix - skip FT2 code when
compiling without FT2 library.
2009-03-25 Peter Breitenlohner <peb@mppmu.mpg.de>
* patch-02-use-ifdef (new): Use #ifdef instead of #if to avoid
preprocessor warnings.
2009-03-24 Peter Breitenlohner <peb@mppmu.mpg.de>
* patch-01-portability (new): Portability fix - put variable
declarations at the beginning of the block.
|