From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B9C3E1382C5 for ; Sat, 28 Nov 2020 23:10:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 542FDE0877; Sat, 28 Nov 2020 23:10:10 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3D4F1E0877 for ; Sat, 28 Nov 2020 23:10:10 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A290E340E3A for ; Sat, 28 Nov 2020 23:10:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0F49B473 for ; Sat, 28 Nov 2020 23:10:00 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1606604926.a45dfd34d2a5ccb5a07a968a475b656b743f992e.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-i18n/uim/files/, app-i18n/uim/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-i18n/uim/files/uim-1.8.8-fno-common.patch app-i18n/uim/uim-1.8.8.ebuild X-VCS-Directories: app-i18n/uim/files/ app-i18n/uim/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: a45dfd34d2a5ccb5a07a968a475b656b743f992e X-VCS-Branch: master Date: Sat, 28 Nov 2020 23:10:00 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 4ea862cd-9c02-4416-b156-3f99a54f526a X-Archives-Hash: d29b32851afb194096562934c076062a commit: a45dfd34d2a5ccb5a07a968a475b656b743f992e Author: Jakov Smolic sartura hr> AuthorDate: Sat Nov 28 23:08:46 2020 +0000 Commit: David Seifert gentoo org> CommitDate: Sat Nov 28 23:08:46 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a45dfd34 app-i18n/uim: fix build with gcc-10 * Thanks to Jeroen Roovers for submitting the patch Closes: https://bugs.gentoo.org/706968 Package-Manager: Portage-3.0.9, Repoman-3.0.1 Signed-off-by: Jakov Smolic sartura.hr> Signed-off-by: David Seifert gentoo.org> app-i18n/uim/files/uim-1.8.8-fno-common.patch | 11 +++++++++++ app-i18n/uim/uim-1.8.8.ebuild | 1 + 2 files changed, 12 insertions(+) diff --git a/app-i18n/uim/files/uim-1.8.8-fno-common.patch b/app-i18n/uim/files/uim-1.8.8-fno-common.patch new file mode 100644 index 00000000000..ff974bb5d5b --- /dev/null +++ b/app-i18n/uim/files/uim-1.8.8-fno-common.patch @@ -0,0 +1,11 @@ +--- a/sigscheme/libgcroots/include/private/gc_priv.h ++++ b/sigscheme/libgcroots/include/private/gc_priv.h +@@ -1979,7 +1979,7 @@ + /* the signal mask. */ + # define SETJMP(env) sigsetjmp(env, 1) + # define LONGJMP(env, val) siglongjmp(env, val) +-# define JMP_BUF sigjmp_buf ++# define JMP_BUF extern sigjmp_buf + #else + # ifdef ECOS + # define SETJMP(env) hal_setjmp(env) diff --git a/app-i18n/uim/uim-1.8.8.ebuild b/app-i18n/uim/uim-1.8.8.ebuild index 412b439ce31..3ed23be0370 100644 --- a/app-i18n/uim/uim-1.8.8.ebuild +++ b/app-i18n/uim/uim-1.8.8.ebuild @@ -84,6 +84,7 @@ PATCHES=( "${FILESDIR}"/${PN}-tinfo.patch "${FILESDIR}"/${PN}-xkb.patch "${FILESDIR}"/${PN}-zh-TW.patch + "${FILESDIR}"/${P}-fno-common.patch ) DOCS=( AUTHORS NEWS README RELNOTE doc )