From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from ffbox0-bg.mplayerhq.hu (ffbox0-bg.ffmpeg.org [79.124.17.100]) by master.gitmailbox.com (Postfix) with ESMTP id 4674844D79 for ; Fri, 23 Jun 2023 22:41:19 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 393C668C1A2; Sat, 24 Jun 2023 01:41:17 +0300 (EEST) Received: from mail.comstyle.com (unknown [206.51.28.2]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 3BF0768C09B for ; Sat, 24 Jun 2023 01:41:11 +0300 (EEST) Received: from mail.comstyle.com (localhost [127.0.0.1]) by mail.comstyle.com (Postfix) with ESMTP id 4QnsfF4yLhz8PbP for ; Fri, 23 Jun 2023 18:41:09 -0400 (EDT) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=comstyle.com; h=message-id :date:mime-version:subject:from:to:references:in-reply-to :content-type:content-transfer-encoding; s=default; bh=zLjDOMPoj x6G1+FSdga9sVqe7t4=; b=exf+9V+53A+vSKj08PPvWQnHPw7MZnBuJNmSVtrpg sD9ZIVJZubjr087du8OLVuVPUufXVnCBn12JnMYukmRJ9QW2DZ2TOKtOQWRxG2Ky 5j5v2rdNufwMPKwRkhZOKf0+Wh644nR1ptzL/o12Gu4in02N/NUfnAoUmNvuyQ1J Hw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=comstyle.com; h=message-id :date:mime-version:subject:from:to:references:in-reply-to :content-type:content-transfer-encoding; q=dns; s=default; b=PjE TpLoR4KLliPROMp3FqiM/qZ9JO5Np6gxTrOIVcvIFhYB/A6FRLA5Zguqc4RrwEq+ dLSPv37BvecXLRdkHdC2yO144WP8ej2A0iItlQAAFhPedVdLhw1Xo0Mc0cWen+h4 EcILDv1HV3w25lp9w8erfmTswVSF7mV7jolw9e5M= Received: from [IPV6:2001:470:b050:6:a0d2:d80a:1836:1385] (unknown [IPv6:2001:470:b050:6:a0d2:d80a:1836:1385]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) (Authenticated sender: brad) by mail.comstyle.com (Postfix) with ESMTPSA id 4QnsfF286Qz8PbN for ; Fri, 23 Jun 2023 18:41:09 -0400 (EDT) Message-ID: <348d342e-93ae-3f2a-8cce-108b0bdae614@comstyle.com> Date: Fri, 23 Jun 2023 18:41:08 -0400 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Thunderbird/102.12.0 From: Brad Smith To: FFmpeg development discussions and patches References: <20230617220114.GS1391451@pb2> Content-Language: en-US In-Reply-To: Subject: Re: [FFmpeg-devel] [PATCH] configure: use just the pkg-config for sndio X-BeenThere: ffmpeg-devel@ffmpeg.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: FFmpeg development discussions and patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: FFmpeg development discussions and patches Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="us-ascii"; Format="flowed" Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" Archived-At: List-Archive: List-Post: ping. On 2023-06-17 6:48 p.m., Brad Smith wrote: > On Sun, Jun 18, 2023 at 12:01:14AM +0200, Michael Niedermayer wrote: >> this breaks a plain configure >> here on ubuntu >> >> ./configure >> ERROR: sndio not found using pkg-config >> >> If you think configure made a mistake, make sure you are using the latest >> version from Git. If the latest version fails, report the problem to the >> ffmpeg-user@ffmpeg.org mailing list or IRC #ffmpeg on irc.libera.chat. >> Include the log file "ffbuild/config.log" produced by configure as this will help >> solve the problem. >> >> >> >> [...] >> -- >> Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB >> >> The misfortune of the wise is better than the prosperity of the fool. >> -- Epicurus > > This is what I had intended. > > --- > configure | 3 +-- > 1 file changed, 1 insertion(+), 2 deletions(-) > > diff --git a/configure b/configure > index 0c77d8e1fe..2069bf8a37 100755 > --- a/configure > +++ b/configure > @@ -7009,8 +7009,7 @@ enabled alsa && { check_pkg_config alsa alsa "alsa/asoundlib.h" snd_pcm_htimesta > enabled libjack && > require_pkg_config libjack jack jack/jack.h jack_port_get_latency_range > > -enabled sndio && { check_pkg_config sndio sndio "sndio.h" sio_open || > - check_lib sndio sndio.h sio_open -lsndio; } > +enabled sndio && check_pkg_config sndio sndio sndio.h sio_open > > if enabled libcdio; then > check_pkg_config libcdio libcdio_paranoia "cdio/cdda.h cdio/paranoia.h" cdio_cddap_open || _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".