2
1

Config.in 951 B

12345678910111213141516171819202122232425262728
  1. config BR2_PACKAGE_JACK2
  2. bool "jack2"
  3. depends on BR2_TOOLCHAIN_HAS_THREADS # alsa-lib
  4. depends on BR2_USE_MMU # fork()
  5. depends on BR2_INSTALL_LIBSTDCPP
  6. depends on !BR2_STATIC_LIBS
  7. depends on BR2_TOOLCHAIN_HAS_SYNC_4
  8. select BR2_PACKAGE_LIBSAMPLERATE
  9. select BR2_PACKAGE_LIBSNDFILE
  10. select BR2_PACKAGE_ALSA_LIB
  11. select BR2_PACKAGE_ALSA_LIB_HWDEP
  12. select BR2_PACKAGE_ALSA_LIB_SEQ
  13. select BR2_PACKAGE_ALSA_LIB_RAWMIDI
  14. help
  15. JACK Audio Connection Kit (server and example clients).
  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. http://jackaudio.org/
  21. comment "jack2 needs a toolchain w/ threads, C++, dynamic library"
  22. depends on BR2_USE_MMU
  23. depends on BR2_TOOLCHAIN_HAS_SYNC_4
  24. depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_INSTALL_LIBSTDCPP || \
  25. BR2_STATIC_LIBS