Config.in 1.2 KB

1234567891011121314151617181920212223242526272829303132
  1. config 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. http://www.asterisk.org/
  26. comment "asterisk needs a glibc or uClibc toolchain w/ C++, dynamic library, threads, wchar"
  27. depends on BR2_USE_MMU
  28. depends on BR2_TOOLCHAIN_USES_MUSL || !BR2_INSTALL_LIBSTDCPP \
  29. || BR2_STATIC_LIBS || !BR2_TOOLCHAIN_HAS_THREADS \
  30. || !BR2_USE_WCHAR