diff options
| author | Alex Crichton <[email protected]> | 2015-03-04 14:14:05 -0800 |
|---|---|---|
| committer | Alex Crichton <[email protected]> | 2015-03-04 14:14:05 -0800 |
| commit | 1c9b8a029b351e634c9e7849ece614338dc37b8c (patch) | |
| tree | 1e8af9e5b4dcda2759892e564eceb5b1d6b2ffe4 /openssl-sys/build.rs | |
| parent | Release v0.5.0 (diff) | |
| download | rust-openssl-1c9b8a029b351e634c9e7849ece614338dc37b8c.tar.xz rust-openssl-1c9b8a029b351e634c9e7849ece614338dc37b8c.zip | |
Cut down on unstable features in openssl-sys
* Move from `old_path` to `path` (leveraging the `fs` feature as well)
* Move from `StaticMutex` to `Mutex<()>` as they're dynamically initialized
Diffstat (limited to 'openssl-sys/build.rs')
| -rw-r--r-- | openssl-sys/build.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openssl-sys/build.rs b/openssl-sys/build.rs index ce807dd2..7b86e782 100644 --- a/openssl-sys/build.rs +++ b/openssl-sys/build.rs @@ -1,4 +1,4 @@ -#![feature(env, path)] +#![feature(path)] extern crate "pkg-config" as pkg_config; extern crate gcc; |