mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-04-24 17:12:34 +02:00
Merge commit 'bd805964f40f7af83da64645ba83d1e8060a1214'
* commit 'bd805964f40f7af83da64645ba83d1e8060a1214': configure: Do not treat JACK as a system library Merged-by: James Almer <jamrial@gmail.com>
This commit is contained in:
commit
a2a7b02fbd
12
configure
vendored
12
configure
vendored
@ -217,7 +217,6 @@ 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,
|
||||||
@ -238,6 +237,7 @@ External library support:
|
|||||||
--enable-libgsm enable GSM de/encoding via libgsm [no]
|
--enable-libgsm enable GSM de/encoding via libgsm [no]
|
||||||
--enable-libiec61883 enable iec61883 via libiec61883 [no]
|
--enable-libiec61883 enable iec61883 via libiec61883 [no]
|
||||||
--enable-libilbc enable iLBC de/encoding via libilbc [no]
|
--enable-libilbc enable iLBC de/encoding via libilbc [no]
|
||||||
|
--enable-libjack enable JACK audio sound server [no]
|
||||||
--enable-libkvazaar enable HEVC encoding via libkvazaar [no]
|
--enable-libkvazaar enable HEVC encoding via libkvazaar [no]
|
||||||
--enable-libmodplug enable ModPlug via libmodplug [no]
|
--enable-libmodplug enable ModPlug via libmodplug [no]
|
||||||
--enable-libmp3lame enable MP3 encoding via libmp3lame [no]
|
--enable-libmp3lame enable MP3 encoding via libmp3lame [no]
|
||||||
@ -1534,7 +1534,6 @@ EXTERNAL_AUTODETECT_LIBRARY_LIST="
|
|||||||
bzlib
|
bzlib
|
||||||
coreimage
|
coreimage
|
||||||
iconv
|
iconv
|
||||||
jack
|
|
||||||
libxcb
|
libxcb
|
||||||
libxcb_shm
|
libxcb_shm
|
||||||
libxcb_shape
|
libxcb_shape
|
||||||
@ -1604,6 +1603,7 @@ EXTERNAL_LIBRARY_LIST="
|
|||||||
libgsm
|
libgsm
|
||||||
libiec61883
|
libiec61883
|
||||||
libilbc
|
libilbc
|
||||||
|
libjack
|
||||||
libkvazaar
|
libkvazaar
|
||||||
libmodplug
|
libmodplug
|
||||||
libmp3lame
|
libmp3lame
|
||||||
@ -3118,7 +3118,7 @@ gdigrab_indev_deps="CreateDIBSection"
|
|||||||
gdigrab_indev_extralibs="-lgdi32"
|
gdigrab_indev_extralibs="-lgdi32"
|
||||||
gdigrab_indev_select="bmp_decoder"
|
gdigrab_indev_select="bmp_decoder"
|
||||||
iec61883_indev_deps="libiec61883"
|
iec61883_indev_deps="libiec61883"
|
||||||
jack_indev_deps="jack"
|
jack_indev_deps="libjack"
|
||||||
jack_indev_deps_any="sem_timedwait dispatch_dispatch_h"
|
jack_indev_deps_any="sem_timedwait dispatch_dispatch_h"
|
||||||
kmsgrab_indev_deps="libdrm"
|
kmsgrab_indev_deps="libdrm"
|
||||||
lavfi_indev_deps="avfilter"
|
lavfi_indev_deps="avfilter"
|
||||||
@ -6258,8 +6258,10 @@ check_header soundcard.h
|
|||||||
enabled alsa && use_pkg_config alsa alsa "alsa/asoundlib.h" snd_pcm_htimestamp ||
|
enabled alsa && use_pkg_config alsa alsa "alsa/asoundlib.h" snd_pcm_htimestamp ||
|
||||||
check_lib alsa alsa/asoundlib.h snd_pcm_htimestamp -lasound
|
check_lib alsa alsa/asoundlib.h snd_pcm_htimestamp -lasound
|
||||||
|
|
||||||
enabled jack && check_lib jack jack/jack.h jack_client_open -ljack &&
|
if enabled libjack; then
|
||||||
check_func jack_port_get_latency_range -ljack
|
check_pkg_config libjack jack jack/jack.h jack_port_get_latency_range ||
|
||||||
|
require_pkg_config libjack jack jack/jack.h jack_client_open
|
||||||
|
fi
|
||||||
|
|
||||||
enabled sndio && check_lib sndio sndio.h sio_open -lsndio
|
enabled sndio && check_lib sndio sndio.h sio_open -lsndio
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user