diff options
author | Nick Mathewson <nickm@torproject.org> | 2016-06-14 12:17:02 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2016-06-14 12:17:02 -0400 |
commit | 71aacbe427e2d0c2b970bdc81db4f96c506dd7f3 (patch) | |
tree | 2be995bf9179d42fb30e38ca340111d164e59030 /src/tools | |
parent | b217e4ac65532742ffd9527738303ca14ae3c6c0 (diff) | |
download | tor-71aacbe427e2d0c2b970bdc81db4f96c506dd7f3.tar.gz tor-71aacbe427e2d0c2b970bdc81db4f96c506dd7f3.zip |
Suppress the Wredundant-decls warning in another set of openssl headers
Diffstat (limited to 'src/tools')
-rw-r--r-- | src/tools/tor-gencert.c | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/tools/tor-gencert.c b/src/tools/tor-gencert.c index c05066722a..5f2cd3a92d 100644 --- a/src/tools/tor-gencert.c +++ b/src/tools/tor-gencert.c @@ -13,6 +13,20 @@ #include <unistd.h> #endif +#ifdef __GNUC__ +#define GCC_VERSION (__GNUC__ * 100 + __GNUC_MINOR__) +#endif + +#if __GNUC__ && GCC_VERSION >= 402 +#if GCC_VERSION >= 406 +#pragma GCC diagnostic push +#endif +/* Some versions of OpenSSL declare X509_STORE_CTX_set_verify_cb twice in + * x509.h and x509_vfy.h. Suppress the GCC warning so we can build with + * -Wredundant-decl. */ +#pragma GCC diagnostic ignored "-Wredundant-decls" +#endif + #include <openssl/evp.h> #include <openssl/pem.h> #include <openssl/rsa.h> @@ -20,6 +34,14 @@ #include <openssl/obj_mac.h> #include <openssl/err.h> +#if __GNUC__ && GCC_VERSION >= 402 +#if GCC_VERSION >= 406 +#pragma GCC diagnostic pop +#else +#pragma GCC diagnostic warning "-Wredundant-decls" +#endif +#endif + #include <errno.h> #if 0 #include <stdlib.h> |