From d6772960a3611892f09fb2e84cb194e60abb9f04 Mon Sep 17 00:00:00 2001 From: Noah <33094578+coolreader18@users.noreply.github.com> Date: Sat, 4 Apr 2020 21:18:20 -0500 Subject: [PATCH] Add documentation for OPENSSL_NO_VENDOR --- openssl/src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/openssl/src/lib.rs b/openssl/src/lib.rs index 59e65649..fd79379f 100644 --- a/openssl/src/lib.rs +++ b/openssl/src/lib.rs @@ -53,6 +53,8 @@ //! * `OPENSSL_STATIC` - If set, the crate will statically link to OpenSSL rather than dynamically link. //! * `OPENSSL_LIBS` - If set, a `:`-separated list of library names to link to (e.g. `ssl:crypto`). This can be used //! if nonstandard library names were used for whatever reason. +//! * `OPENSSL_NO_VENDOR` - If present, always find openssl in the system, even if the `vendored` feature is set by +//! the crate that's using this one. //! //! Additionally, these variables can be prefixed with the upper-cased target architecture (e.g. //! `X86_64_UNKNOWN_LINUX_GNU_OPENSSL_DIR`), which can be useful when cross compiling.