mirror of
https://git.code.sf.net/p/libpng/code.git
synced 2025-07-10 18:04:09 +02:00
[libpng16] Revised pngvalid.c to support libpng 1.5, which does not support the
PNG_MAXIMUM_INFLATE_WINDOW option, so #define it out when appropriate in pngvalid.c
This commit is contained in:
parent
a8472470a4
commit
1fc0171278
3
ANNOUNCE
3
ANNOUNCE
@ -51,6 +51,9 @@ Version 1.6.9beta02 [December 29, 2013]
|
|||||||
Merged pngrio.c, pngtrans.c, pngwio.c, and pngerror.c with libpng-1.7.0
|
Merged pngrio.c, pngtrans.c, pngwio.c, and pngerror.c with libpng-1.7.0
|
||||||
Merged libpng-1.7.0 changes to make no-interlace configurations work
|
Merged libpng-1.7.0 changes to make no-interlace configurations work
|
||||||
with test programs.
|
with test programs.
|
||||||
|
Revised pngvalid.c to support libpng 1.5, which does not support the
|
||||||
|
PNG_MAXIMUM_INFLATE_WINDOW option, so #define it out when appropriate in
|
||||||
|
pngvalid.c
|
||||||
|
|
||||||
Send comments/corrections/commendations to png-mng-implement at lists.sf.net
|
Send comments/corrections/commendations to png-mng-implement at lists.sf.net
|
||||||
(subscription required; visit
|
(subscription required; visit
|
||||||
|
|||||||
3
CHANGES
3
CHANGES
@ -4776,6 +4776,9 @@ Version 1.6.9beta02 [December 29, 2013]
|
|||||||
Merged pngrio.c, pngtrans.c, pngwio.c, and pngerror.c with libpng-1.7.0
|
Merged pngrio.c, pngtrans.c, pngwio.c, and pngerror.c with libpng-1.7.0
|
||||||
Merged libpng-1.7.0 changes to make no-interlace configurations work
|
Merged libpng-1.7.0 changes to make no-interlace configurations work
|
||||||
with test programs.
|
with test programs.
|
||||||
|
Revised pngvalid.c to support libpng 1.5, which does not support the
|
||||||
|
PNG_MAXIMUM_INFLATE_WINDOW option, so #define it out when appropriate in
|
||||||
|
pngvalid.c
|
||||||
|
|
||||||
Send comments/corrections/commendations to png-mng-implement at lists.sf.net
|
Send comments/corrections/commendations to png-mng-implement at lists.sf.net
|
||||||
(subscription required; visit
|
(subscription required; visit
|
||||||
|
|||||||
@ -10361,10 +10361,12 @@ int main(int argc, char **argv)
|
|||||||
|
|
||||||
else
|
else
|
||||||
#endif
|
#endif
|
||||||
|
#ifdef PNG_MAXIMUM_INFLATE_WINDOW
|
||||||
if (strncmp(arg, "max-inflate-window:", 19) == 0)
|
if (strncmp(arg, "max-inflate-window:", 19) == 0)
|
||||||
option = PNG_MAXIMUM_INFLATE_WINDOW, arg += 19;
|
option = PNG_MAXIMUM_INFLATE_WINDOW, arg += 19;
|
||||||
|
|
||||||
else
|
else
|
||||||
|
#endif
|
||||||
{
|
{
|
||||||
fprintf(stderr, "pngvalid: %s: %s: unknown option\n", *argv, arg);
|
fprintf(stderr, "pngvalid: %s: %s: unknown option\n", *argv, arg);
|
||||||
exit(99);
|
exit(99);
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user