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 35D26138334 for ; Tue, 13 Nov 2018 10:00:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E5C5EE096F; Tue, 13 Nov 2018 10:00:49 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 ADEB0E096F for ; Tue, 13 Nov 2018 10:00:49 +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 17452335CF4 for ; Tue, 13 Nov 2018 10:00:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 41A7944F for ; Tue, 13 Nov 2018 10:00:44 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1542103221.1a4c261796cd34423633d99a4c593763204185a3.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/x265/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/x265/files/non_x86.patch X-VCS-Directories: media-libs/x265/files/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 1a4c261796cd34423633d99a4c593763204185a3 X-VCS-Branch: master Date: Tue, 13 Nov 2018 10:00:44 +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: 7ab6f65c-1e4e-413a-91af-27bff05a6d04 X-Archives-Hash: 6d38c869f8613d630d735792451bedd4 commit: 1a4c261796cd34423633d99a4c593763204185a3 Author: Andreas Sturmlechner gentoo org> AuthorDate: Tue Nov 13 10:00:21 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Tue Nov 13 10:00:21 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a4c2617 media-libs/x265: Restore non_x86.patch Package-Manager: Portage-2.3.51, Repoman-2.3.12 Signed-off-by: Andreas Sturmlechner gentoo.org> media-libs/x265/files/non_x86.patch | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/media-libs/x265/files/non_x86.patch b/media-libs/x265/files/non_x86.patch new file mode 100644 index 00000000000..3c7e389329a --- /dev/null +++ b/media-libs/x265/files/non_x86.patch @@ -0,0 +1,20 @@ +# HG changeset patch +# User Jayashree +# Date 1527224165 -19800 +# Fri May 25 10:26:05 2018 +0530 +# Node ID 4504219210793536d921ee4e0b3058698c630bf4 +# Parent cc2c5e46f3c87d27e3602af30b06ba6a0fbe2704 +Fix build error on on ppc64le + +diff -r cc2c5e46f3c8 -r 450421921079 source/common/param.cpp +--- a/source/common/param.cpp Mon May 21 18:42:29 2018 +0530 ++++ b/source/common/param.cpp Fri May 25 10:26:05 2018 +0530 +@@ -633,7 +633,7 @@ + if (bValueWasNull) + p->cpuid = atobool(value); + else +- p->cpuid = parseCpuName(value, bError); ++ p->cpuid = parseCpuName(value, bError, false); + #endif + } + OPT("fps")