mirror of
https://git.code.sf.net/p/libpng/code.git
synced 2025-07-10 18:04:09 +02:00
[libpng16] Imported from libpng-1.6.0beta03.tar
This commit is contained in:
parent
bc79d70965
commit
28d9339777
4
ANNOUNCE
4
ANNOUNCE
@ -1,5 +1,5 @@
|
|||||||
|
|
||||||
Libpng 1.6.0beta03 - December 21, 2011
|
Libpng 1.6.0beta03 - December 22, 2011
|
||||||
|
|
||||||
This is not intended to be a public release. It will be replaced
|
This is not intended to be a public release. It will be replaced
|
||||||
within a few weeks by a public version or by another test version.
|
within a few weeks by a public version or by another test version.
|
||||||
@ -59,7 +59,7 @@ Version 1.6.0beta02 [December 21, 2011]
|
|||||||
The include path of 'config.h' was erroneously made relative in pngvalid.c
|
The include path of 'config.h' was erroneously made relative in pngvalid.c
|
||||||
in libpng 1.5.7.
|
in libpng 1.5.7.
|
||||||
|
|
||||||
Version 1.6.0beta03 [December 21, 2011]
|
Version 1.6.0beta03 [December 22, 2011]
|
||||||
Start-up code size improvements, error handler flexibility. These changes
|
Start-up code size improvements, error handler flexibility. These changes
|
||||||
alter how the tricky allocation of the initial png_struct and png_info
|
alter how the tricky allocation of the initial png_struct and png_info
|
||||||
structures are handled. png_info is now handled in pretty much the same
|
structures are handled. png_info is now handled in pretty much the same
|
||||||
|
|||||||
2
CHANGES
2
CHANGES
@ -3810,7 +3810,7 @@ Version 1.6.0beta02 [December 21, 2011]
|
|||||||
The include path of 'config.h' was erroneously made relative in pngvalid.c
|
The include path of 'config.h' was erroneously made relative in pngvalid.c
|
||||||
in libpng 1.5.7.
|
in libpng 1.5.7.
|
||||||
|
|
||||||
Version 1.6.0beta03 [December 21, 2011]
|
Version 1.6.0beta03 [December 22, 2011]
|
||||||
Start-up code size improvements, error handler flexibility. These changes
|
Start-up code size improvements, error handler flexibility. These changes
|
||||||
alter how the tricky allocation of the initial png_struct and png_info
|
alter how the tricky allocation of the initial png_struct and png_info
|
||||||
structures are handled. png_info is now handled in pretty much the same
|
structures are handled. png_info is now handled in pretty much the same
|
||||||
|
|||||||
4
LICENSE
4
LICENSE
@ -10,7 +10,7 @@ this sentence.
|
|||||||
|
|
||||||
This code is released under the libpng license.
|
This code is released under the libpng license.
|
||||||
|
|
||||||
libpng versions 1.2.6, August 15, 2004, through 1.6.0beta03, December 21, 2011, are
|
libpng versions 1.2.6, August 15, 2004, through 1.6.0beta03, December 22, 2011, are
|
||||||
Copyright (c) 2004, 2006-2011 Glenn Randers-Pehrson, and are
|
Copyright (c) 2004, 2006-2011 Glenn Randers-Pehrson, and are
|
||||||
distributed according to the same disclaimer and license as libpng-1.2.5
|
distributed according to the same disclaimer and license as libpng-1.2.5
|
||||||
with the following individual added to the list of Contributing Authors
|
with the following individual added to the list of Contributing Authors
|
||||||
@ -108,4 +108,4 @@ certification mark of the Open Source Initiative.
|
|||||||
|
|
||||||
Glenn Randers-Pehrson
|
Glenn Randers-Pehrson
|
||||||
glennrp at users.sourceforge.net
|
glennrp at users.sourceforge.net
|
||||||
December 21, 2011
|
December 22, 2011
|
||||||
|
|||||||
2
README
2
README
@ -1,4 +1,4 @@
|
|||||||
README for libpng version 1.6.0beta03 - December 21, 2011 (shared library 16.0)
|
README for libpng version 1.6.0beta03 - December 22, 2011 (shared library 16.0)
|
||||||
See the note about version numbers near the top of png.h
|
See the note about version numbers near the top of png.h
|
||||||
|
|
||||||
See INSTALL for instructions on how to install libpng.
|
See INSTALL for instructions on how to install libpng.
|
||||||
|
|||||||
@ -3887,6 +3887,9 @@ perform_formatting_test(png_store *volatile ps)
|
|||||||
{
|
{
|
||||||
png_const_charp correct = "29 Aug 2079 13:53:60 +0000";
|
png_const_charp correct = "29 Aug 2079 13:53:60 +0000";
|
||||||
png_const_charp result;
|
png_const_charp result;
|
||||||
|
# if PNG_LIBPNG_VER >= 10600
|
||||||
|
char timestring[29];
|
||||||
|
# endif
|
||||||
png_structp pp;
|
png_structp pp;
|
||||||
png_time pt;
|
png_time pt;
|
||||||
|
|
||||||
@ -3904,7 +3907,15 @@ perform_formatting_test(png_store *volatile ps)
|
|||||||
pt.minute = 53;
|
pt.minute = 53;
|
||||||
pt.second = 60; /* a leap second */
|
pt.second = 60; /* a leap second */
|
||||||
|
|
||||||
result = png_convert_to_rfc1123(pp, &pt);
|
# if PNG_LIBPNG_VER < 10600
|
||||||
|
result = png_convert_to_rfc1123(pp, &pt);
|
||||||
|
# else
|
||||||
|
if (png_convert_to_rfc1123_buffer(timestring, &pt))
|
||||||
|
result = timestring;
|
||||||
|
|
||||||
|
else
|
||||||
|
result = NULL;
|
||||||
|
# endif
|
||||||
|
|
||||||
if (result == NULL)
|
if (result == NULL)
|
||||||
png_error(pp, "png_convert_to_rfc1123 failed");
|
png_error(pp, "png_convert_to_rfc1123 failed");
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
libpng-manual.txt - A description on how to use and modify libpng
|
libpng-manual.txt - A description on how to use and modify libpng
|
||||||
|
|
||||||
libpng version 1.6.0beta03 - December 21, 2011
|
libpng version 1.6.0beta03 - December 22, 2011
|
||||||
Updated and distributed by Glenn Randers-Pehrson
|
Updated and distributed by Glenn Randers-Pehrson
|
||||||
<glennrp at users.sourceforge.net>
|
<glennrp at users.sourceforge.net>
|
||||||
Copyright (c) 1998-2011 Glenn Randers-Pehrson
|
Copyright (c) 1998-2011 Glenn Randers-Pehrson
|
||||||
@ -11,7 +11,7 @@ libpng-manual.txt - A description on how to use and modify libpng
|
|||||||
|
|
||||||
Based on:
|
Based on:
|
||||||
|
|
||||||
libpng versions 0.97, January 1998, through 1.6.0beta03 - December 21, 2011
|
libpng versions 0.97, January 1998, through 1.6.0beta03 - December 22, 2011
|
||||||
Updated and distributed by Glenn Randers-Pehrson
|
Updated and distributed by Glenn Randers-Pehrson
|
||||||
Copyright (c) 1998-2011 Glenn Randers-Pehrson
|
Copyright (c) 1998-2011 Glenn Randers-Pehrson
|
||||||
|
|
||||||
@ -4573,7 +4573,7 @@ Other rules can be inferred by inspecting the libpng source.
|
|||||||
|
|
||||||
XIV. Y2K Compliance in libpng
|
XIV. Y2K Compliance in libpng
|
||||||
|
|
||||||
December 21, 2011
|
December 22, 2011
|
||||||
|
|
||||||
Since the PNG Development group is an ad-hoc body, we can't make
|
Since the PNG Development group is an ad-hoc body, we can't make
|
||||||
an official declaration.
|
an official declaration.
|
||||||
|
|||||||
14
libpng.3
14
libpng.3
@ -1,4 +1,4 @@
|
|||||||
.TH LIBPNG 3 "December 21, 2011"
|
.TH LIBPNG 3 "December 22, 2011"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
libpng \- Portable Network Graphics (PNG) Reference Library 1.6.0beta03
|
libpng \- Portable Network Graphics (PNG) Reference Library 1.6.0beta03
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
@ -1007,7 +1007,7 @@ Following is a copy of the libpng-manual.txt file that accompanies libpng.
|
|||||||
.SH LIBPNG.TXT
|
.SH LIBPNG.TXT
|
||||||
libpng-manual.txt - A description on how to use and modify libpng
|
libpng-manual.txt - A description on how to use and modify libpng
|
||||||
|
|
||||||
libpng version 1.6.0beta03 - December 21, 2011
|
libpng version 1.6.0beta03 - December 22, 2011
|
||||||
Updated and distributed by Glenn Randers-Pehrson
|
Updated and distributed by Glenn Randers-Pehrson
|
||||||
<glennrp at users.sourceforge.net>
|
<glennrp at users.sourceforge.net>
|
||||||
Copyright (c) 1998-2011 Glenn Randers-Pehrson
|
Copyright (c) 1998-2011 Glenn Randers-Pehrson
|
||||||
@ -1018,7 +1018,7 @@ libpng-manual.txt - A description on how to use and modify libpng
|
|||||||
|
|
||||||
Based on:
|
Based on:
|
||||||
|
|
||||||
libpng versions 0.97, January 1998, through 1.6.0beta03 - December 21, 2011
|
libpng versions 0.97, January 1998, through 1.6.0beta03 - December 22, 2011
|
||||||
Updated and distributed by Glenn Randers-Pehrson
|
Updated and distributed by Glenn Randers-Pehrson
|
||||||
Copyright (c) 1998-2011 Glenn Randers-Pehrson
|
Copyright (c) 1998-2011 Glenn Randers-Pehrson
|
||||||
|
|
||||||
@ -5581,7 +5581,7 @@ Other rules can be inferred by inspecting the libpng source.
|
|||||||
|
|
||||||
.SH XIV. Y2K Compliance in libpng
|
.SH XIV. Y2K Compliance in libpng
|
||||||
|
|
||||||
December 21, 2011
|
December 22, 2011
|
||||||
|
|
||||||
Since the PNG Development group is an ad-hoc body, we can't make
|
Since the PNG Development group is an ad-hoc body, we can't make
|
||||||
an official declaration.
|
an official declaration.
|
||||||
@ -5850,7 +5850,7 @@ possible without all of you.
|
|||||||
|
|
||||||
Thanks to Frank J. T. Wojcik for helping with the documentation.
|
Thanks to Frank J. T. Wojcik for helping with the documentation.
|
||||||
|
|
||||||
Libpng version 1.6.0beta03 - December 21, 2011:
|
Libpng version 1.6.0beta03 - December 22, 2011:
|
||||||
Initially created in 1995 by Guy Eric Schalnat, then of Group 42, Inc.
|
Initially created in 1995 by Guy Eric Schalnat, then of Group 42, Inc.
|
||||||
Currently maintained by Glenn Randers-Pehrson (glennrp at users.sourceforge.net).
|
Currently maintained by Glenn Randers-Pehrson (glennrp at users.sourceforge.net).
|
||||||
|
|
||||||
@ -5873,7 +5873,7 @@ this sentence.
|
|||||||
|
|
||||||
This code is released under the libpng license.
|
This code is released under the libpng license.
|
||||||
|
|
||||||
libpng versions 1.2.6, August 15, 2004, through 1.6.0beta03, December 21, 2011, are
|
libpng versions 1.2.6, August 15, 2004, through 1.6.0beta03, December 22, 2011, are
|
||||||
Copyright (c) 2004,2006-2007 Glenn Randers-Pehrson, and are
|
Copyright (c) 2004,2006-2007 Glenn Randers-Pehrson, and are
|
||||||
distributed according to the same disclaimer and license as libpng-1.2.5
|
distributed according to the same disclaimer and license as libpng-1.2.5
|
||||||
with the following individual added to the list of Contributing Authors
|
with the following individual added to the list of Contributing Authors
|
||||||
@ -5972,7 +5972,7 @@ certification mark of the Open Source Initiative.
|
|||||||
|
|
||||||
Glenn Randers-Pehrson
|
Glenn Randers-Pehrson
|
||||||
glennrp at users.sourceforge.net
|
glennrp at users.sourceforge.net
|
||||||
December 21, 2011
|
December 22, 2011
|
||||||
|
|
||||||
.\" end of man page
|
.\" end of man page
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
.TH LIBPNGPF 3 "December 21, 2011"
|
.TH LIBPNGPF 3 "December 22, 2011"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
libpng \- Portable Network Graphics (PNG) Reference Library 1.6.0beta03
|
libpng \- Portable Network Graphics (PNG) Reference Library 1.6.0beta03
|
||||||
(private functions)
|
(private functions)
|
||||||
|
|||||||
2
png.5
2
png.5
@ -1,4 +1,4 @@
|
|||||||
.TH PNG 5 "December 21, 2011"
|
.TH PNG 5 "December 22, 2011"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
png \- Portable Network Graphics (PNG) format
|
png \- Portable Network Graphics (PNG) format
|
||||||
.SH DESCRIPTION
|
.SH DESCRIPTION
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
|
|
||||||
VisualStudio instructions
|
VisualStudio instructions
|
||||||
|
|
||||||
libpng version 1.6.0beta03 - December 21, 2011
|
libpng version 1.6.0beta03 - December 22, 2011
|
||||||
|
|
||||||
Copyright (c) 1998-2010 Glenn Randers-Pehrson
|
Copyright (c) 1998-2010 Glenn Randers-Pehrson
|
||||||
|
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
<!--
|
<!--
|
||||||
* zlib.props - location of zlib source
|
* zlib.props - location of zlib source
|
||||||
*
|
*
|
||||||
* libpng version 1.6.0beta03 - December 21, 2011
|
* libpng version 1.6.0beta03 - December 22, 2011
|
||||||
*
|
*
|
||||||
* Copyright (c) 1998-2011 Glenn Randers-Pehrson
|
* Copyright (c) 1998-2011 Glenn Randers-Pehrson
|
||||||
*
|
*
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user