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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2FEEA158064 for ; Sat, 11 May 2024 01:42:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4293BE29B5; Sat, 11 May 2024 01:42:50 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 17DD5E29B5 for ; Sat, 11 May 2024 01:42:50 +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 08B0F33E3A9 for ; Sat, 11 May 2024 01:42:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1ADD51830 for ; Sat, 11 May 2024 01:42:47 +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: <1715391211.0c3d907220cac2892ac156a9257866f36a944e1d.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/perl/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/perl/perl-5.38.2-r2.ebuild dev-lang/perl/perl-5.38.2-r3.ebuild dev-lang/perl/perl-5.38.2-r4.ebuild X-VCS-Directories: dev-lang/perl/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 0c3d907220cac2892ac156a9257866f36a944e1d X-VCS-Branch: master Date: Sat, 11 May 2024 01:42:47 +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: a789316a-a6a3-4a2d-994b-129b348e6e77 X-Archives-Hash: e2333af24f403d77d4947eaef2ed01e7 commit: 0c3d907220cac2892ac156a9257866f36a944e1d Author: Sam James gentoo org> AuthorDate: Sat May 11 01:33:31 2024 +0000 Commit: Sam James gentoo org> CommitDate: Sat May 11 01:33:31 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c3d9072 dev-lang/perl: fix -Wimplicit-int in prefix check -Wimplicit-int becomes an error by default in newer compilers. Signed-off-by: Sam James gentoo.org> dev-lang/perl/perl-5.38.2-r2.ebuild | 2 +- dev-lang/perl/perl-5.38.2-r3.ebuild | 2 +- dev-lang/perl/perl-5.38.2-r4.ebuild | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dev-lang/perl/perl-5.38.2-r2.ebuild b/dev-lang/perl/perl-5.38.2-r2.ebuild index a6120f17e34e..3f586f1612f2 100644 --- a/dev-lang/perl/perl-5.38.2-r2.ebuild +++ b/dev-lang/perl/perl-5.38.2-r2.ebuild @@ -650,7 +650,7 @@ src_configure() { if use prefix ; then # Set a hook to check for each detected library whether it actually works. export libscheck=" - ( echo 'main(){}' > '${T}'/conftest.c && + ( echo 'int main(){}' > '${T}'/conftest.c && $(tc-getCC) -o '${T}'/conftest '${T}'/conftest.c -l\$thislib >/dev/null 2>/dev/null ) || xxx=/dev/null" diff --git a/dev-lang/perl/perl-5.38.2-r3.ebuild b/dev-lang/perl/perl-5.38.2-r3.ebuild index 025d3b8ae213..56925312ea9f 100644 --- a/dev-lang/perl/perl-5.38.2-r3.ebuild +++ b/dev-lang/perl/perl-5.38.2-r3.ebuild @@ -680,7 +680,7 @@ src_configure() { if use prefix ; then # Set a hook to check for each detected library whether it actually works. export libscheck=" - ( echo 'main(){}' > '${T}'/conftest.c && + ( echo 'int main(){}' > '${T}'/conftest.c && $(tc-getCC) -o '${T}'/conftest '${T}'/conftest.c -l\$thislib >/dev/null 2>/dev/null ) || xxx=/dev/null" diff --git a/dev-lang/perl/perl-5.38.2-r4.ebuild b/dev-lang/perl/perl-5.38.2-r4.ebuild index 64babaaa08fb..736657d7a501 100644 --- a/dev-lang/perl/perl-5.38.2-r4.ebuild +++ b/dev-lang/perl/perl-5.38.2-r4.ebuild @@ -680,7 +680,7 @@ src_configure() { if use prefix ; then # Set a hook to check for each detected library whether it actually works. export libscheck=" - ( echo 'main(){}' > '${T}'/conftest.c && + ( echo 'int main(){}' > '${T}'/conftest.c && $(tc-getCC) -o '${T}'/conftest '${T}'/conftest.c -l\$thislib >/dev/null 2>/dev/null ) || xxx=/dev/null"