From 2a7de74be33fe601b7f5ec5568e3c7cbd0e9f9a4 Mon Sep 17 00:00:00 2001 From: Patrick McCarty Date: Tue, 5 Mar 2013 15:40:28 -0800 Subject: [PATCH] Link with libcrypto --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 3194e7c..66a6675 100644 --- a/setup.py +++ b/setup.py @@ -112,6 +112,7 @@ else: for e in split_quoted(os.popen("'%s' --features" % CURL_CONFIG).read()): if e == 'SSL': define_macros.append(('HAVE_CURL_SSL', 1)) + libraries.append("crypto") if not libraries: libraries.append("curl") # Add extra compile flag for MacOS X -- 2.34.1