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 6FD7C158094 for ; Thu, 30 Jun 2022 22:49:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A51B2E0CBC; Thu, 30 Jun 2022 22:49:56 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 pigeon.gentoo.org (Postfix) with ESMTPS id 86144E0CBC for ; Thu, 30 Jun 2022 22:49:56 +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 77D253417D9 for ; Thu, 30 Jun 2022 22:49:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CBDA04ED for ; Thu, 30 Jun 2022 22:49:53 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1656629380.6d394bba10e836b03681a3e8458896f1f454221a.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libtasn1/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libtasn1/libtasn1-4.18.0.ebuild X-VCS-Directories: dev-libs/libtasn1/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 6d394bba10e836b03681a3e8458896f1f454221a X-VCS-Branch: master Date: Thu, 30 Jun 2022 22:49:53 +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: e3d4d437-1da5-4856-9ba6-954990cd88c8 X-Archives-Hash: 24b2671f78c0595939270c122da6ba2d commit: 6d394bba10e836b03681a3e8458896f1f454221a Author: Sam James gentoo org> AuthorDate: Thu Jun 30 22:49:23 2022 +0000 Commit: Sam James gentoo org> CommitDate: Thu Jun 30 22:49:40 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d394bba dev-libs/libtasn1: disable fanalyzer Slows down build and we don't need it. Signed-off-by: Sam James gentoo.org> dev-libs/libtasn1/libtasn1-4.18.0.ebuild | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/dev-libs/libtasn1/libtasn1-4.18.0.ebuild b/dev-libs/libtasn1/libtasn1-4.18.0.ebuild index 7138eb6e7263..f6bf3c887b59 100644 --- a/dev-libs/libtasn1/libtasn1-4.18.0.ebuild +++ b/dev-libs/libtasn1/libtasn1-4.18.0.ebuild @@ -34,10 +34,16 @@ src_prepare() { } multilib_src_configure() { + # -fanalyzer substantially slows down the build and isn't useful for + # us. It's useful for upstream as it's static analysis, but it's not + # useful when just getting something built. + export gl_cv_warn_c__fanalyzer=no + local myeconfargs=( $(use_enable static-libs static) $(multilib_native_use_enable valgrind valgrind-tests) ) + ECONF_SOURCE="${S}" econf "${myeconfargs[@]}" }