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 5B0BE46794 for ; Sat, 17 Jun 2023 22:48:52 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 5201F68BF2A; Sun, 18 Jun 2023 01:48:49 +0300 (EEST) Received: from mail.comstyle.com (speedy.comstyle.com [206.51.28.2]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 6690468BEC6 for ; Sun, 18 Jun 2023 01:48:42 +0300 (EEST) Received: from mail.comstyle.com (localhost [127.0.0.1]) by mail.comstyle.com (Postfix) with ESMTP id 4QkB5h672pz8PbP for ; Sat, 17 Jun 2023 18:48:40 -0400 (EDT) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=comstyle.com; h=date:from :to:subject:message-id:references:mime-version:content-type :in-reply-to; s=default; bh=GOv/vDs68TiFEKysNQ48ZkydOXU=; b=qL0O vn3JBt7+9g3SIRC4TU5mw3nCMKIQFoOo5QlVLLWS0rTZ8qAJYoTklDdjUfWhpe/0 +Fn5/JERYSz8cxKrnnQxauZ6uKTWiLjT2qtswRJROqvbZp0LylrkaefbuL+Wd9pG WUaRnHCc08xNVbqslVfQiIjtCCpEheLXBSUFb7U= DomainKey-Signature: a=rsa-sha1; c=nofws; d=comstyle.com; h=date:from:to :subject:message-id:references:mime-version:content-type :in-reply-to; q=dns; s=default; b=P86yptUWUT/Hk0YzRm394RR3xKzyIx urK6tTQpksfnVYaEpre2iAJA8d38QTW1plWhlD75HsY7apNCyEfRmxF6SrJDVLrA 93kotShzFJJunbajrvhteSJPObnrG91h7+AXixwheCoekiXWjxm+o2WfoiDF+UvV gydWG8K/x8fqc= Received: from humpty.home.comstyle.com (unknown [IPv6:2001:470:b050:3:9074:911b:b469:ccfa]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA512) (No client certificate requested) (Authenticated sender: brad) by mail.comstyle.com (Postfix) with ESMTPSA id 4QkB5h5X97z8PbN for ; Sat, 17 Jun 2023 18:48:40 -0400 (EDT) Date: Sat, 17 Jun 2023 18:48:38 -0400 From: Brad Smith To: FFmpeg development discussions and patches Message-ID: References: <20230617220114.GS1391451@pb2> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20230617220114.GS1391451@pb2> 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-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" Archived-At: List-Archive: List-Post: 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 || -- 2.41.0 _______________________________________________ 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".