From 0741aef880decd26e8455f1a012e518fd4cc588e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20Borgstr=C3=B6m?= Date: Fri, 1 Aug 2014 14:48:49 +0200 Subject: [PATCH] Add MacPorts' path to the default openssl search path Closes #101 --- CHANGES | 1 + setup.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index 525b77901..47398a227 100644 --- a/CHANGES +++ b/CHANGES @@ -8,6 +8,7 @@ Version 0.14 (feature release, released on X) +- Add MacPorts' path to the default openssl search path (#101) - HashIndex improvements, eliminates unnecessary IO on low memory systems. Version 0.13 diff --git a/setup.py b/setup.py index bdc96cded..2c1432b10 100644 --- a/setup.py +++ b/setup.py @@ -68,7 +68,7 @@ def detect_openssl(prefixes): return prefix -possible_openssl_prefixes = ['/usr', '/usr/local', '/usr/local/opt/openssl', '/usr/local/ssl', '/usr/local/openssl', '/usr/local/attic'] +possible_openssl_prefixes = ['/usr', '/usr/local', '/usr/local/opt/openssl', '/usr/local/ssl', '/usr/local/openssl', '/usr/local/attic', '/opt/local'] if os.environ.get('ATTIC_OPENSSL_PREFIX'): possible_openssl_prefixes.insert(0, os.environ.get('ATTIC_OPENSSL_PREFIX')) ssl_prefix = detect_openssl(possible_openssl_prefixes)