diff options
Diffstat (limited to 'devel/libdatadog/files/patch-datadog-sidecar-src-setup-unix.rs')
-rw-r--r-- | devel/libdatadog/files/patch-datadog-sidecar-src-setup-unix.rs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/devel/libdatadog/files/patch-datadog-sidecar-src-setup-unix.rs b/devel/libdatadog/files/patch-datadog-sidecar-src-setup-unix.rs new file mode 100644 index 000000000000..5c37c84f50de --- /dev/null +++ b/devel/libdatadog/files/patch-datadog-sidecar-src-setup-unix.rs @@ -0,0 +1,12 @@ +--- datadog-sidecar/src/setup/unix.rs.orig 2024-05-03 17:30:09 UTC ++++ datadog-sidecar/src/setup/unix.rs +@@ -111,6 +111,9 @@ impl Default for SharedDirLiaison { + } + } + ++#[cfg(target_os = "freebsd")] ++pub type DefaultLiason = SharedDirLiaison; ++ + #[cfg(target_os = "linux")] + mod linux { + use std::{io, os::unix::net::UnixListener, path::PathBuf}; |