File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed
src/unix/linux_like/linux Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -3671,6 +3671,10 @@ fn test_linux(target: &str) {
3671
3671
if name. starts_with ( "RLIM64" ) {
3672
3672
return true ;
3673
3673
}
3674
+ // CI fails because musl targets use Linux v4 kernel
3675
+ if name. starts_with ( "NI_IDN" ) {
3676
+ return true ;
3677
+ }
3674
3678
}
3675
3679
match name {
3676
3680
// These constants are not available if gnu headers have been included
Original file line number Diff line number Diff line change @@ -2103,6 +2103,7 @@ pub const NI_NUMERICSERV: ::c_int = 2;
2103
2103
pub const NI_NOFQDN : :: c_int = 4 ;
2104
2104
pub const NI_NAMEREQD : :: c_int = 8 ;
2105
2105
pub const NI_DGRAM : :: c_int = 16 ;
2106
+ pub const NI_IDN : :: c_int = 32 ;
2106
2107
2107
2108
pub const SYNC_FILE_RANGE_WAIT_BEFORE : :: c_uint = 1 ;
2108
2109
pub const SYNC_FILE_RANGE_WRITE : :: c_uint = 2 ;
You can’t perform that action at this time.
0 commit comments