Config.in 4.1 KB

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