Config.in 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. config BR2_PACKAGE_FLUIDSYNTH
  2. bool "fluidsynth"
  3. depends on BR2_USE_WCHAR # libglib2
  4. depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2
  5. depends on BR2_USE_MMU # libglib2
  6. # the .pc file installed by fluidsynth does not mention its
  7. # indirect dependencies in Libs.private.
  8. depends on !BR2_STATIC_LIBS
  9. select BR2_PACKAGE_LIBGLIB2
  10. help
  11. FluidSynth is a real-time software synthesizer based on the
  12. SoundFont 2 specifications and has reached widespread
  13. distribution. FluidSynth itself does not have a graphical
  14. user interface, but due to its powerful API several
  15. applications utilize it and it has even found its way onto
  16. embedded systems and is used in some mobile apps.
  17. http://www.fluidsynth.org/
  18. if BR2_PACKAGE_FLUIDSYNTH
  19. comment "Output support"
  20. config BR2_PACKAGE_FLUIDSYNTH_ALSA_LIB
  21. bool "alsa"
  22. default y
  23. depends on BR2_TOOLCHAIN_HAS_THREADS
  24. select BR2_PACKAGE_ALSA_LIB
  25. select BR2_PACKAGE_ALSA_LIB_RAWMIDI
  26. select BR2_PACKAGE_ALSA_LIB_SEQ
  27. help
  28. Enable alsa support.
  29. comment "alsa support needs a toolchain w/ threads"
  30. depends on !BR2_TOOLCHAIN_HAS_THREADS
  31. config BR2_PACKAGE_FLUIDSYNTH_JACK2
  32. bool "jack2"
  33. # See: https://sourceware.org/bugzilla/show_bug.cgi?id=19908
  34. depends on !BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_MIPS
  35. depends on BR2_TOOLCHAIN_HAS_THREADS # jack2
  36. depends on BR2_USE_MMU # jack2
  37. depends on BR2_INSTALL_LIBSTDCPP # jack2
  38. depends on !BR2_STATIC_LIBS # jack2
  39. depends on BR2_TOOLCHAIN_HAS_SYNC_4 # jack2
  40. select BR2_PACKAGE_JACK2
  41. help
  42. Enable jack support.
  43. comment "jack support needs a toolchain w/ dynamic library, threads, C++"
  44. depends on BR2_TOOLCHAIN_HAS_SYNC_4
  45. depends on BR2_USE_MMU
  46. depends on !BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_MIPS
  47. depends on BR2_STATIC_LIBS || !BR2_INSTALL_LIBSTDCPP || \
  48. !BR2_TOOLCHAIN_HAS_THREADS
  49. config BR2_PACKAGE_FLUIDSYNTH_LIBSNDFILE
  50. bool "libsndfile"
  51. select BR2_PACKAGE_LIBSNDFILE
  52. help
  53. Enable libsndfile support, for writing output to WAV files.
  54. config BR2_PACKAGE_FLUIDSYNTH_PORTAUDIO
  55. bool "portaudio"
  56. depends on BR2_TOOLCHAIN_HAS_THREADS
  57. select BR2_PACKAGE_PORTAUDIO
  58. help
  59. Enable portaudio support.
  60. comment "portaudio support needs a toolchain w/ threads"
  61. depends on !BR2_TOOLCHAIN_HAS_THREADS
  62. config BR2_PACKAGE_FLUIDSYNTH_PULSEAUDIO
  63. bool "pulseaudio"
  64. # See: https://sourceware.org/bugzilla/show_bug.cgi?id=19908
  65. depends on !BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_MIPS
  66. depends on BR2_PACKAGE_PULSEAUDIO_HAS_ATOMIC # pulseaudio
  67. depends on BR2_USE_WCHAR # pulseaudio
  68. depends on BR2_TOOLCHAIN_HAS_THREADS # pulseaudio
  69. depends on !BR2_STATIC_LIBS # pulseaudio
  70. depends on BR2_USE_MMU # pulseaudio
  71. select BR2_PACKAGE_PULSEAUDIO
  72. help
  73. Enable PulseAudio support.
  74. comment "pulseaudio support needs a toolchain w/ dynamic library, wchar, threads"
  75. depends on BR2_USE_MMU
  76. depends on !BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_MIPS
  77. depends on BR2_PACKAGE_PULSEAUDIO_HAS_ATOMIC
  78. depends on BR2_STATIC_LIBS || !BR2_USE_MMU || !BR2_TOOLCHAIN_HAS_THREADS
  79. comment "Misc options"
  80. config BR2_PACKAGE_FLUIDSYNTH_DBUS
  81. bool "dbus"
  82. depends on BR2_TOOLCHAIN_HAS_THREADS
  83. depends on BR2_USE_MMU
  84. select BR2_PACKAGE_DBUS
  85. help
  86. Enable dbus support.
  87. comment "dbus support needs a toolchain w/ threads"
  88. depends on BR2_USE_MMU
  89. depends on !BR2_TOOLCHAIN_HAS_THREADS
  90. config BR2_PACKAGE_FLUIDSYNTH_FLOATS
  91. bool "32-bit single precision float"
  92. help
  93. Enable 32-bit single precision float support, instead of
  94. 64-bit double precision floats for DSP samples.
  95. config BR2_PACKAGE_FLUIDSYNTH_READLINE
  96. bool "readline"
  97. select BR2_PACKAGE_READLINE
  98. help
  99. Enable readline support, for better line editing in FluidSynth
  100. shell.
  101. endif # BR2_PACKAGE_FLUIDSYNTH
  102. comment "fluidsynth needs a toolchain w/ threads, wchar, dynamic library"
  103. depends on BR2_USE_MMU
  104. depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || \
  105. BR2_STATIC_LIBS