diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2024-07-29 04:35:36 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2024-07-29 04:37:35 +0200 |
commit | c1482412eea3fc16fdca02eac89692ef9678e2a8 (patch) | |
tree | 58d165a5e445a3ff07ec5310a505893863398bd0 | |
parent | 65905695d69c5daf794a4a842573ccb16f5544ed (diff) |
asterisk: update to 20.9.1
Switch to openssl, because of compile issues with libressl.
-rw-r--r-- | package/asterisk/Makefile | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/package/asterisk/Makefile b/package/asterisk/Makefile index bfda5995d..6b1bc0b74 100644 --- a/package/asterisk/Makefile +++ b/package/asterisk/Makefile @@ -4,19 +4,18 @@ include $(ADK_TOPDIR)/rules.mk PKG_NAME:= asterisk -PKG_VERSION:= 20.7.0 +PKG_VERSION:= 20.9.1 PKG_RELEASE:= 1 -PKG_HASH:= 3d47889d2c4501974a8adaaba49738e6268a836dc177c7887a93a8ecf1d38b26 +PKG_HASH:= 548cdb1e1d854bc466af5178a5ee1b51b6e52d07359a0b286bc9147a64c1adb1 PKG_DESCR:= open source pbx PKG_SECTION:= net/voip -PKG_DEPENDS:= libncurses libcurl libressl libedit libuuid libjansson +PKG_DEPENDS:= libncurses libcurl libopenssl libedit libuuid libjansson PKG_DEPENDS+= libxml2 libsqlite libxslt -PKG_BUILDDEP:= ncurses zlib curl popt libressl libedit util-linux libjansson +PKG_BUILDDEP:= ncurses zlib curl popt openssl libedit util-linux libjansson PKG_BUILDDEP+= libxml2 sqlite libxslt PKG_NEEDS:= threads c++ PKG_URL:= http://www.asterisk.org/ PKG_SITES:= http://downloads.asterisk.org/pub/telephony/asterisk/releases/ -#PKG_NOPARALLEL:= 1 DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.gz |