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 37038158041 for ; Sun, 10 Mar 2024 17:54:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7DD52E2A3D; Sun, 10 Mar 2024 17:54:54 +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 5D3D7E2A3D for ; Sun, 10 Mar 2024 17:54:54 +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 6B14633BF28 for ; Sun, 10 Mar 2024 17:54:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B9C391384 for ; Sun, 10 Mar 2024 17:54:51 +0000 (UTC) From: "Guilherme Amadio" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Guilherme Amadio" Message-ID: <1710093215.95ac3cc2e868f2f724a2c66adc5849cea2b99e35.amadio@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/pacparser/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/pacparser/pacparser-1.4.2.ebuild X-VCS-Directories: net-libs/pacparser/ X-VCS-Committer: amadio X-VCS-Committer-Name: Guilherme Amadio X-VCS-Revision: 95ac3cc2e868f2f724a2c66adc5849cea2b99e35 X-VCS-Branch: master Date: Sun, 10 Mar 2024 17:54:51 +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: 2ec1fcec-abf6-4690-a3c4-c259dc720fb3 X-Archives-Hash: 93009236b6e18fd37b10dabf9e0ffb9c commit: 95ac3cc2e868f2f724a2c66adc5849cea2b99e35 Author: Guilherme Amadio gentoo org> AuthorDate: Sun Mar 10 17:53:35 2024 +0000 Commit: Guilherme Amadio gentoo org> CommitDate: Sun Mar 10 17:53:35 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95ac3cc2 net-libs/pacparser: fix compilation with GCC 14, bug 919375 Closes: https://bugs.gentoo.org/919375 Signed-off-by: Guilherme Amadio gentoo.org> net-libs/pacparser/pacparser-1.4.2.ebuild | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/net-libs/pacparser/pacparser-1.4.2.ebuild b/net-libs/pacparser/pacparser-1.4.2.ebuild index e3cd424765ae..87e64cf6c25f 100644 --- a/net-libs/pacparser/pacparser-1.4.2.ebuild +++ b/net-libs/pacparser/pacparser-1.4.2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -27,6 +27,8 @@ REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" src_prepare() { default + sed -e 's/^SMCFLAGS.*/SMCFLAGS = -DHAVE_VA_COPY -DVA_COPY=va_copy -DHAVE_VA_LIST_AS_ARRAY/' \ + -i src/Makefile || die sed -e '/CC = gcc/d' \ -i src/spidermonkey/js/src/config/Linux_All.mk || die @@ -37,8 +39,7 @@ src_prepare() { src_compile() { # Upstream parallel compilation bug, do that first to work around - emake -C src/spidermonkey - emake -C src + emake -C src -j1 use python && python_foreach_impl emake -C src pymod }