Commit 3550d915 authored by Richard Levitte's avatar Richard Levitte
Browse files

Avoid __GNUC__ warnings when defining DECLARE_DEPRECATED



We need to check that __GNUC__ is defined before trying to use it.
This demands a slightly different way to define DECLARE_DEPRECATED.

Reviewed-by: default avatarRich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/6680)
parent 89778806
Loading
Loading
Loading
Loading
+6 −4
Original line number Diff line number Diff line
@@ -68,10 +68,12 @@ extern "C" {
 * still won't see them if the library has been built to disable deprecated
 * functions.
 */
#define DECLARE_DEPRECATED(f)   f;
#ifdef __GNUC__
# if __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ > 0)
#  undef DECLARE_DEPRECATED
#  define DECLARE_DEPRECATED(f)    f __attribute__ ((deprecated));
#else
# define DECLARE_DEPRECATED(f)   f;
# endif
#endif

#ifndef OPENSSL_FILE