Config.in 1.1 KB

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