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 DA6A44675F for ; Sat, 17 Jun 2023 01:10:31 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 5CC3068C332; Sat, 17 Jun 2023 04:10:28 +0300 (EEST) Received: from mail.comstyle.com (speedy.comstyle.com [206.51.28.2]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 654FA68C068 for ; Sat, 17 Jun 2023 04:10:22 +0300 (EEST) Received: from mail.comstyle.com (localhost [127.0.0.1]) by mail.comstyle.com (Postfix) with ESMTP id 4QjdHc6KnTz8PbP for ; Fri, 16 Jun 2023 21:10:20 -0400 (EDT) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=comstyle.com; h=date:from :to:subject:message-id:mime-version:content-type; s=default; bh= fXHRm8FCTUeXmQ0q0KxKZOMF8VQ=; b=L1VEiRKimQRt1ZHFQ9cOMl+HZMQaDQmW aKfFUQLAuCGtDBEyqYd8/sQwWVsBId45iPzK1lazNRltAHIcdHrJLgfDu57y2n5G xal2GY/HTKelm6zp1QHqSm0r4RtU02QCTUuS8HMVuTZPQ8QHMgzFn6Ue9F+FVcLn 9AdRS9/NHUE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=comstyle.com; h=date:from:to :subject:message-id:mime-version:content-type; q=dns; s=default; b= VBPv65TrZWykDEH85PRkQyHLr3biud/9miqNMASfpf8jPt4OS1E1sDm8Y2nHZY66 gWxBBFwUuEI4JRzh+OTtMp9bt3N1vbv5MOOmGVegP/0pM/swhFEUoQ6/ty0APeyq xQbfYgl6cMP/eVjyWHfZqklHLWCmOkqgLEsuP819xzM= Received: from humpty.home.comstyle.com (unknown [IPv6:2001:470:b050:3:73d6:6b94:be86:92c4]) (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 4QjdHc5nflz8PbN for ; Fri, 16 Jun 2023 21:10:20 -0400 (EDT) Date: Fri, 16 Jun 2023 21:10:19 -0400 From: Brad Smith To: ffmpeg-devel@ffmpeg.org Message-ID: MIME-Version: 1.0 Content-Disposition: inline Subject: [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: --- configure | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/configure b/configure index 0c77d8e1fe..653aafb1ea 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 && require_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".