Browse Source

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.
tags/n3.4
Clément Bœsch Clément Bœsch 7 years ago
parent
commit
b7fbb3516a
1 changed files with 3 additions and 2 deletions
  1. +3
    -2
      configure

+ 3
- 2
configure View File

@@ -213,6 +213,7 @@ External library support:
--enable-gnutls enable gnutls, needed for https support --enable-gnutls enable gnutls, needed for https support
if openssl is not used [no] if openssl is not used [no]
--disable-iconv disable iconv [autodetect] --disable-iconv disable iconv [autodetect]
--disable-jack disable libjack support [autodetect]
--enable-jni enable JNI support [no] --enable-jni enable JNI support [no]
--enable-ladspa enable LADSPA audio filtering [no] --enable-ladspa enable LADSPA audio filtering [no]
--enable-libass enable libass subtitles rendering, --enable-libass enable libass subtitles rendering,
@@ -1485,6 +1486,7 @@ EXTERNAL_AUTODETECT_LIBRARY_LIST="
alsa alsa
bzlib bzlib
iconv iconv
jack
libxcb libxcb
libxcb_shm libxcb_shm
libxcb_shape libxcb_shape
@@ -2064,7 +2066,6 @@ HAVE_LIST="
$TYPES_LIST $TYPES_LIST
atomics_native atomics_native
dos_paths dos_paths
jack
libc_msvcrt libc_msvcrt
makeinfo makeinfo
makeinfo_html makeinfo_html
@@ -6115,7 +6116,7 @@ check_header soundcard.h


enabled alsa && 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 &&
enabled jack && check_lib jack jack/jack.h jack_client_open -ljack &&
check_func jack_port_get_latency_range -ljack check_func jack_port_get_latency_range -ljack


enabled_any sndio_indev sndio_outdev && check_lib sndio sndio.h sio_open -lsndio enabled_any sndio_indev sndio_outdev && check_lib sndio sndio.h sio_open -lsndio


Loading…
Cancel
Save