summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorClément Bœsch <cboesch@gopro.com>2017-08-30 13:28:49 +0200
committerClément Bœsch <u@pkh.me>2017-09-02 16:14:15 +0200
commitb447629093d75f18d0a8fc44ec768022322b2182 (patch)
tree172085b5fea7ded7c8caa93a79158881c2837b71 /configure
parentfe9c85e4e2650dc9537b54b1eabb4f9be7b628ed (diff)
build: make alsa part of the autodetected libraries
alsa libs are already autodetected, this commit makes sure --disable-autodetect actually disable it unless --enable-alsa is specified.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure b/configure
index 7c2a196585..9e9fbf29a4 100755
--- a/configure
+++ b/configure
@@ -201,6 +201,7 @@ External library support:
Also note that the following help text describes the purpose of the libraries
themselves, not all their features will necessarily be usable by FFmpeg.
+ --disable-alsa disable ALSA support [autodetect]
--enable-avisynth enable reading of AviSynth script files [no]
--disable-bzlib disable bzlib [autodetect]
--enable-chromaprint enable audio fingerprinting with chromaprint [no]
@@ -1481,6 +1482,7 @@ EXAMPLE_LIST="
transcoding_example
"
EXTERNAL_AUTODETECT_LIBRARY_LIST="
+ alsa
bzlib
iconv
libxcb
@@ -2060,7 +2062,6 @@ HAVE_LIST="
$THREADS_LIST
$TOOLCHAIN_FEATURES
$TYPES_LIST
- alsa
atomics_native
dos_paths
jack
@@ -6112,8 +6113,7 @@ EOF
fi
check_header soundcard.h
-enabled_any alsa_indev alsa_outdev &&
- check_lib alsa alsa/asoundlib.h snd_pcm_htimestamp -lasound
+enabled alsa && check_lib alsa alsa/asoundlib.h snd_pcm_htimestamp -lasound
enabled jack_indev && check_lib jack jack/jack.h jack_client_open -ljack &&
check_func jack_port_get_latency_range -ljack