From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 finch.gentoo.org (Postfix) with ESMTPS id 3097A1582EF for ; Mon, 10 Mar 2025 16:57:32 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (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) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 15BC6342FE3 for ; Mon, 10 Mar 2025 16:57:32 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 10ED111037F; Mon, 10 Mar 2025 16:57: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) server-digest SHA256) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 04F8411037F for ; Mon, 10 Mar 2025 16:57: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 AEBDE34302E for ; Mon, 10 Mar 2025 16:57:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 12FA7122C for ; Mon, 10 Mar 2025 16:57:29 +0000 (UTC) From: "Daniel Pielmeier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Daniel Pielmeier" Message-ID: <1741625813.4ea6bbc3fa2bdb3de0c9ab4e06bcd82be54cb5d1.billie@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/aqualung/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/aqualung/files/aqualung-2.0-configure.patch X-VCS-Directories: media-sound/aqualung/files/ X-VCS-Committer: billie X-VCS-Committer-Name: Daniel Pielmeier X-VCS-Revision: 4ea6bbc3fa2bdb3de0c9ab4e06bcd82be54cb5d1 X-VCS-Branch: master Date: Mon, 10 Mar 2025 16:57:29 +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: 86f7a165-3b6f-4885-a95d-8a5964fcff03 X-Archives-Hash: 9e9ff44f436ad6abfd8a06ca4355fe6d commit: 4ea6bbc3fa2bdb3de0c9ab4e06bcd82be54cb5d1 Author: Daniel Pielmeier gentoo org> AuthorDate: Mon Mar 10 16:56:53 2025 +0000 Commit: Daniel Pielmeier gentoo org> CommitDate: Mon Mar 10 16:56:53 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ea6bbc3 media-sound/aqualung: Add missing patch Closes: https://bugs.gentoo.org/951105 Signed-off-by: Daniel Pielmeier gentoo.org> .../aqualung/files/aqualung-2.0-configure.patch | 23 ++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/media-sound/aqualung/files/aqualung-2.0-configure.patch b/media-sound/aqualung/files/aqualung-2.0-configure.patch new file mode 100644 index 000000000000..6022b1c0f929 --- /dev/null +++ b/media-sound/aqualung/files/aqualung-2.0-configure.patch @@ -0,0 +1,23 @@ +From ecb4cd11d6eefaf8b4a97d837a986623bcff653a Mon Sep 17 00:00:00 2001 +From: Daniel Pielmeier +Date: Sun, 9 Mar 2025 14:01:28 +0100 +Subject: [PATCH] Fix typo in configure.ac + +The platform defines added in commit 8e62717 introduced an unnecessary comma which results in a configure warning. +--- + configure.ac | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/configure.ac b/configure.ac +index 8113679..dac7b39 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -270,7 +270,7 @@ AQUALUNG_DETECT([lavc], [Libav / FFmpeg], + AQUALUNG_DETECT([MAC], [Monkey's Audio Codec], + [AC_CHECK_LIB([MAC], [CreateIAPEDecompress], + [ +- AQUALUNG_FOUND([MAC], [-lMAC -lstdc++]), ++ AQUALUNG_FOUND([MAC], [-lMAC -lstdc++]) + AS_CASE([$host_os], + [cygwin*|mingw*], [AC_DEFINE([PLATFORM_WINDOWS], [1], [Defined if Windows])], + [darwin*], [AC_DEFINE([PLATFORM_DARWIN], [1], [Defined if Darwin])],