Config.in 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. config BR2_PACKAGE_ALURE
  2. bool "alure"
  3. depends on BR2_PACKAGE_OPENAL_ARCH_SUPPORTS
  4. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # C++11
  5. depends on BR2_INSTALL_LIBSTDCPP
  6. depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL # openal
  7. depends on BR2_USE_WCHAR # use wchar_t
  8. depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_64735 # std::shared_future
  9. select BR2_PACKAGE_OPENAL
  10. help
  11. Alure is a C++ 3D audio API. It uses OpenAL for audio
  12. rendering, and provides common higher-level features such as
  13. file loading and decoding, buffer caching, background
  14. streaming, and source management for virtually unlimited
  15. sound source handles.
  16. https://kcat.strangesoft.net/alure.html
  17. if BR2_PACKAGE_ALURE
  18. config BR2_PACKAGE_ALURE_FLAC_DECODER
  19. bool "flac decoder"
  20. help
  21. Enables the built-in FLAC decoder.
  22. config BR2_PACKAGE_ALURE_MINIMP3_DECODER
  23. bool "minimp3 decoder"
  24. help
  25. Enables the built-in minimp3 decoder.
  26. config BR2_PACKAGE_ALURE_OPUS_DECODER
  27. bool "opus decoder"
  28. select BR2_PACKAGE_LIBOGG
  29. select BR2_PACKAGE_OPUS
  30. help
  31. Enables the built-in libopusfile decoder.
  32. config BR2_PACKAGE_ALURE_SNDFILE_DECODER
  33. bool "sndfile decoder"
  34. select BR2_PACKAGE_LIBSNDFILE
  35. help
  36. Enables the built-in libsndfile decoder.
  37. config BR2_PACKAGE_ALURE_VORBIS_DECODER
  38. bool "vorbis decoder"
  39. select BR2_PACKAGE_LIBOGG
  40. select BR2_PACKAGE_LIBVORBIS
  41. help
  42. Enables the built-in libvorbis decoder.
  43. endif
  44. comment "alure needs a toolchain w/ C++, gcc >= 4.9, NPTL, wchar"
  45. depends on BR2_PACKAGE_OPENAL_ARCH_SUPPORTS
  46. depends on !BR2_INSTALL_LIBSTDCPP \
  47. || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 \
  48. || !BR2_TOOLCHAIN_HAS_THREADS_NPTL || !BR2_USE_WCHAR
  49. comment "alure needs a toolchain not affected by GCC bug 64735"
  50. depends on BR2_PACKAGE_OPENAL_ARCH_SUPPORTS
  51. depends on BR2_TOOLCHAIN_HAS_GCC_BUG_64735