File tree Expand file tree Collapse file tree 3 files changed +2
-7
lines changed Expand file tree Collapse file tree 3 files changed +2
-7
lines changed Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " nng-c-sys"
3
- version = " 1.8.0-beta.3 "
3
+ version = " 1.8.0-beta.4 "
4
4
authors = [
" Douman <[email protected] >" ]
5
5
edition = " 2018"
6
6
keywords = [" nng" , " nanomsg" ]
Original file line number Diff line number Diff line change @@ -17,6 +17,6 @@ Version corresponds to C library
17
17
18
18
When ` tls ` feature is enabled ` nng ` will try to look for mbedTLS installation in ` /usr/local `
19
19
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.
21
21
22
22
Which means on windows you're always required to supply this variable
Original file line number Diff line number Diff line change 1
- use std:: env;
2
1
use std:: process:: Command ;
3
2
4
3
const INCLUDE_PATH : & str = "nng/include" ;
@@ -144,10 +143,6 @@ fn build() {
144
143
config. generator ( "Ninja" ) ;
145
144
}
146
145
147
- if let Ok ( path) = env:: var ( MBEDTLS_ROOT_DIR ) {
148
- config. define ( "MBEDTLS_ROOT_DIR" , path) ;
149
- }
150
-
151
146
config. define ( "NNG_TESTS" , "OFF" ) ;
152
147
config. define ( "NNG_ENABLE_COMPAT" , "OFF" ) ;
153
148
config. define ( "NNG_TRANSPORT_WS" , "OFF" ) ;
You can’t perform that action at this time.
0 commit comments