xref: /OK3568_Linux_fs/buildroot/package/asterisk/Config.in (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1config BR2_PACKAGE_ASTERISK
2	bool "asterisk"
3	depends on BR2_INSTALL_LIBSTDCPP
4	depends on !BR2_STATIC_LIBS # dlfcn.h
5	depends on !BR2_TOOLCHAIN_USES_MUSL
6	depends on BR2_USE_MMU # libedit
7	depends on BR2_TOOLCHAIN_HAS_THREADS
8	depends on BR2_USE_WCHAR # libedit
9	select BR2_PACKAGE_JANSSON
10	select BR2_PACKAGE_LIBCURL
11	select BR2_PACKAGE_LIBEDIT
12	select BR2_PACKAGE_LIBILBC
13	select BR2_PACKAGE_LIBXML2
14	select BR2_PACKAGE_SQLITE
15	select BR2_PACKAGE_UTIL_LINUX
16	select BR2_PACKAGE_UTIL_LINUX_LIBUUID
17	help
18	  Asterisk is an open source framework for building
19	  communications applications. Asterisk turns an ordinary
20	  computer into a communications server. Asterisk powers IP PBX
21	  systems, VoIP gateways, conference servers and other custom
22	  solutions. It is used by small businesses, large businesses,
23	  call centers, carriers and government agencies, worldwide.
24	  Asterisk is free and open source.
25
26	  http://www.asterisk.org/
27
28comment "asterisk needs a glibc or uClibc toolchain w/ C++, dynamic library, threads, wchar"
29	depends on BR2_USE_MMU
30	depends on BR2_TOOLCHAIN_USES_MUSL || !BR2_INSTALL_LIBSTDCPP \
31		|| BR2_STATIC_LIBS || !BR2_TOOLCHAIN_HAS_THREADS \
32		|| !BR2_USE_WCHAR
33