aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorSteven Fackler <[email protected]>2016-03-17 09:04:26 -0700
committerSteven Fackler <[email protected]>2016-03-17 09:04:26 -0700
commita2ac6767e2368f2a9418759b7b6368116e42d63e (patch)
treeb6db66e52d071d18f886b491d815ca7f9fdf526d /README.md
parentMerge branch 'release-v0.7.6' into release (diff)
parentRelease v0.7.7 (diff)
downloadrust-openssl-0.7.7.tar.xz
rust-openssl-0.7.7.zip
Merge branch 'release-v0.7.7' into releasev0.7.7
Diffstat (limited to 'README.md')
-rw-r--r--README.md10
1 files changed, 9 insertions, 1 deletions
diff --git a/README.md b/README.md
index 6836ba80..e51cbc4a 100644
--- a/README.md
+++ b/README.md
@@ -2,7 +2,7 @@
[![Build Status](https://travis-ci.org/sfackler/rust-openssl.svg?branch=master)](https://travis-ci.org/sfackler/rust-openssl)
-[Documentation](https://sfackler.github.io/rust-openssl/doc/v0.7.6/openssl).
+[Documentation](https://sfackler.github.io/rust-openssl/doc/v0.7.7/openssl).
## Building
@@ -31,6 +31,14 @@ rust-openssl to a separate installation. OSX releases starting at 10.11, "El
Capitan", no longer include OpenSSL headers which will prevent the `openssl`
crate from compiling.
+For OSX 10.11 you can use brew to install OpenSSL and then set the environment variables
+as described below.
+```bash
+brew install openssl
+export OPENSSL_INCLUDE_DIR=`brew --prefix openssl`/include
+export OPENSSL_LIB_DIR=`brew --prefix openssl`/lib
+```
+
### Windows
On Windows, consider building with [mingw-w64](http://mingw-w64.org/).