Skip to content

Commit 87abb24

Browse files
committed
1.8.0-beta.4
1 parent 9c81cff commit 87abb24

File tree

3 files changed

+2
-7
lines changed

3 files changed

+2
-7
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "nng-c-sys"
3-
version = "1.8.0-beta.3"
3+
version = "1.8.0-beta.4"
44
authors = ["Douman <[email protected]>"]
55
edition = "2018"
66
keywords = ["nng", "nanomsg"]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@ Version corresponds to C library
1717

1818
When `tls` feature is enabled `nng` will try to look for mbedTLS installation in `/usr/local`
1919

20-
If regular installation is not an option, you can specify environment variable `NNG_MBEDTLS_ROOT_DIR` with path to the library.
20+
If regular installation is not an option, you can specify environment variable `MBEDTLS_ROOT` with path to the library.
2121

2222
Which means on windows you're always required to supply this variable

build.rs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
use std::env;
21
use std::process::Command;
32

43
const INCLUDE_PATH: &str = "nng/include";
@@ -144,10 +143,6 @@ fn build() {
144143
config.generator("Ninja");
145144
}
146145

147-
if let Ok(path) = env::var(MBEDTLS_ROOT_DIR) {
148-
config.define("MBEDTLS_ROOT_DIR", path);
149-
}
150-
151146
config.define("NNG_TESTS", "OFF");
152147
config.define("NNG_ENABLE_COMPAT", "OFF");
153148
config.define("NNG_TRANSPORT_WS", "OFF");

0 commit comments

Comments
 (0)