File tree 8 files changed +4
-152
lines changed
8 files changed +4
-152
lines changed Original file line number Diff line number Diff line change @@ -199,7 +199,6 @@ thumbv7neon-linux-androideabi \
199
199
thumbv7neon-unknown-linux-gnueabihf \
200
200
thumbv8m.main-none-eabi \
201
201
x86_64-pc-windows-msvc
202
- x86_64-unknown-bitrig \
203
202
x86_64-unknown-dragonfly \
204
203
x86_64-unknown-haiku \
205
204
x86_64-unknown-hermit \
Original file line number Diff line number Diff line change @@ -663,8 +663,7 @@ cfg_if! {
663
663
if #[ cfg( any( target_os = "macos" , target_os = "ios" ) ) ] {
664
664
mod apple;
665
665
pub use self :: apple:: * ;
666
- } else if #[ cfg( any( target_os = "openbsd" , target_os = "netbsd" ,
667
- target_os = "bitrig" ) ) ] {
666
+ } else if #[ cfg( any( target_os = "openbsd" , target_os = "netbsd" ) ) ] {
668
667
mod netbsdlike;
669
668
pub use self :: netbsdlike:: * ;
670
669
} else if #[ cfg( any( target_os = "freebsd" , target_os = "dragonfly" ) ) ] {
Original file line number Diff line number Diff line change @@ -676,7 +676,7 @@ cfg_if! {
676
676
if #[ cfg( target_os = "netbsd" ) ] {
677
677
mod netbsd;
678
678
pub use self :: netbsd:: * ;
679
- } else if #[ cfg( any ( target_os = "openbsd" , target_os = "bitrig" ) ) ] {
679
+ } else if #[ cfg( target_os = "openbsd" ) ] {
680
680
mod openbsdlike;
681
681
pub use self :: openbsdlike:: * ;
682
682
} else {
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -939,9 +939,6 @@ cfg_if! {
939
939
if #[ cfg( target_os = "openbsd" ) ] {
940
940
mod openbsd;
941
941
pub use self :: openbsd:: * ;
942
- } else if #[ cfg( target_os = "bitrig" ) ] {
943
- mod bitrig;
944
- pub use self :: bitrig:: * ;
945
942
} else {
946
943
// Unknown target_os
947
944
}
Original file line number Diff line number Diff line change @@ -327,8 +327,7 @@ cfg_if! {
327
327
} else if #[ cfg( any( target_os = "macos" ,
328
328
target_os = "ios" ,
329
329
target_os = "android" ,
330
- target_os = "openbsd" ,
331
- target_os = "bitrig" ) ) ] {
330
+ target_os = "openbsd" ) ) ] {
332
331
#[ link( name = "c" ) ]
333
332
#[ link( name = "m" ) ]
334
333
extern { }
@@ -1158,8 +1157,7 @@ cfg_if! {
1158
1157
target_os = "freebsd" ,
1159
1158
target_os = "dragonfly" ,
1160
1159
target_os = "openbsd" ,
1161
- target_os = "netbsd" ,
1162
- target_os = "bitrig" ) ) ] {
1160
+ target_os = "netbsd" ) ) ] {
1163
1161
mod bsd;
1164
1162
pub use self :: bsd:: * ;
1165
1163
} else if #[ cfg( any( target_os = "solaris" ,
You can’t perform that action at this time.
0 commit comments