1config BR2_PACKAGE_JACK1 2 bool "jack1" 3 depends on BR2_USE_MMU # fork() 4 depends on BR2_TOOLCHAIN_HAS_THREADS # alsa-lib 5 depends on !BR2_STATIC_LIBS 6 depends on BR2_TOOLCHAIN_HAS_SYNC_4 7 depends on !BR2_PACKAGE_JACK2 8 select BR2_PACKAGE_ALSA_LIB 9 select BR2_PACKAGE_ALSA_LIB_HWDEP 10 select BR2_PACKAGE_ALSA_LIB_RAWMIDI 11 select BR2_PACKAGE_ALSA_LIB_SEQ 12 select BR2_PACKAGE_BERKELEYDB 13 select BR2_PACKAGE_LIBSAMPLERATE 14 select BR2_PACKAGE_LIBSNDFILE 15 help 16 JACK Audio Connection Kit (JACK 1 implementation). 17 18 JACK is a low-latency sound server, allowing multiple 19 applications to connect to one audio device, and to share 20 audio between themselves. This package contains the daemon 21 jackd as well as some example clients. 22 23 http://jackaudio.org/ 24 25 Another implementation (BR2_PACKAGE_JACK2) is also available, 26 please consult the documentation to choose the right one: 27 28 https://github.com/jackaudio/jackaudio.github.com/wiki/Differences-between-jack1-and-jack2 29 30comment "jack1 needs a toolchain w/ threads, dynamic library" 31 depends on BR2_USE_MMU 32 depends on BR2_TOOLCHAIN_HAS_SYNC_4 33 depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS 34