diff options
author | Jun Zhao <barryjzhao@tencent.com> | 2019-09-04 17:27:09 +0800 |
---|---|---|
committer | Jun Zhao <barryjzhao@tencent.com> | 2019-09-05 18:54:53 +0800 |
commit | da6e569916628c38e7ddd2609e53bd619b3602cf (patch) | |
tree | b077d4d5635973718589ee19477c4fc498ee6b38 /configure | |
parent | a2dbd857333b480c383cc1531ff3b0260636b45e (diff) | |
download | ffmpeg-streaming-da6e569916628c38e7ddd2609e53bd619b3602cf.zip ffmpeg-streaming-da6e569916628c38e7ddd2609e53bd619b3602cf.tar.gz |
configure: fix --disable-alsa can't work
fix --disable-alsa can't work in configure
Signed-off-by: Jun Zhao <barryjzhao@tencent.com>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -6486,8 +6486,8 @@ else EOF fi -enabled alsa && check_pkg_config alsa alsa "alsa/asoundlib.h" snd_pcm_htimestamp || - check_lib alsa alsa/asoundlib.h snd_pcm_htimestamp -lasound +enabled alsa && { check_pkg_config alsa alsa "alsa/asoundlib.h" snd_pcm_htimestamp || + check_lib alsa alsa/asoundlib.h snd_pcm_htimestamp -lasound; } enabled libjack && require_pkg_config libjack jack jack/jack.h jack_port_get_latency_range |