Config.in 1.4 KB

1234567891011121314151617181920212223242526272829303132333435
  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 # libuuid
  8. select BR2_PACKAGE_FFMPEG_AVRESAMPLE if BR2_PACKAGE_FFMPEG
  9. select BR2_PACKAGE_FFMPEG_SWSCALE if BR2_PACKAGE_FFMPEG
  10. select BR2_PACKAGE_LIBCURL
  11. select BR2_PACKAGE_JPEG
  12. # src/mod/applications/mod_cv/mod_cv.cpp includes
  13. # highgui.h, imgproc.hpp & objdetect.hpp
  14. select BR2_PACKAGE_OPENCV_LIB_HIGHGUI if BR2_PACKAGE_OPENCV
  15. select BR2_PACKAGE_OPENCV_LIB_IMGPROC if BR2_PACKAGE_OPENCV
  16. select BR2_PACKAGE_OPENCV_LIB_OBJDETECT if BR2_PACKAGE_OPENCV
  17. select BR2_PACKAGE_OPENSSL
  18. select BR2_PACKAGE_PCRE
  19. select BR2_PACKAGE_SPEEX
  20. select BR2_PACKAGE_SQLITE
  21. select BR2_PACKAGE_UTIL_LINUX
  22. select BR2_PACKAGE_UTIL_LINUX_LIBUUID
  23. select BR2_PACKAGE_ZLIB
  24. help
  25. FreeSWITCH is a scalable open source cross-platform
  26. telephony platform designed to route and interconnect
  27. popular communication protocols using audio, video, text or
  28. any other form of media.
  29. https://www.freeswitch.org
  30. comment "freeswitch needs a toolchain w/ C++, dynamic library, threads, wchar"
  31. depends on BR2_USE_MMU
  32. depends on !BR2_INSTALL_LIBSTDCPP || BR2_STATIC_LIBS \
  33. || !BR2_TOOLCHAIN_HAS_THREADS || !BR2_USE_WCHAR