From aa792062cbb0d39092948a7e71fad59737c4ac66 Mon Sep 17 00:00:00 2001 From: Gunnar Beutner Date: Wed, 28 Apr 2021 12:39:12 +0200 Subject: Kernel+LibC: Implement the socketpair() syscall --- Ports/libassuan/patches/socketpair.patch | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 Ports/libassuan/patches/socketpair.patch (limited to 'Ports/libassuan') diff --git a/Ports/libassuan/patches/socketpair.patch b/Ports/libassuan/patches/socketpair.patch deleted file mode 100644 index 61d318bac4..0000000000 --- a/Ports/libassuan/patches/socketpair.patch +++ /dev/null @@ -1,16 +0,0 @@ -diff -Naur libassuan-2.5.5/src/system-posix.c libassuan-2.5.5.serenity/src/system-posix.c ---- libassuan-2.5.5/src/system-posix.c 2021-04-14 02:40:14.020341296 +0200 -+++ libassuan-2.5.5.serenity/src/system-posix.c 2021-04-14 02:39:56.823341349 +0200 -@@ -412,7 +412,12 @@ - __assuan_socketpair (assuan_context_t ctx, int namespace, int style, - int protocol, assuan_fd_t filedes[2]) - { -+#ifndef __serenity__ - return socketpair (namespace, style, protocol, filedes); -+#else -+ errno = ENOTSUP; -+ return -1; -+#endif - } - - -- cgit v1.2.3