[libpng17] Added clang attribute support (Cosmin).

This commit is contained in:
Glenn Randers-Pehrson
2014-01-13 21:13:16 -06:00
parent d38ebc9ded
commit b871b25997
3 changed files with 17 additions and 6 deletions

View File

@@ -1,5 +1,5 @@
Libpng 1.7.0beta28 - January 12, 2014
Libpng 1.7.0beta28 - January 14, 2014
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.
@@ -489,8 +489,9 @@ Version 1.7.0beta26 [January 1, 2014]
Version 1.7.0beta27 [January 10, 2014]
Removed potentially misleading warning from png_check_IHDR().
Version 1.7.0beta28 [January 12, 2014]
Updated scripts/makefile.* to use CPPFLAGS (Cosmin)
Version 1.7.0beta28 [January 14, 2014]
Updated scripts/makefile.* to use CPPFLAGS (Cosmin).
Added clang attribute support (Cosmin).
Send comments/corrections/commendations to png-mng-implement at lists.sf.net
(subscription required; visit

View File

@@ -4778,8 +4778,9 @@ Version 1.7.0beta26 [January 1, 2014]
Version 1.7.0beta27 [January 10, 2014]
Removed potentially misleading warning from png_check_IHDR().
Version 1.7.0beta28 [January 12, 2014]
Updated scripts/makefile.* to use CPPFLAGS (Cosmin)
Version 1.7.0beta28 [January 14, 2014]
Updated scripts/makefile.* to use CPPFLAGS (Cosmin).
Added clang attribute support (Cosmin).
Send comments/corrections/commendations to png-mng-implement at lists.sf.net
(subscription required; visit

View File

@@ -1,7 +1,7 @@
/* pngconf.h - machine configurable file for libpng
*
* libpng version 1.7.0beta28 - January 10, 2014
* libpng version 1.7.0beta28 - January 14, 2014
*
* Copyright (c) 1998-2013 Glenn Randers-Pehrson
* (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger)
@@ -439,6 +439,15 @@
#ifndef PNG_RESTRICT
# define PNG_RESTRICT /* The C99 "restrict" feature */
#endif
#ifndef PNG_FP_EXPORT /* A floating point API. */
# ifdef PNG_FLOATING_POINT_SUPPORTED
# define PNG_FP_EXPORT(ordinal, type, name, args)\
PNG_EXPORT(ordinal, type, name, args);
# else /* No floating point APIs */
# define PNG_FP_EXPORT(ordinal, type, name, args)
# endif
#endif
#ifndef PNG_FP_EXPORT /* A floating point API. */
# ifdef PNG_FLOATING_POINT_SUPPORTED
# define PNG_FP_EXPORT(ordinal, type, name, args)\