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 66BA5138334 for ; Sat, 4 Aug 2018 13:10:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4E624E07D1; Sat, 4 Aug 2018 13:10:14 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 1C17DE07D1 for ; Sat, 4 Aug 2018 13:10:14 +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 96840335CC9 for ; Sat, 4 Aug 2018 13:09:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6EFA0380 for ; Sat, 4 Aug 2018 13:09:57 +0000 (UTC) From: "Akinori Hattori" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Akinori Hattori" Message-ID: <1533388168.a6b6eb5227c85e07ce6c47ad71d5188e08447a96.hattya@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-i18n/uim/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-i18n/uim/uim-1.8.8.ebuild X-VCS-Directories: app-i18n/uim/ X-VCS-Committer: hattya X-VCS-Committer-Name: Akinori Hattori X-VCS-Revision: a6b6eb5227c85e07ce6c47ad71d5188e08447a96 X-VCS-Branch: master Date: Sat, 4 Aug 2018 13:09:57 +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-Archives-Salt: 26d74643-0a96-4e06-baa4-06dbe80dd337 X-Archives-Hash: ec6b7d42d61ad4453184f96ba7fe3018 commit: a6b6eb5227c85e07ce6c47ad71d5188e08447a96 Author: Akinori Hattori gentoo org> AuthorDate: Sat Aug 4 13:08:04 2018 +0000 Commit: Akinori Hattori gentoo org> CommitDate: Sat Aug 4 13:09:28 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6b6eb52 app-i18n/uim: fix build on x86 Closes: https://bugs.gentoo.org/661806 Package-Manager: Portage-2.3.40, Repoman-2.3.9 app-i18n/uim/uim-1.8.8.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app-i18n/uim/uim-1.8.8.ebuild b/app-i18n/uim/uim-1.8.8.ebuild index fc0e9ef744e..f7bb3ff0158 100644 --- a/app-i18n/uim/uim-1.8.8.ebuild +++ b/app-i18n/uim/uim-1.8.8.ebuild @@ -3,7 +3,7 @@ EAPI="6" -inherit autotools elisp-common gnome2-utils +inherit autotools elisp-common flag-o-matic gnome2-utils DESCRIPTION="A multilingual input method framework" HOMEPAGE="https://github.com/uim/uim" @@ -95,6 +95,8 @@ src_prepare() { sed -i "s:\$libedit_path/lib:/$(get_libdir):g" configure.ac # fix build with >=dev-scheme/chicken-4, bug #656852 touch scm/json-parser-expanded.scm + # fix build with "-march=pentium4 -O2", bug #661806 + is-flagq "-march=pentium4?" && append-cflags $(test-flags-CC -fno-inline-small-functions) eautoreconf }