From 584cab65941f1f4f6861dc56d7c9c733c08cac6f Mon Sep 17 00:00:00 2001 From: Paul Kehrer Date: Thu, 21 Aug 2014 08:18:08 -1000 Subject: link corefoundation in the CC binding. This fixes compilation under Yosemite. --- cryptography/hazmat/bindings/commoncrypto/binding.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cryptography/hazmat/bindings/commoncrypto/binding.py b/cryptography/hazmat/bindings/commoncrypto/binding.py index ee09bebd..e23a2fd9 100644 --- a/cryptography/hazmat/bindings/commoncrypto/binding.py +++ b/cryptography/hazmat/bindings/commoncrypto/binding.py @@ -48,5 +48,7 @@ class Binding(object): cls.ffi, cls.lib = build_ffi( module_prefix=cls._module_prefix, modules=cls._modules, - extra_link_args=["-framework", "Security"] + extra_link_args=[ + "-framework", "Security", "-framework", "CoreFoundation" + ] ) -- cgit v1.2.3