From 10f4e822739e6331b40f1dcc2e3551614d0ab476 Mon Sep 17 00:00:00 2001 From: Yorick Hardy Date: Thu, 24 Dec 2020 09:38:59 +0200 Subject: [PATCH] luakit-git: remove patch, fixed upstream --- luakit-git/distinfo | 1 - luakit-git/patches/patch-common_ipc.c | 28 --------------------------- 2 files changed, 29 deletions(-) delete mode 100644 luakit-git/patches/patch-common_ipc.c diff --git a/luakit-git/distinfo b/luakit-git/distinfo index 892258c719..9876701df3 100644 --- a/luakit-git/distinfo +++ b/luakit-git/distinfo @@ -5,4 +5,3 @@ RMD160 (luakit/2aecefe95c99808121edbf3903c3947779f8c4d4-2aecefe95c99808121edbf39 SHA512 (luakit/2aecefe95c99808121edbf3903c3947779f8c4d4-2aecefe95c99808121edbf3903c3947779f8c4d4.zip) = f493fde91e87b8bd40f3a90b558c4d297ed31bc00e6924660a5c1fa55aa35bfd2eb7c8a6a7ea1d6b9ef7d095d358659d350ca92fbc6f654a9df9a1544ce30fdf Size (luakit/2aecefe95c99808121edbf3903c3947779f8c4d4-2aecefe95c99808121edbf3903c3947779f8c4d4.zip) = 518360 bytes SHA1 (patch-Makefile) = d45f31061ea5d5bcf5ed6d63fcea41590003e10b -SHA1 (patch-common_ipc.c) = 0b45f8ecacbf7f94fe6913826944afdf80279c9d diff --git a/luakit-git/patches/patch-common_ipc.c b/luakit-git/patches/patch-common_ipc.c deleted file mode 100644 index d03a0d8940..0000000000 --- a/luakit-git/patches/patch-common_ipc.c +++ /dev/null @@ -1,28 +0,0 @@ -$NetBSD$ - -Fix for #725: luakit get stuck and start using all the CPU when closing the last -tab when window.close_with_last_tab setting is false. - -From: - - - ---- common/ipc.c.orig 2020-07-21 22:24:57.000000000 +0000 -+++ common/ipc.c -@@ -21,6 +21,7 @@ - #include "common/lualib.h" - #include "common/luaserialize.h" - #include "common/ipc.h" -+#include "log.h" - - /* Prototypes for ipc_recv_... functions */ - #define X(name) void ipc_recv_##name(ipc_endpoint_t *ipc, const void *msg, guint length); -@@ -138,6 +139,8 @@ ipc_recv_and_dispatch_or_enqueue(ipc_end - case G_IO_STATUS_AGAIN: - return; - case G_IO_STATUS_EOF: -+ verbose("g_io_channel_read_chars(): End Of File received"); -+ g_atomic_int_dec_and_test(&ipc->refcount); - return; - case G_IO_STATUS_ERROR: - if (!g_str_equal(ipc->name, "UI"))