From f8ca13af1b596463335dc552d6396b4dab33bdb7 Mon Sep 17 00:00:00 2001 From: Anh Quang Do Date: Sun, 19 Jun 2016 01:19:06 +0700 Subject: [PATCH] Updated Common build problems (markdown) --- Common-build-problems.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Common-build-problems.md b/Common-build-problems.md index 99f39fd..e0baf29 100644 --- a/Common-build-problems.md +++ b/Common-build-problems.md @@ -99,6 +99,12 @@ CFLAGS=-I/usr/include/openssl \ LDFLAGS=-L/usr/lib64 \ pyenv install -v 3.4.3 ``` +* Alternatively, if you installed openssl with macports, use the following paths: +``` +CFLAGS="-I/opt/local/include/" \ +LDFLAGS="-L/opt/local/lib/" \ +pyenv install -v 3.4.3 +``` * On FreeBSD 10-RELEASE and 11-CURRENT, you may need to recompile ``security/openssl`` without SSLv2 support. (See [#464](https://github.com/yyuu/pyenv/issues/464#issuecomment-152821922)).