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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2DFCC158086 for ; Fri, 24 Dec 2021 07:01:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7FF582BC001; Fri, 24 Dec 2021 07:01:31 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 64E4D2BC001 for ; Fri, 24 Dec 2021 07:01:31 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5531C343010 for ; Fri, 24 Dec 2021 07:01:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A03D3239 for ; Fri, 24 Dec 2021 07:01:28 +0000 (UTC) From: "罗百科" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "罗百科" Message-ID: <1640329286.ee9b4eeb80cc48a3a03cda3b7e3f51639e2df195.patrick@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libaom/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libaom/libaom-3.2.0.ebuild media-libs/libaom/libaom-9999.ebuild X-VCS-Directories: media-libs/libaom/ X-VCS-Committer: patrick X-VCS-Committer-Name: 罗百科 X-VCS-Revision: ee9b4eeb80cc48a3a03cda3b7e3f51639e2df195 X-VCS-Branch: master Date: Fri, 24 Dec 2021 07:01:28 +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: 26778cef-21a0-4a56-ba45-0753c19c2052 X-Archives-Hash: f245f6de03c4bbd552b3a8f976a7497a commit: ee9b4eeb80cc48a3a03cda3b7e3f51639e2df195 Author: Patrick Lauer gentoo org> AuthorDate: Fri Dec 24 07:01:16 2021 +0000 Commit: 罗百科 gentoo org> CommitDate: Fri Dec 24 07:01:26 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee9b4eeb media-libs/libaom: Fix build CONFIG_TUNE_BUTTERAUGLI is used as a macro, setting it to OFF causes build failures as OFF is undefined - set it to 0 instead Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Patrick Lauer gentoo.org> media-libs/libaom/libaom-3.2.0.ebuild | 2 +- media-libs/libaom/libaom-9999.ebuild | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/media-libs/libaom/libaom-3.2.0.ebuild b/media-libs/libaom/libaom-3.2.0.ebuild index 9184fd8bca81..69bc7fc97fbd 100644 --- a/media-libs/libaom/libaom-3.2.0.ebuild +++ b/media-libs/libaom/libaom-3.2.0.ebuild @@ -52,7 +52,7 @@ multilib_src_configure() { -DENABLE_WERROR=OFF # Needs libjxl, currently unpackaged. - -DCONFIG_TUNE_BUTTERAUGLI=OFF + -DCONFIG_TUNE_BUTTERAUGLI=0 # neon support is assumed to be always enabled on arm64 -DENABLE_NEON=$(usex cpu_flags_arm_neon ON $(usex arm64 ON OFF)) diff --git a/media-libs/libaom/libaom-9999.ebuild b/media-libs/libaom/libaom-9999.ebuild index 9184fd8bca81..69bc7fc97fbd 100644 --- a/media-libs/libaom/libaom-9999.ebuild +++ b/media-libs/libaom/libaom-9999.ebuild @@ -52,7 +52,7 @@ multilib_src_configure() { -DENABLE_WERROR=OFF # Needs libjxl, currently unpackaged. - -DCONFIG_TUNE_BUTTERAUGLI=OFF + -DCONFIG_TUNE_BUTTERAUGLI=0 # neon support is assumed to be always enabled on arm64 -DENABLE_NEON=$(usex cpu_flags_arm_neon ON $(usex arm64 ON OFF))