diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2017-11-25 18:26:37 +0300 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2017-11-25 18:26:37 +0300 |
commit | 7c7b6e4e4ccb67ea885fce90af3b0167894a30db (patch) | |
tree | 1d8620742b63be5afe1285b71bb5942abe71aeab /plugins/AdvaImg/src/LibPNG/pnginfo.h | |
parent | 867c7e500c975c579796a3047962738774270ee0 (diff) |
update libpng to 1.6.34
Diffstat (limited to 'plugins/AdvaImg/src/LibPNG/pnginfo.h')
-rw-r--r-- | plugins/AdvaImg/src/LibPNG/pnginfo.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/plugins/AdvaImg/src/LibPNG/pnginfo.h b/plugins/AdvaImg/src/LibPNG/pnginfo.h index 61f4272267..366a16df64 100644 --- a/plugins/AdvaImg/src/LibPNG/pnginfo.h +++ b/plugins/AdvaImg/src/LibPNG/pnginfo.h @@ -186,8 +186,11 @@ defined(PNG_READ_BACKGROUND_SUPPORTED) #endif
#ifdef PNG_eXIf_SUPPORTED
- int num_exif;
+ int num_exif; /* Added at libpng-1.6.31 */
png_bytep exif;
+# ifdef PNG_READ_eXIf_SUPPORTED
+ png_bytep eXIf_buf; /* Added at libpng-1.6.32 */
+# endif
#endif
#ifdef PNG_hIST_SUPPORTED
|