summaryrefslogtreecommitdiff
path: root/png.c
diff options
context:
space:
mode:
authorGlenn Randers-Pehrson <glennrp at users.sourceforge.net>2015-12-13 16:31:04 -0600
committerGlenn Randers-Pehrson <glennrp at users.sourceforge.net>2015-12-13 16:39:57 -0600
commit60904d8ef7d89b2165f0311139f2b21a1b57a3bc (patch)
tree067a8ea00922d2e7f2c7edbf113960afaaf32afc /png.c
parent326b623edbfb51bdffbe06afa322bbd4f00b4ce0 (diff)
downloadlibpng-60904d8ef7d89b2165f0311139f2b21a1b57a3bc.tar.gz
[libpng12] Bump version to 1.2.56beta02
Diffstat (limited to 'png.c')
-rw-r--r--png.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/png.c b/png.c
index c903cffce..75e1464cf 100644
--- a/png.c
+++ b/png.c
@@ -2,7 +2,7 @@
/* png.c - location for general purpose libpng functions
*
* Last changed in libpng 1.2.54 [November 12, 2015]
- * Copyright (c) 1998-2015 Glenn Randers-Pehrson
+ * Copyright (c) 1998-2002,2004,2006-2015 Glenn Randers-Pehrson
* (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger)
* (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.)
*
@@ -17,7 +17,7 @@
#include "png.h"
/* Generate a compiler error if there is an old png.h in the search path. */
-typedef version_1_2_56beta01 Your_png_h_is_not_version_1_2_56beta01;
+typedef version_1_2_56beta02 Your_png_h_is_not_version_1_2_56beta02;
/* Version information for C files. This had better match the version
* string defined in png.h.
@@ -731,14 +731,15 @@ png_get_copyright(png_structp png_ptr)
#else
#ifdef __STDC__
return ((png_charp) PNG_STRING_NEWLINE \
- "libpng version 1.2.56beta01 - December 11, 2015" PNG_STRING_NEWLINE \
- "Copyright (c) 1998-2015 Glenn Randers-Pehrson" PNG_STRING_NEWLINE \
+ "libpng version 1.2.56beta02 - December 13, 2015" PNG_STRING_NEWLINE \
+ "Copyright (c) 1998-2002,2004,2006-2015 Glenn Randers-Pehrson" \
+ PNG_STRING_NEWLINE \
"Copyright (c) 1996-1997 Andreas Dilger" PNG_STRING_NEWLINE \
"Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc." \
PNG_STRING_NEWLINE);
#else
- return ((png_charp) "libpng version 1.2.56beta01 - December 11, 2015\
- Copyright (c) 1998-2015 Glenn Randers-Pehrson\
+ return ((png_charp) "libpng version 1.2.56beta02 - December 13, 2015\
+ Copyright (c) 1998-2002,2004,2006-2015 Glenn Randers-Pehrson\
Copyright (c) 1996-1997 Andreas Dilger\
Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc.");
#endif