[libpng16] Check for existence of __GNUC_MINOR__ before testing its value

(This is probably unnecessary because it's inside a __GNUC__ block.)
This commit is contained in:
Glenn Randers-Pehrson 2012-07-21 13:18:42 -05:00
parent 80b67e47e8
commit 449db5a9c1

View File

@ -382,7 +382,7 @@
__attribute__((__deprecated__)) __attribute__((__deprecated__))
# endif # endif
# endif # endif
# if ((__GNUC__ != 3) || (__GNUC_MINOR__ >= 1)) # if ((__GNUC__ != 3) || !defined(__GNUC_MINOR__) || (__GNUC_MINOR__ >= 1))
# ifndef PNG_RESTRICT # ifndef PNG_RESTRICT
# define PNG_RESTRICT __restrict # define PNG_RESTRICT __restrict
# endif # endif