mirror of
https://github.com/nushell/nushell
synced 2024-11-10 15:14:14 +00:00
Fix build on NetBSD (#11364)
- this PR should close #11354 # Description Allow building on NetBSD. # User-Facing Changes NA
This commit is contained in:
parent
ec2593efb8
commit
0cba269d80
2 changed files with 7 additions and 4 deletions
|
@ -106,7 +106,7 @@ libc = "0.2"
|
|||
umask = "2.1"
|
||||
nix = { version = "0.27", default-features = false, features = ["user", "resource"] }
|
||||
|
||||
[target.'cfg(all(unix, not(target_os = "macos"), not(target_os = "android"), not(target_os = "ios")))'.dependencies]
|
||||
[target.'cfg(all(unix, not(target_os = "macos"), not(target_os = "android"), not(target_os = "ios"), not(target_os = "netbsd")))'.dependencies]
|
||||
procfs = "0.16.0"
|
||||
|
||||
[target.'cfg(not(any(target_os = "android", target_os = "ios")))'.dependencies.trash]
|
||||
|
|
|
@ -5,7 +5,8 @@ use itertools::Itertools;
|
|||
not(target_os = "macos"),
|
||||
not(target_os = "windows"),
|
||||
not(target_os = "android"),
|
||||
not(target_os = "ios")
|
||||
not(target_os = "ios"),
|
||||
not(target_os = "netbsd")
|
||||
))]
|
||||
use nu_protocol::Span;
|
||||
use nu_protocol::{
|
||||
|
@ -19,7 +20,8 @@ use nu_protocol::{
|
|||
not(target_os = "macos"),
|
||||
not(target_os = "windows"),
|
||||
not(target_os = "android"),
|
||||
not(target_os = "ios")
|
||||
not(target_os = "ios"),
|
||||
not(target_os = "netbsd")
|
||||
))]
|
||||
use procfs::WithCurrentSystemInfo;
|
||||
|
||||
|
@ -123,7 +125,8 @@ fn run_ps(engine_state: &EngineState, call: &Call) -> Result<PipelineData, Shell
|
|||
not(target_os = "macos"),
|
||||
not(target_os = "windows"),
|
||||
not(target_os = "android"),
|
||||
not(target_os = "ios")
|
||||
not(target_os = "ios"),
|
||||
not(target_os = "netbsd")
|
||||
))]
|
||||
{
|
||||
let proc_stat = proc
|
||||
|
|
Loading…
Reference in a new issue