[libpng16] Revised pngpriv.h to work around failure to compile arm/filter_neon.S
("typedef" directive is unrecognized by the assembler).
This commit is contained in:
parent
9f7134c3fc
commit
660ce58597
8
ANNOUNCE
8
ANNOUNCE
@ -1,4 +1,4 @@
|
|||||||
Libpng 1.6.31beta01 - June 28, 2017
|
Libpng 1.6.31beta01 - July 1, 2017
|
||||||
|
|
||||||
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.
|
||||||
@ -60,7 +60,11 @@ Version 1.6.30rc02 [June 25, 2017]
|
|||||||
Version 1.6.30 [June 28, 2017]
|
Version 1.6.30 [June 28, 2017]
|
||||||
No changes.
|
No changes.
|
||||||
|
|
||||||
Version 1.6.31beta01 [June 28, 2017]
|
Version 1.6.31beta01 [July 1, 2017]
|
||||||
|
Guard the definition of _POSIX_SOURCE in pngpriv.h (AIX already defines it;
|
||||||
|
bug report by Michael Felt).
|
||||||
|
Revised pngpriv.h to work around failure to compile arm/filter_neon.S
|
||||||
|
("typedef" directive is unrecognized by the assembler).
|
||||||
|
|
||||||
Send comments/corrections/commendations to png-mng-implement at lists.sf.net
|
Send comments/corrections/commendations to png-mng-implement at lists.sf.net
|
||||||
(subscription required; visit
|
(subscription required; visit
|
||||||
|
6
CHANGES
6
CHANGES
@ -5855,7 +5855,11 @@ Version 1.6.30rc02 [June 25, 2017]
|
|||||||
Version 1.6.30 [June 28, 2017]
|
Version 1.6.30 [June 28, 2017]
|
||||||
No changes.
|
No changes.
|
||||||
|
|
||||||
Version 1.6.31beta01 [June 28, 2017]
|
Version 1.6.31beta01 [July 1, 2017]
|
||||||
|
Guard the definition of _POSIX_SOURCE in pngpriv.h (AIX already defines it;
|
||||||
|
bug report by Michael Felt).
|
||||||
|
Revised pngpriv.h to work around failure to compile arm/filter_neon.S
|
||||||
|
("typedef" directive is unrecognized by the assembler).
|
||||||
|
|
||||||
Send comments/corrections/commendations to png-mng-implement at lists.sf.net
|
Send comments/corrections/commendations to png-mng-implement at lists.sf.net
|
||||||
(subscription required; visit
|
(subscription required; visit
|
||||||
|
15
pngpriv.h
15
pngpriv.h
@ -35,7 +35,9 @@
|
|||||||
* Windows/Visual Studio) there is no effect; the OS specific tests below are
|
* Windows/Visual Studio) there is no effect; the OS specific tests below are
|
||||||
* still required (as of 2011-05-02.)
|
* still required (as of 2011-05-02.)
|
||||||
*/
|
*/
|
||||||
#define _POSIX_SOURCE 1 /* Just the POSIX 1003.1 and C89 APIs */
|
#ifndef _POSIX_SOURCE
|
||||||
|
# define _POSIX_SOURCE 1 /* Just the POSIX 1003.1 and C89 APIs */
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifndef PNG_VERSION_INFO_ONLY
|
#ifndef PNG_VERSION_INFO_ONLY
|
||||||
/* Standard library headers not required by png.h: */
|
/* Standard library headers not required by png.h: */
|
||||||
@ -466,16 +468,21 @@
|
|||||||
static_cast<type>(static_cast<const void*>(value))
|
static_cast<type>(static_cast<const void*>(value))
|
||||||
#else
|
#else
|
||||||
# define png_voidcast(type, value) (value)
|
# define png_voidcast(type, value) (value)
|
||||||
# ifdef _WIN64
|
# if PNG_ARM_NEON_IMPLEMENTATION == 2 /* hand-coded assembler */
|
||||||
|
/* does not recognize "typedef" */
|
||||||
|
# define png_constcast(type, value) ((type)(value))
|
||||||
|
# else
|
||||||
|
# ifdef _WIN64
|
||||||
# ifdef __GNUC__
|
# ifdef __GNUC__
|
||||||
typedef unsigned long long png_ptruint;
|
typedef unsigned long long png_ptruint;
|
||||||
# else
|
# else
|
||||||
typedef unsigned __int64 png_ptruint;
|
typedef unsigned __int64 png_ptruint;
|
||||||
# endif
|
# endif
|
||||||
# else
|
# else
|
||||||
typedef unsigned long png_ptruint;
|
typedef unsigned long png_ptruint;
|
||||||
|
# endif
|
||||||
|
# define png_constcast(type, value) ((type)(png_ptruint)(const void*)(value))
|
||||||
# endif
|
# endif
|
||||||
# define png_constcast(type, value) ((type)(png_ptruint)(const void*)(value))
|
|
||||||
# define png_aligncast(type, value) ((void*)(value))
|
# define png_aligncast(type, value) ((void*)(value))
|
||||||
# define png_aligncastconst(type, value) ((const void*)(value))
|
# define png_aligncastconst(type, value) ((const void*)(value))
|
||||||
#endif /* __cplusplus */
|
#endif /* __cplusplus */
|
||||||
|
Loading…
Reference in New Issue
Block a user