File tree Expand file tree Collapse file tree 3 files changed +4
-10
lines changed Expand file tree Collapse file tree 3 files changed +4
-10
lines changed Original file line number Diff line number Diff line change @@ -347,10 +347,6 @@ cfg_if! {
347
347
#[ link( name = "root" ) ]
348
348
#[ link( name = "network" ) ]
349
349
extern { }
350
- } else if #[ cfg( target_os = "fuchsia" ) ] {
351
- #[ link( name = "c" ) ]
352
- #[ link( name = "fdio" ) ]
353
- extern { }
354
350
} else if #[ cfg( target_env = "newlib" ) ] {
355
351
#[ link( name = "c" ) ]
356
352
#[ link( name = "m" ) ]
@@ -1126,8 +1122,7 @@ cfg_if! {
1126
1122
pub use self :: newlib:: * ;
1127
1123
} else if #[ cfg( any( target_os = "linux" ,
1128
1124
target_os = "android" ,
1129
- target_os = "emscripten" ,
1130
- target_os = "fuchsia" ) ) ] {
1125
+ target_os = "emscripten" ) ) ] {
1131
1126
mod notbsd;
1132
1127
pub use self :: notbsd:: * ;
1133
1128
} else if #[ cfg( any( target_os = "macos" ,
Original file line number Diff line number Diff line change @@ -2242,7 +2242,7 @@ extern {
2242
2242
}
2243
2243
2244
2244
cfg_if ! {
2245
- if #[ cfg( any ( target_env = "musl" , target_os = "fuchsia" ) ) ] {
2245
+ if #[ cfg( target_env = "musl" ) ] {
2246
2246
mod musl;
2247
2247
pub use self :: musl:: * ;
2248
2248
} else if #[ cfg( any( target_arch = "mips" ,
Original file line number Diff line number Diff line change 53
53
pub ai_addrlen: socklen_t,
54
54
55
55
#[ cfg( any( target_os = "linux" ,
56
- target_os = "emscripten" ,
57
- target_os = "fuchsia" ) ) ]
56
+ target_os = "emscripten" ) ) ]
58
57
pub ai_addr: * mut :: sockaddr,
59
58
60
59
pub ai_canonname: * mut c_char,
@@ -1235,7 +1234,7 @@ cfg_if! {
1235
1234
if #[ cfg( target_os = "emscripten" ) ] {
1236
1235
mod emscripten;
1237
1236
pub use self :: emscripten:: * ;
1238
- } else if #[ cfg( any ( target_os = "linux" , target_os = "fuchsia" ) ) ] {
1237
+ } else if #[ cfg( target_os = "linux" ) ] {
1239
1238
mod linux;
1240
1239
pub use self :: linux:: * ;
1241
1240
} else if #[ cfg( target_os = "android" ) ] {
You can’t perform that action at this time.
0 commit comments