diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2013-12-18 00:10:25 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2013-12-18 00:10:25 +0000 |
commit | a458e0d7dbca360d8cf0d0b251bb053c01a75b5c (patch) | |
tree | a2394476907501f66739e578a087250883511b15 /net/asterisk11/files | |
parent | b33803efe8cc4aacc3f402079bb5b3f686bd3eed (diff) | |
download | ports-a458e0d7dbca360d8cf0d0b251bb053c01a75b5c.tar.gz ports-a458e0d7dbca360d8cf0d0b251bb053c01a75b5c.zip |
MFH: r336791release/10.0.0
- Update net/aserisk to 1.8.25.0
- Update net/aserisk10 to 10.12.4
- Update net/aserisk11 to 11.7.0
- mark net/aserisk10 DEPRECATED, it has reached its EOL
Security: 0c39bafc-6771-11e3-868f-0025905a4771
Notes
Notes:
svn path=/branches/2014Q1/; revision=336796
svn path=/tags/RELEASE_10_0_0/; revision=336829; tag=release/10.0.0
Diffstat (limited to 'net/asterisk11/files')
-rw-r--r-- | net/asterisk11/files/patch-main__asterisk.exports.in | 12 | ||||
-rw-r--r-- | net/asterisk11/files/patch-main__http.c | 11 |
2 files changed, 17 insertions, 6 deletions
diff --git a/net/asterisk11/files/patch-main__asterisk.exports.in b/net/asterisk11/files/patch-main__asterisk.exports.in index 438dd1034eca..185c0c8f1e6c 100644 --- a/net/asterisk11/files/patch-main__asterisk.exports.in +++ b/net/asterisk11/files/patch-main__asterisk.exports.in @@ -1,9 +1,9 @@ ---- main/asterisk.exports.in.orig 2012-04-10 21:44:03.532803004 +0200 -+++ main/asterisk.exports.in 2012-04-10 21:44:41.134621539 +0200 -@@ -44,6 +44,8 @@ - LINKER_SYMBOL_PREFIXres_srtp; - LINKER_SYMBOL_PREFIXres_srtp_policy; - LINKER_SYMBOL_PREFIXsecure_call_info; +--- main/asterisk.exports.in.orig 2013-08-22 10:22:39.000000000 +0200 ++++ main/asterisk.exports.in 2013-10-27 13:38:56.825678450 +0100 +@@ -65,6 +65,8 @@ + + */ + LINKER_SYMBOL_PREFIX_IO_stdin_used; + LINKER_SYMBOL_PREFIX__progname; + LINKER_SYMBOL_PREFIXenviron; local: diff --git a/net/asterisk11/files/patch-main__http.c b/net/asterisk11/files/patch-main__http.c new file mode 100644 index 000000000000..f82a52bb8470 --- /dev/null +++ b/net/asterisk11/files/patch-main__http.c @@ -0,0 +1,11 @@ +--- main/http.c.orig 2013-12-17 23:42:58.982720307 +0100 ++++ main/http.c 2013-12-17 23:43:16.054863909 +0100 +@@ -1024,7 +1024,7 @@ + struct http_uri_redirect *redirect; + struct ast_flags config_flags = { reload ? CONFIG_FLAG_FILEUNCHANGED : 0 }; + uint32_t bindport = DEFAULT_PORT; +- RAII_VAR(struct ast_sockaddr *, addrs, NULL, ast_free); ++ struct ast_sockaddr *addrs = NULL; + int num_addrs = 0; + int http_tls_was_enabled = 0; + |