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