update to asterisk 11.6.0
This commit is contained in:
parent
79e79b5af2
commit
56a39231dc
@ -1,15 +1,13 @@
|
||||
# $OpenBSD: Makefile,v 1.186 2013/10/17 09:11:35 ajacoutot Exp $
|
||||
# $OpenBSD: Makefile,v 1.187 2013/10/21 23:38:44 sthen Exp $
|
||||
|
||||
SHARED_ONLY= Yes
|
||||
|
||||
COMMENT-main= open source multi-protocol PBX and telephony toolkit
|
||||
|
||||
VER= 11.5.1
|
||||
VER= 11.6.0
|
||||
DISTNAME= asterisk-${VER:S/beta/-beta/:S/rc/-rc/}
|
||||
PKGNAME-main= asterisk-${VER}
|
||||
|
||||
REVISION-main= 0
|
||||
|
||||
CATEGORIES= telephony
|
||||
|
||||
HOMEPAGE= http://www.asterisk.org/
|
||||
@ -65,7 +63,7 @@ DISTFILES= ${DISTNAME}${EXTRACT_SUFX}
|
||||
USE_GMAKE= Yes
|
||||
|
||||
CONFIGURE_STYLE= gnu
|
||||
AUTOCONF_VERSION= 2.68
|
||||
AUTOCONF_VERSION= 2.69
|
||||
AUTOMAKE_VERSION= 1.10
|
||||
BUILD_DEPENDS+= ${MODGNU_AUTOCONF_DEPENDS} \
|
||||
${MODGNU_AUTOMAKE_DEPENDS} \
|
||||
|
@ -1,2 +1,2 @@
|
||||
SHA256 (asterisk-11.5.1.tar.gz) = /vqd75yPl8iZMfErKbOsYWrhqEVMAcUkZ4FjBh3LQrI=
|
||||
SIZE (asterisk-11.5.1.tar.gz) = 30580447
|
||||
SHA256 (asterisk-11.6.0.tar.gz) = gKpSO9qrcc5BkCLYyFGq7acY3Fu/X+jLmXhtpUbdjO4=
|
||||
SIZE (asterisk-11.6.0.tar.gz) = 34767605
|
||||
|
@ -1,10 +1,10 @@
|
||||
$OpenBSD: patch-channels_chan_sip_c,v 1.10 2013/07/16 13:03:19 sthen Exp $
|
||||
$OpenBSD: patch-channels_chan_sip_c,v 1.11 2013/10/21 23:38:45 sthen Exp $
|
||||
|
||||
https://issues.asterisk.org/jira/secure/attachment/46850/fax-deadlock-v2.patch-11.3.0
|
||||
and add a bit more randomness for digest auth
|
||||
|
||||
--- channels/chan_sip.c.orig Mon May 13 22:05:38 2013
|
||||
+++ channels/chan_sip.c Tue Jun 11 14:20:09 2013
|
||||
--- channels/chan_sip.c.orig Fri Oct 18 17:38:45 2013
|
||||
+++ channels/chan_sip.c Mon Oct 21 20:23:44 2013
|
||||
@@ -8436,8 +8436,6 @@ static struct ast_frame *sip_read(struct ast_channel *
|
||||
ast_channel_unlock(ast);
|
||||
if (ast_exists_extension(ast, target_context, "fax", 1,
|
||||
@ -35,7 +35,7 @@ and add a bit more randomness for digest auth
|
||||
ast_verb(2, "Redirecting '%s' to fax extension due to peer T.38 re-INVITE\n", ast_channel_name(p->owner));
|
||||
pbx_builtin_setvar_helper(p->owner, "FAXEXTEN", ast_channel_exten(p->owner));
|
||||
if (ast_async_goto(p->owner, target_context, "fax", 1)) {
|
||||
@@ -16243,7 +16242,7 @@ static void build_route(struct sip_pvt *p, struct sip_
|
||||
@@ -16245,7 +16244,7 @@ static void build_route(struct sip_pvt *p, struct sip_
|
||||
static void build_nonce(struct sip_pvt *p, int forceupdate)
|
||||
{
|
||||
if (p->stalenonce || forceupdate || ast_strlen_zero(p->nonce)) {
|
||||
|
@ -1,15 +0,0 @@
|
||||
$OpenBSD: patch-main_http_c,v 1.1 2013/06/05 00:57:18 sthen Exp $
|
||||
|
||||
see https://issues.asterisk.org/jira/browse/ASTERISK-21789
|
||||
|
||||
--- main/http.c.orig Fri May 24 15:05:50 2013
|
||||
+++ main/http.c Fri May 24 15:06:07 2013
|
||||
@@ -843,7 +843,7 @@ struct ast_variable *ast_http_get_cookies(struct ast_v
|
||||
struct ast_variable *v, *cookies=NULL;
|
||||
|
||||
for (v = headers; v; v = v->next) {
|
||||
- if (!strncasecmp(v->name, "Cookie", 6)) {
|
||||
+ if (!strcasecmp(v->name, "Cookie")) {
|
||||
char *tmp = ast_strdupa(v->value);
|
||||
if (cookies) {
|
||||
ast_variables_destroy(cookies);
|
@ -1,4 +1,4 @@
|
||||
@comment $OpenBSD: PLIST-main,v 1.49 2013/05/18 08:44:01 sthen Exp $
|
||||
@comment $OpenBSD: PLIST-main,v 1.50 2013/10/21 23:38:45 sthen Exp $
|
||||
@conflict asterisk-sounds-<=1.2.1p2
|
||||
@conflict asterisk-curl-*
|
||||
@conflict asterisk-fax-*
|
||||
@ -404,6 +404,7 @@ share/asterisk/static-http/core-en_US.xml
|
||||
share/asterisk/static-http/mantest.html
|
||||
share/asterisk/static-http/prototype.js
|
||||
share/doc/asterisk/
|
||||
share/doc/asterisk/Asterisk-11-Reference.pdf
|
||||
share/doc/asterisk/Asterisk-Admin-Guide.pdf
|
||||
share/doc/asterisk/BUGS
|
||||
share/doc/asterisk/CHANGES
|
||||
|
Loading…
Reference in New Issue
Block a user