summaryrefslogtreecommitdiff
path: root/png.c
diff options
context:
space:
mode:
authorGlenn Randers-Pehrson <glennrp at users.sourceforge.net>2016-12-27 07:51:41 -0600
committerGlenn Randers-Pehrson <glennrp at users.sourceforge.net>2016-12-27 08:24:34 -0600
commit7ed5c08fad55143f1f4d73f1ae6b55613836e70b (patch)
treefe0139c9217aa77c3b1884bd5dee39e598aae540 /png.c
parent4caddaafbb225d9615a33b7c734a6df194851851 (diff)
downloadlibpng-7ed5c08fad55143f1f4d73f1ae6b55613836e70b.tar.gz
[libpng17] Imported from libpng-1.7.0beta86.tarv1.7.0beta85
Diffstat (limited to 'png.c')
-rw-r--r--png.c15
1 files changed, 10 insertions, 5 deletions
diff --git a/png.c b/png.c
index 37ec21484..5d3420105 100644
--- a/png.c
+++ b/png.c
@@ -15,7 +15,7 @@
#define PNG_SRC_FILE PNG_SRC_FILE_png
/* Generate a compiler error if there is an old png.h in the search path. */
-typedef png_libpng_version_1_7_0beta85 Your_png_h_is_not_version_1_7_0beta85;
+typedef png_libpng_version_1_7_0beta86 Your_png_h_is_not_version_1_7_0beta86;
/* Tells libpng that we have already handled the first "num_bytes" bytes
* of the PNG file signature. If the PNG data is embedded into another
@@ -704,14 +704,14 @@ png_get_copyright(png_const_structrp png_ptr)
#else
# ifdef __STDC__
return PNG_STRING_NEWLINE \
- "libpng version 1.7.0beta85 - December 27, 2016" PNG_STRING_NEWLINE \
+ "libpng version 1.7.0beta86 - December 27, 2016" PNG_STRING_NEWLINE \
"Copyright (c) 1998-2002,2004,2006-2016 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 "libpng version 1.7.0beta85 - December 27, 2016\
+ return "libpng version 1.7.0beta86 - December 27, 2016\
Copyright (c) 1998-2002,2004,2006-2016 Glenn Randers-Pehrson\
Copyright (c) 1996-1997 Andreas Dilger\
Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc.";
@@ -996,8 +996,13 @@ png_colorspace_set_gamma(png_const_structrp png_ptr,
* In 1.6.0 this test replaces the ones in pngrutil.c, in the gAMA chunk
* handling code, which only required the value to be >0.
*/
-# define ERRMSG (defined PNG_TRANSFORM_MECH_SUPPORTED) &&\
- (defined PNG_ERROR_TEXT_SUPPORTED)
+# if (defined PNG_TRANSFORM_MECH_SUPPORTED) &&\
+ (defined PNG_ERROR_TEXT_SUPPORTED)
+# define ERRMSG 1
+# else
+# define ERRMSG 0
+# endif
+
# if ERRMSG
png_const_charp errmsg;
# endif