Skip to content

Commit

Permalink
Merge pull request #4004 from psumbera/solaris-FNM_CASEFOLD
Browse files Browse the repository at this point in the history
Fix definition of FNM_CASEFOLD for Illumos/Solaris
  • Loading branch information
tgross35 authored Nov 6, 2024
2 parents a8d7c4e + 98a20b3 commit 0a3b786
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 = 1 << 3;
} else {
pub const FNM_CASEFOLD: c_int = 1 << 4;
}
}

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

0 comments on commit 0a3b786

Please sign in to comment.