mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-29 03:57:44 +00:00
Turn off utmpx and signals for Fuchsia.
Fuchsia uses musl as its libc; musl only has stub implementation for utmpx. From their wiki, that is deliberately chosen. Fuchsia doesn't have signals mechanism.
This commit is contained in:
parent
9db91285bd
commit
e37468b630
1 changed files with 2 additions and 2 deletions
|
@ -16,7 +16,7 @@ pub mod encoding;
|
|||
#[cfg(feature = "parse_time")]
|
||||
pub mod parse_time;
|
||||
|
||||
#[cfg(all(unix, feature = "utmpx"))]
|
||||
#[cfg(all(unix, not(target_os = "fuchsia"), feature = "utmpx"))]
|
||||
pub mod utmpx;
|
||||
#[cfg(all(unix, feature = "utsname"))]
|
||||
pub mod utsname;
|
||||
|
@ -24,7 +24,7 @@ pub mod utsname;
|
|||
pub mod entries;
|
||||
#[cfg(all(unix, feature = "process"))]
|
||||
pub mod process;
|
||||
#[cfg(all(unix, feature = "signals"))]
|
||||
#[cfg(all(unix, not(target_os = "fuchsia"), feature = "signals"))]
|
||||
pub mod signals;
|
||||
|
||||
#[cfg(all(windows, feature = "wide"))]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue