aboutsummaryrefslogtreecommitdiffstats
path: root/docs/installation.rst
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2017-03-22 22:56:26 -0400
committerPaul Kehrer <paul.l.kehrer@gmail.com>2017-03-22 22:56:26 -0400
commit46c0c62496ca3718755d05ba4d6f4965b34722a7 (patch)
treefdd663c0932e1d45240bc6a98de85168c09aea73 /docs/installation.rst
parent511098c9dfeb9f0824372ab49334a659ab7666aa (diff)
downloadcryptography-46c0c62496ca3718755d05ba4d6f4965b34722a7.tar.gz
cryptography-46c0c62496ca3718755d05ba4d6f4965b34722a7.tar.bz2
cryptography-46c0c62496ca3718755d05ba4d6f4965b34722a7.zip
Use some more recent version numbers in examples (#3474)
Diffstat (limited to 'docs/installation.rst')
-rw-r--r--docs/installation.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/installation.rst b/docs/installation.rst
index ab7f949c..e56d66cf 100644
--- a/docs/installation.rst
+++ b/docs/installation.rst
@@ -123,7 +123,7 @@ this when configuring OpenSSL:
You'll also need to generate your own ``openssl.ld`` file. For example::
- OPENSSL_1.0.1F_CUSTOM {
+ OPENSSL_1.1.0E_CUSTOM {
global:
*;
};
@@ -154,7 +154,7 @@ available from your system package manager.
Then, paste the following into a shell script. You'll need to populate the
``OPENSSL_VERSION`` variable. To do that, visit `openssl.org`_ and find the
latest non-FIPS release version number, then set the string appropriately. For
-example, for OpenSSL 1.0.2d, use ``OPENSSL_VERSION="1.0.2d"``.
+example, for OpenSSL 1.0.2k, use ``OPENSSL_VERSION="1.0.2k"``.
When this shell script is complete, you'll find a collection of wheel files in
a directory called ``wheelhouse``. These wheels can be installed by a
@@ -177,7 +177,7 @@ dependencies.
curl -O https://www.openssl.org/source/openssl-${OPENSSL_VERSION}.tar.gz
tar xvf openssl-${OPENSSL_VERSION}.tar.gz
cd openssl-${OPENSSL_VERSION}
- ./config no-shared no-ssl2 -fPIC --prefix=${CWD}/openssl
+ ./config no-shared no-ssl2 no-ssl3 -fPIC --prefix=${CWD}/openssl
make && make install
cd ..
CFLAGS="-I${CWD}/openssl/include" LDFLAGS="-L${CWD}/openssl/lib" pip wheel --no-use-wheel cryptography