diff options
author | Clément Bœsch <cboesch@gopro.com> | 2017-08-30 13:34:50 +0200 |
---|---|---|
committer | Clément Bœsch <u@pkh.me> | 2017-09-02 16:14:15 +0200 |
commit | b7fbb3516a99ebfa511143bdd8f63d8bd0d89385 (patch) | |
tree | f4f63a66275343cdce37a6c5315fab251c24ffcd | |
parent | b447629093d75f18d0a8fc44ec768022322b2182 (diff) | |
download | ffmpeg-b7fbb3516a99ebfa511143bdd8f63d8bd0d89385.tar.gz |
build: make jack part of the autodetected libraries
jack is already autodetected, this commit makes sure
--disable-autodetect actually disable it unless --enable-jack is
specified.
-rwxr-xr-x | configure | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -213,6 +213,7 @@ External library support: --enable-gnutls enable gnutls, needed for https support if openssl is not used [no] --disable-iconv disable iconv [autodetect] + --disable-jack disable libjack support [autodetect] --enable-jni enable JNI support [no] --enable-ladspa enable LADSPA audio filtering [no] --enable-libass enable libass subtitles rendering, @@ -1485,6 +1486,7 @@ EXTERNAL_AUTODETECT_LIBRARY_LIST=" alsa bzlib iconv + jack libxcb libxcb_shm libxcb_shape @@ -2064,7 +2066,6 @@ HAVE_LIST=" $TYPES_LIST atomics_native dos_paths - jack libc_msvcrt makeinfo makeinfo_html @@ -6115,7 +6116,7 @@ check_header soundcard.h 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 && +enabled jack && check_lib jack jack/jack.h jack_client_open -ljack && check_func jack_port_get_latency_range -ljack enabled_any sndio_indev sndio_outdev && check_lib sndio sndio.h sio_open -lsndio |