summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorAidan Hobson Sayers <aidanhs@cantab.net>2016-12-12 17:51:35 +0000
committerAidan Hobson Sayers <aidanhs@cantab.net>2016-12-12 17:51:35 +0000
commitb090804227596b1814bbb6c6cdcf89347270371e (patch)
tree4a8d5024ee5229f4f09c9bcbcffeae50ccc77746 /README.md
parent152d7889981f2f25a8134c9f8082e5024ba9073e (diff)
downloadrust-openssl-b090804227596b1814bbb6c6cdcf89347270371e.zip
Allow OPENSSL_{LIB,INCLUDE}_DIR to override OPENSSL_DIR
Diffstat (limited to 'README.md')
-rw-r--r--README.md6
1 files changed, 6 insertions, 0 deletions
diff --git a/README.md b/README.md
index 30b92e8e..9c3e30a2 100644
--- a/README.md
+++ b/README.md
@@ -102,6 +102,12 @@ The build script can be configured via environment variables:
* `OPENSSL_DIR` - If specified, a directory that will be used to find
OpenSSL installation. It's expected that under this directory the `include`
folder has header files and a `lib` folder has the runtime libraries.
+* `OPENSSL_LIB_DIR` - If specified, a directory that will be used to find
+ OpenSSL libraries. Overrides the `lib` folder implied by `OPENSSL_DIR`
+ (if specified).
+* `OPENSSL_INCLUDE_DIR` - If specified, a directory that will be used to find
+ OpenSSL header files. Overrides the `include` folder implied by `OPENSSL_DIR`
+ (if specified).
* `OPENSSL_STATIC` - If specified, OpenSSL libraries will be statically rather
than dynamically linked.