diff options
| author | Mads Marquart <mads@marquart.dk> | 2024-04-28 18:22:37 +0200 |
|---|---|---|
| committer | Mads Marquart <mads@marquart.dk> | 2024-04-28 18:22:37 +0200 |
| commit | d9c0eb8084deb65de69b23a7714b66efbff7eb03 (patch) | |
| tree | aac29bbed1315261cad4d77a0025225c1ee658f4 /library/std/src/sys_common | |
| parent | cb4940645775f60d74aee2e018d6c516c5aa9ed7 (diff) | |
| download | rust-d9c0eb8084deb65de69b23a7714b66efbff7eb03.tar.gz rust-d9c0eb8084deb65de69b23a7714b66efbff7eb03.zip | |
Use `target_vendor = "apple"` instead of `target_os = "..."`
Diffstat (limited to 'library/std/src/sys_common')
| -rw-r--r-- | library/std/src/sys_common/net.rs | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/library/std/src/sys_common/net.rs b/library/std/src/sys_common/net.rs index 6a268633f72..95ca67fc2e0 100644 --- a/library/std/src/sys_common/net.rs +++ b/library/std/src/sys_common/net.rs @@ -17,10 +17,17 @@ use crate::ffi::{c_int, c_void}; cfg_if::cfg_if! { if #[cfg(any( - target_os = "dragonfly", target_os = "freebsd", - target_os = "ios", target_os = "tvos", target_os = "macos", target_os = "watchos", target_os = "visionos", - target_os = "openbsd", target_os = "netbsd", target_os = "illumos", - target_os = "solaris", target_os = "haiku", target_os = "l4re", target_os = "nto"))] { + target_os = "dragonfly", + target_os = "freebsd", + target_os = "openbsd", + target_os = "netbsd", + target_os = "illumos", + target_os = "solaris", + target_os = "haiku", + target_os = "l4re", + target_os = "nto", + target_vendor = "apple", + ))] { use crate::sys::net::netc::IPV6_JOIN_GROUP as IPV6_ADD_MEMBERSHIP; use crate::sys::net::netc::IPV6_LEAVE_GROUP as IPV6_DROP_MEMBERSHIP; } else { |
