Config.in 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. config BR2_PACKAGE_FREESWITCH
  2. bool "freeswitch"
  3. depends on BR2_INSTALL_LIBSTDCPP
  4. depends on !BR2_STATIC_LIBS # apr, included in freeswitch source
  5. depends on BR2_TOOLCHAIN_HAS_THREADS
  6. depends on BR2_USE_MMU # apr, included in freeswitch source
  7. depends on BR2_USE_WCHAR # uses wchar_t
  8. select BR2_PACKAGE_FFMPEG_SWSCALE if BR2_PACKAGE_FFMPEG
  9. select BR2_PACKAGE_LIBCURL
  10. select BR2_PACKAGE_JPEG
  11. # src/mod/applications/mod_cv/mod_cv.cpp includes
  12. # highgui.h, imgproc.hpp & objdetect.hpp
  13. select BR2_PACKAGE_OPENCV3_LIB_HIGHGUI if BR2_PACKAGE_OPENCV3
  14. select BR2_PACKAGE_OPENCV3_LIB_IMGPROC if BR2_PACKAGE_OPENCV3
  15. select BR2_PACKAGE_OPENCV3_LIB_OBJDETECT if BR2_PACKAGE_OPENCV3
  16. select BR2_PACKAGE_OPENSSL
  17. select BR2_PACKAGE_PCRE
  18. select BR2_PACKAGE_SOFIA_SIP
  19. select BR2_PACKAGE_SPANDSP
  20. select BR2_PACKAGE_SPEEX
  21. select BR2_PACKAGE_SPEEXDSP
  22. select BR2_PACKAGE_SQLITE
  23. select BR2_PACKAGE_TIFF
  24. select BR2_PACKAGE_UTIL_LINUX
  25. select BR2_PACKAGE_UTIL_LINUX_LIBUUID
  26. select BR2_PACKAGE_ZLIB
  27. help
  28. FreeSWITCH is a scalable open source cross-platform
  29. telephony platform designed to route and interconnect
  30. popular communication protocols using audio, video, text or
  31. any other form of media.
  32. https://www.freeswitch.org
  33. comment "freeswitch needs a toolchain w/ C++, dynamic library, threads, wchar"
  34. depends on BR2_USE_MMU
  35. depends on !BR2_INSTALL_LIBSTDCPP || BR2_STATIC_LIBS \
  36. || !BR2_TOOLCHAIN_HAS_THREADS || !BR2_USE_WCHAR