diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2017-03-14 13:50:47 -0400 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2017-03-14 13:50:47 -0400 |
commit | 4ce11b1b52fc30c18dbd0b862a3f7341986deaf5 (patch) | |
tree | fccd3daaeef0111b1f26937d2c843d9d75427f36 /docs/development | |
parent | baff4acf2252adf6e00fd2edd5cd03c5937f3579 (diff) | |
download | cryptography-4ce11b1b52fc30c18dbd0b862a3f7341986deaf5.tar.gz cryptography-4ce11b1b52fc30c18dbd0b862a3f7341986deaf5.tar.bz2 cryptography-4ce11b1b52fc30c18dbd0b862a3f7341986deaf5.zip |
update dev docs to also say macOS and use openssl 1.1 (#3452)
Diffstat (limited to 'docs/development')
-rw-r--r-- | docs/development/getting-started.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/development/getting-started.rst b/docs/development/getting-started.rst index d94e656b..29d01c31 100644 --- a/docs/development/getting-started.rst +++ b/docs/development/getting-started.rst @@ -30,8 +30,8 @@ to check spelling in the documentation. You are now ready to run the tests and build the documentation. -OpenSSL on OS X -~~~~~~~~~~~~~~~ +OpenSSL on macOS +~~~~~~~~~~~~~~~~ You must have installed `OpenSSL`_ via `Homebrew`_ or `MacPorts`_ and must set ``CFLAGS`` and ``LDFLAGS`` environment variables before installing the @@ -41,8 +41,8 @@ For example, with `Homebrew`_: .. code-block:: console - $ env LDFLAGS="-L$(brew --prefix openssl)/lib" \ - CFLAGS="-I$(brew --prefix openssl)/include" \ + $ env LDFLAGS="-L$(brew --prefix openssl@1.1)/lib" \ + CFLAGS="-I$(brew --prefix openssl@1.1)/include" \ pip install --requirement ./dev-requirements.txt Alternatively for a static build you can specify |