From 19bae983e46d7334f926842b91382851005a2aab Mon Sep 17 00:00:00 2001 From: Niklas Poslovski Date: Fri, 13 Jan 2023 20:33:54 +0100 Subject: LibCore: Enable file descriptor passing on FreeBSD Ladybird currently doesn't render any webpages on FreeBSD and throws hundreds of errors,beginning with this: IPC::ConnectionBase (0x0000000805bf2b00) had an error (File descriptor passing not supported on this platform), disconnecting. WebContent process crashed! --- Userland/Libraries/LibCore/Stream.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Userland/Libraries/LibCore/Stream.cpp b/Userland/Libraries/LibCore/Stream.cpp index 9d9292ccaa..a5535b5004 100644 --- a/Userland/Libraries/LibCore/Stream.cpp +++ b/Userland/Libraries/LibCore/Stream.cpp @@ -579,7 +579,7 @@ ErrorOr LocalSocket::receive_fd(int flags) { #if defined(AK_OS_SERENITY) return Core::System::recvfd(m_helper.fd(), flags); -#elif defined(AK_OS_LINUX) || defined(AK_OS_MACOS) +#elif defined(AK_OS_LINUX) || defined(AK_OS_MACOS) || defined(AK_OS_FREEBSD) union { struct cmsghdr cmsghdr; char control[CMSG_SPACE(sizeof(int))]; @@ -620,7 +620,7 @@ ErrorOr LocalSocket::send_fd(int fd) { #if defined(AK_OS_SERENITY) return Core::System::sendfd(m_helper.fd(), fd); -#elif defined(AK_OS_LINUX) || defined(AK_OS_MACOS) +#elif defined(AK_OS_LINUX) || defined(AK_OS_MACOS) || defined(AK_OS_FREEBSD) char c = 'F'; struct iovec iov { .iov_base = &c, -- cgit v1.2.3