Skip to content

Commit

Permalink
Add support for AIX
Browse files Browse the repository at this point in the history
  • Loading branch information
Kai Luo committed Apr 9, 2024
1 parent d62cd04 commit 545c9ca
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/platform/unix.rs
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ impl Debug for UTSName {
// The domainname field is not part of the POSIX standard but a GNU extension. Therefor
// BSD-like platforms and illumos are missing the domainname field.
#[cfg(not(any(
target_os = "aix",
target_os = "illumos",
target_os = "macos",
target_os = "dragonfly",
Expand Down Expand Up @@ -152,6 +153,7 @@ impl PartialEq for UTSName {
// The domainname field is not part of the POSIX standard but a GNU extension. Therefor
// BSD-like platforms and illumos are missing the domainname field.
#[cfg(not(any(
target_os = "aix",
target_os = "illumos",
target_os = "macos",
target_os = "dragonfly",
Expand Down

0 comments on commit 545c9ca

Please sign in to comment.