[FFmpeg-cvslog] configure: use pkg-config for sndio
Brad Smith
git at videolan.org
Mon Sep 2 04:17:14 EEST 2024
ffmpeg | branch: release/4.3 | Brad Smith <brad at comstyle.com> | Fri Oct 29 16:41:27 2021 -0400| [b9a187b164162ac732be99c7b94a0543dee85101] | committer: Brad Smith
configure: use pkg-config for sndio
(cherry picked from commit bb813ccb458ea64a68feebcdfa76504fd6969f52)
Signed-off-by: Brad Smith <brad at comstyle.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=b9a187b164162ac732be99c7b94a0543dee85101
---
configure | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/configure b/configure
index b111033590..212f48c4b8 100755
--- a/configure
+++ b/configure
@@ -6590,7 +6590,8 @@ 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_lib sndio sndio.h sio_open -lsndio
+enabled sndio && { check_pkg_config sndio sndio "sndio.h" sio_open ||
+ check_lib sndio sndio.h sio_open -lsndio; }
if enabled libcdio; then
check_pkg_config libcdio libcdio_paranoia "cdio/cdda.h cdio/paranoia.h" cdio_cddap_open ||
More information about the ffmpeg-cvslog
mailing list