aboutsummaryrefslogtreecommitdiffstats
path: root/cryptography/hazmat/bindings/commoncrypto/binding.py
diff options
context:
space:
mode:
Diffstat (limited to 'cryptography/hazmat/bindings/commoncrypto/binding.py')
-rw-r--r--cryptography/hazmat/bindings/commoncrypto/binding.py11
1 files changed, 9 insertions, 2 deletions
diff --git a/cryptography/hazmat/bindings/commoncrypto/binding.py b/cryptography/hazmat/bindings/commoncrypto/binding.py
index 3673ea36..ec98b339 100644
--- a/cryptography/hazmat/bindings/commoncrypto/binding.py
+++ b/cryptography/hazmat/bindings/commoncrypto/binding.py
@@ -42,8 +42,15 @@ class Binding(object):
if cls.ffi is not None and cls.lib is not None:
return
- cls.ffi, cls.lib = build_ffi(cls._module_prefix, cls._modules,
- "", "", [])
+ cls.ffi, cls.lib = build_ffi(
+ module_prefix=cls._module_prefix,
+ modules=cls._modules,
+ pre_include="",
+ post_include="",
+ libraries=[],
+ extra_compile_args=[],
+ extra_link_args=[]
+ )
@classmethod
def is_available(cls):