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) {
36713671 if name. starts_with ( "RLIM64" ) {
36723672 return true ;
36733673 }
3674+ // CI fails because musl targets use Linux v4 kernel
3675+ if name. starts_with ( "NI_IDN" ) {
3676+ return true ;
3677+ }
36743678 }
36753679 match name {
36763680 // 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;
21032103pub const NI_NOFQDN : :: c_int = 4 ;
21042104pub const NI_NAMEREQD : :: c_int = 8 ;
21052105pub const NI_DGRAM : :: c_int = 16 ;
2106+ pub const NI_IDN : :: c_int = 32 ;
21062107
21072108pub const SYNC_FILE_RANGE_WAIT_BEFORE : :: c_uint = 1 ;
21082109pub const SYNC_FILE_RANGE_WRITE : :: c_uint = 2 ;
You can’t perform that action at this time.
0 commit comments