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	help
14	  JACK Audio Connection Kit (JACK 1 implementation).
15
16	  JACK is a low-latency sound server, allowing multiple
17	  applications to connect to one audio device, and to share
18	  audio between themselves. This package contains the daemon
19	  jackd as well as some example clients.
20
21	  http://jackaudio.org/
22
23	  Another implementation (BR2_PACKAGE_JACK2) is also available,
24	  please consult the documentation to choose the right one:
25
26	  https://github.com/jackaudio/jackaudio.github.com/wiki/Differences-between-jack1-and-jack2
27
28comment "jack1 needs a toolchain w/ threads, dynamic library"
29	depends on BR2_USE_MMU
30	depends on BR2_TOOLCHAIN_HAS_SYNC_4
31	depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS
32