Skip to content

Commit

Permalink
Fix definition of FNM_CASEFOLD for Illumos/Solaris
Browse files Browse the repository at this point in the history
  • Loading branch information
psumbera committed Nov 6, 2024
1 parent ddeff5b commit 9e8b207
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion src/unix/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -321,9 +321,19 @@ pub const ATF_PUBL: ::c_int = 0x08;
pub const ATF_USETRAILERS: ::c_int = 0x10;

pub const FNM_PERIOD: c_int = 1 << 2;
pub const FNM_CASEFOLD: c_int = 1 << 4;
pub const FNM_NOMATCH: c_int = 1;

cfg_if! {
if #[cfg(any(
target_os = "illumos",
target_os = "solaris",
))] {
pub const FNM_CASEFOLD: c_int = 0x08;
} else {
pub const FNM_CASEFOLD: c_int = 1 << 4;
}
}

cfg_if! {
if #[cfg(any(
target_os = "macos",
Expand Down

0 comments on commit 9e8b207

Please sign in to comment.