78790d3e9c
- removed patches applied upstream, re-numbered remaining patches - not available for static builds anymore:8e36064109
- fixed license hashes after upstream whitespace removalfd0ca1c3f9
- removed configure options not provided by upstream anymore - fixed configure error, the file is included in asterisk source: checking for bridges/bridge_softmix/include/hrirs.h... configure: error: cannot check for file existence when cross compiling - added "-without-pjproject-bundled" as noted in https://wiki.asterisk.org/wiki/display/AST/New+in+15 - upstream switched from ncurses to libedit:d6fda173a4
- added libatomic when needed - updated core sound package Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
32 lines
1.1 KiB
Plaintext
32 lines
1.1 KiB
Plaintext
config BR2_PACKAGE_ASTERISK
|
|
bool "asterisk"
|
|
# Uses glibc resolver function res_nsearch()
|
|
depends on BR2_TOOLCHAIN_USES_GLIBC
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
depends on !BR2_STATIC_LIBS # dlfcn.h
|
|
depends on BR2_USE_MMU # libedit
|
|
depends on BR2_USE_WCHAR # libedit
|
|
select BR2_PACKAGE_JANSSON
|
|
select BR2_PACKAGE_LIBCURL
|
|
select BR2_PACKAGE_LIBEDIT
|
|
select BR2_PACKAGE_LIBILBC
|
|
select BR2_PACKAGE_LIBXML2
|
|
select BR2_PACKAGE_SQLITE
|
|
select BR2_PACKAGE_UTIL_LINUX
|
|
select BR2_PACKAGE_UTIL_LINUX_LIBUUID
|
|
help
|
|
Asterisk is an open source framework for building
|
|
communications applications. Asterisk turns an ordinary
|
|
computer into a communications server. Asterisk powers IP PBX
|
|
systems, VoIP gateways, conference servers and other custom
|
|
solutions. It is used by small businesses, large businesses,
|
|
call centers, carriers and government agencies, worldwide.
|
|
Asterisk is free and open source.
|
|
|
|
http://www.asterisk.org/
|
|
|
|
comment "asterisk needs a glibc toolchain w/ C++, dynamic library, wchar"
|
|
depends on BR2_USE_MMU
|
|
depends on !BR2_TOOLCHAIN_USES_GLIBC || !BR2_INSTALL_LIBSTDCPP \
|
|
|| BR2_STATIC_LIBS || !BR2_USE_WCHAR
|