From 7a0b0713d920fbf5ebb5fea0dc7fc481c16c2304 Mon Sep 17 00:00:00 2001 From: Keigo IMAI Date: Mon, 30 Nov 2015 21:38:28 +0900 Subject: [PATCH] workaround for 'Missing the OpenSSL lib?' on RHEL6 --- Common-build-problems.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Common-build-problems.md b/Common-build-problems.md index 92109bd..04a868c 100644 --- a/Common-build-problems.md +++ b/Common-build-problems.md @@ -94,6 +94,13 @@ CFLAGS="-I$(brew --prefix openssl)/include" \ LDFLAGS="-L$(brew --prefix openssl)/lib" \ pyenv install -v 3.4.3 ``` +or (checked on RHEL6): +``` +CFLAGS=-I/usr/include/openssl \ +LDFLAGS=-L/usr/lib64 \ +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)). ## python-build: definition not found