pkgsrc-WIP-changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

webkit-gtk60: remove unneeded patch



Module Name:	pkgsrc-wip
Committed By:	Thomas Klausner <wiz%NetBSD.org@localhost>
Pushed By:	wiz
Date:		Tue Aug 25 11:57:30 2026 +0200
Changeset:	a1da22c6158323e9cf8cc01b0c67d54d193f0342

Modified Files:
	webkit-gtk60/distinfo
Removed Files:
	webkit-gtk60/patches/patch-Source_WebKit_Platform_IPC_glib_ConnectionGLib.cpp

Log Message:
webkit-gtk60: remove unneeded patch

limit is 8k, messages are 4k max

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=a1da22c6158323e9cf8cc01b0c67d54d193f0342

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

diffstat:
 webkit-gtk60/distinfo                              |  1 -
 ...rce_WebKit_Platform_IPC_glib_ConnectionGLib.cpp | 24 ----------------------
 2 files changed, 25 deletions(-)

diffs:
diff --git a/webkit-gtk60/distinfo b/webkit-gtk60/distinfo
index ba1eb76bf3..7330db4b81 100644
--- a/webkit-gtk60/distinfo
+++ b/webkit-gtk60/distinfo
@@ -23,7 +23,6 @@ SHA1 (patch-Source_WebCore_platform_graphics_skia_PlatformDisplaySkia.cpp) = 86f
 SHA1 (patch-Source_WebCore_platform_graphics_x11_XErrorTrapper.h) = af91534c48bf86e91c7f1f04bbb3e7b228e0fbc0
 SHA1 (patch-Source_WebCore_rendering_RenderBox.h) = 88bcb40bef0331b7d3c095ec9d0daab0dcaac6c4
 SHA1 (patch-Source_WebCore_rendering_shapes_ShapeOutsideInfo.cpp) = ad3370c031b58778b069685a6bbdd038bc09b424
-SHA1 (patch-Source_WebKit_Platform_IPC_glib_ConnectionGLib.cpp) = 9e02aaacf57e2bae5bfc7a6524056ed752befbc3
 SHA1 (patch-Source_WebKit_UIProcess_Launcher_glib_ProcessLauncherGLib.cpp) = 45a215a2b7a913b6fba16ff91276e2c9779e06be
 SHA1 (patch-Source_WebKit_UIProcess_gtk_AcceleratedBackingStore.cpp) = e2022bdff272135ceb9894c7df52b62dba12879a
 SHA1 (patch-Source_WebKit_UIProcess_gtk_DisplayX11.cpp) = 627a532dd871a194360e964fedab5cc00347db88
diff --git a/webkit-gtk60/patches/patch-Source_WebKit_Platform_IPC_glib_ConnectionGLib.cpp b/webkit-gtk60/patches/patch-Source_WebKit_Platform_IPC_glib_ConnectionGLib.cpp
deleted file mode 100644
index fc9ba4e94b..0000000000
--- a/webkit-gtk60/patches/patch-Source_WebKit_Platform_IPC_glib_ConnectionGLib.cpp
+++ /dev/null
@@ -1,24 +0,0 @@
-$NetBSD$
-
-On NetBSD we see "Error sending IPC message: Message too long" due to
-the use of sendmsg with a large message body (EMSGSIZE).
-
-WebKit already uses shared memory to communicate the message body when
-the message is too large, so force it to always use this method to avoid
-encountering EMSGSIZE.
-
---- Source/WebKit/Platform/IPC/glib/ConnectionGLib.cpp.orig	2026-08-25 07:43:57.268996834 +0000
-+++ Source/WebKit/Platform/IPC/glib/ConnectionGLib.cpp
-@@ -343,8 +343,12 @@ bool Connection::sendOutgoingMessage(UniqueRef<Encoder
-         return false;
-     }
- 
-+#if !defined(__NetBSD__)
-     size_t messageSizeWithBodyInline = sizeof(MessageInfo) + (outputMessage.attachments().size() * sizeof(AttachmentInfo)) + outputMessage.bodySize();
-     if (messageSizeWithBodyInline > s_messageMaxSize && outputMessage.bodySize()) {
-+#else
-+    {
-+#endif
-         if (!outputMessage.setBodyOutOfLine())
-             return false;
-     }


Home | Main Index | Thread Index | Old Index