summaryrefslogtreecommitdiff
path: root/src/tools
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2016-06-14 12:22:52 -0400
committerNick Mathewson <nickm@torproject.org>2016-06-14 12:22:52 -0400
commit3bffdf05d1d84427b48b783178d2115b030ca7b9 (patch)
tree1372592ad6e8d44be053a71c520b9f05309c3e80 /src/tools
parentdf4fa92a88dbeadcc85ea28ac52af006e9e1466a (diff)
downloadtor-3bffdf05d1d84427b48b783178d2115b030ca7b9.tar.gz
tor-3bffdf05d1d84427b48b783178d2115b030ca7b9.zip
use new-form macros to disable -Wredundant-decls
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/tor-gencert.c19
1 files changed, 3 insertions, 16 deletions
diff --git a/src/tools/tor-gencert.c b/src/tools/tor-gencert.c
index 8e9aadcb18..4ddfbc9657 100644
--- a/src/tools/tor-gencert.c
+++ b/src/tools/tor-gencert.c
@@ -13,19 +13,12 @@
#include <unistd.h>
#endif
-#ifdef __GNUC__
-#define GCC_VERSION (__GNUC__ * 100 + __GNUC_MINOR__)
-#endif
+#include "compat.h"
-#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
+DISABLE_GCC_WARNING(redundant-decls)
#include <openssl/evp.h>
#include <openssl/pem.h>
@@ -34,13 +27,7 @@
#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
+ENABLE_GCC_WARNING(redundant-decls)
#include <errno.h>
#if 0