aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2013-09-30 16:56:55 -0700
committerAlex Gaynor <alex.gaynor@gmail.com>2013-09-30 16:56:55 -0700
commita52219710bd9032ddafd8000afdaf05927aaa6a6 (patch)
treeb6e99aeeb14ca53986e68a07079b9e281a36cc56
parent479cc0902e0243b59284145932e73ce0ea2ecf09 (diff)
downloadcryptography-a52219710bd9032ddafd8000afdaf05927aaa6a6.tar.gz
cryptography-a52219710bd9032ddafd8000afdaf05927aaa6a6.tar.bz2
cryptography-a52219710bd9032ddafd8000afdaf05927aaa6a6.zip
Different flags
-rw-r--r--cryptography/bindings/openssl/api.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/cryptography/bindings/openssl/api.py b/cryptography/bindings/openssl/api.py
index 5b58c775..2850f24a 100644
--- a/cryptography/bindings/openssl/api.py
+++ b/cryptography/bindings/openssl/api.py
@@ -42,7 +42,10 @@ class API(object):
self.lib = self.ffi.verify(
source="\n".join(includes),
libraries=["crypto"],
- extra_compile_args=["-Wall", "-Werror", "-Wpedantic", "-Wconversion"]
+ extra_compile_args=[
+ "-Qunused-arguments", "-Wno-deprecated",
+ "-Wall", "-Werror", "-Wpedantic", "-Wconversion"
+ ]
)
self.lib.OpenSSL_add_all_algorithms()