We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc0a182 commit cc58834Copy full SHA for cc58834
src/unix/mod.rs
@@ -230,8 +230,10 @@ pub const INADDR_BROADCAST: in_addr_t = 4294967295;
230
pub const INADDR_NONE: in_addr_t = 4294967295;
231
232
cfg_if! {
233
- if #[cfg(any(dox, target_os = "l4re"))] {
+ if #[cfg(dox)] {
234
// on dox builds don't pull in anything
235
+ } else if #[cfg(target_os = "l4re")] {
236
+ // required libraries for L4Re are linked externally, ATM
237
} else if #[cfg(all(not(stdbuild), feature = "use_std"))] {
238
// cargo build, don't pull in anything extra as the libstd dep
239
// already pulls in all libs.
0 commit comments