Received: by mail.netbsd.org (Postfix, from userid 605) id 5D64F850A8; Mon, 9 May 2022 12:26:31 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 9608F850A7 for ; Mon, 9 May 2022 12:26:30 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id nBM0m-OHp0BL for ; Mon, 9 May 2022 12:26:30 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 13D3C84E8F for ; Mon, 9 May 2022 12:26:30 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 15C55FA94; Mon, 9 May 2022 12:26:43 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_165209920396780" MIME-Version: 1.0 Date: Mon, 9 May 2022 12:26:43 +0000 From: "Jonathan Perkin" Subject: CVS commit: pkgsrc/x11/gnome-terminal To: pkgsrc-changes@NetBSD.org Reply-To: jperkin@netbsd.org X-Mailer: log_accum Message-Id: <20220509122643.15C55FA94@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_165209920396780 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jperkin Date: Mon May 9 12:26:43 UTC 2022 Modified Files: pkgsrc/x11/gnome-terminal: distinfo Added Files: pkgsrc/x11/gnome-terminal/patches: patch-src_terminal.c Log Message: gnome-terminal: Provide W_EXITCODE compat. To generate a diff of this commit: cvs rdiff -u -r1.25 -r1.26 pkgsrc/x11/gnome-terminal/distinfo cvs rdiff -u -r0 -r1.1 pkgsrc/x11/gnome-terminal/patches/patch-src_terminal.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_165209920396780 Content-Disposition: inline Content-Length: 1794 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/x11/gnome-terminal/distinfo diff -u pkgsrc/x11/gnome-terminal/distinfo:1.25 pkgsrc/x11/gnome-terminal/distinfo:1.26 --- pkgsrc/x11/gnome-terminal/distinfo:1.25 Tue Oct 26 11:33:50 2021 +++ pkgsrc/x11/gnome-terminal/distinfo Mon May 9 12:26:42 2022 @@ -1,7 +1,8 @@ -$NetBSD: distinfo,v 1.25 2021/10/26 11:33:50 nia Exp $ +$NetBSD: distinfo,v 1.26 2022/05/09 12:26:42 jperkin Exp $ BLAKE2s (gnome-terminal-3.36.2.tar.xz) = a29f77bb13b2b744ca4cf09cec50c6745d08a7753d0cded64a9b8965a2fc1c87 SHA512 (gnome-terminal-3.36.2.tar.xz) = 0d691452456dd495b812332f206b6f8a590f67d47a6afce582b2ff0587747c36cb1eaf249080c6a3c3540ef22a50628801165d6c17eeb1b821eea1e244f79a91 Size (gnome-terminal-3.36.2.tar.xz) = 2528492 bytes SHA1 (patch-src_server.c) = 5ebccc438850609336295122235ae28a9bdcc1f3 SHA1 (patch-src_terminal-util.c) = 2d70d288ccfac9b97447b6200b225213a9b14eaa +SHA1 (patch-src_terminal.c) = de257a944b5f43c5e385e72c039365306c0d37e6 Added files: Index: pkgsrc/x11/gnome-terminal/patches/patch-src_terminal.c diff -u /dev/null pkgsrc/x11/gnome-terminal/patches/patch-src_terminal.c:1.1 --- /dev/null Mon May 9 12:26:43 2022 +++ pkgsrc/x11/gnome-terminal/patches/patch-src_terminal.c Mon May 9 12:26:42 2022 @@ -0,0 +1,17 @@ +$NetBSD: patch-src_terminal.c,v 1.1 2022/05/09 12:26:42 jperkin Exp $ + +Provide W_EXITCODE compat. + +--- src/terminal.c.orig 2020-03-05 21:43:41.000000000 +0000 ++++ src/terminal.c +@@ -44,6 +44,10 @@ + #include "terminal-client-utils.h" + #include "terminal-libgsystem.h" + ++#ifndef W_EXITCODE ++#define W_EXITCODE(ret, sig) ((ret) << 8 | (sig)) ++#endif ++ + GS_DEFINE_CLEANUP_FUNCTION0(TerminalOptions*, gs_local_options_free, terminal_options_free) + #define gs_free_options __attribute__ ((cleanup(gs_local_options_free))) + --_----------=_165209920396780--