diff options
author | Guido Falsi <madpilot@FreeBSD.org> | 2015-10-10 09:30:54 +0000 |
---|---|---|
committer | Guido Falsi <madpilot@FreeBSD.org> | 2015-10-10 09:30:54 +0000 |
commit | 83090ef61c6c826e55c44f811785f655cf43ead5 (patch) | |
tree | c1e7dbf1546eebfdc7b894cb4f8dffa761a701f3 /net/asterisk11 | |
parent | 7ea932b69714377fbe36d805228d57f52d9eb957 (diff) |
Notes
Diffstat (limited to 'net/asterisk11')
-rw-r--r-- | net/asterisk11/Makefile | 3 | ||||
-rw-r--r-- | net/asterisk11/distinfo | 4 | ||||
-rw-r--r-- | net/asterisk11/files/patch-main__utils.c | 13 |
3 files changed, 3 insertions, 17 deletions
diff --git a/net/asterisk11/Makefile b/net/asterisk11/Makefile index 91e80ff8270b..a3203d19e6f0 100644 --- a/net/asterisk11/Makefile +++ b/net/asterisk11/Makefile @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= asterisk -PORTVERSION= 11.19.0 -PORTREVISION= 1 +PORTVERSION= 11.20.0 CATEGORIES= net MASTER_SITES= http://downloads.asterisk.org/pub/telephony/%SUBDIR%/:main,g729 MASTER_SITE_SUBDIR= asterisk/:main \ diff --git a/net/asterisk11/distinfo b/net/asterisk11/distinfo index db8283740ad1..2f42eb735b4d 100644 --- a/net/asterisk11/distinfo +++ b/net/asterisk11/distinfo @@ -1,5 +1,5 @@ -SHA256 (asterisk-11.19.0.tar.gz) = 339f82f75dd15144a8de6f29aa5aa91e8e6a789dbfbd6c1283f345391505dc1e -SIZE (asterisk-11.19.0.tar.gz) = 34852510 +SHA256 (asterisk-11.20.0.tar.gz) = ba3a26a7ea2b76884ad4984b0694fc9814d98bb373e0cbe42c64962f666720f4 +SIZE (asterisk-11.20.0.tar.gz) = 34864289 SHA256 (asterisk-core-sounds-en-g729-1.4.27.tar.gz) = f5d21ca8305b29ea84fb4603c65c041483ea3a9cd0bf313eb4f098342a29af5f SIZE (asterisk-core-sounds-en-g729-1.4.27.tar.gz) = 1408055 SHA256 (asterisk-moh-opsound-g729-2.03.tar.gz) = 0147ca9a97f0c550227aacb7793499057c4d2c64e021c95f93722f27d5549585 diff --git a/net/asterisk11/files/patch-main__utils.c b/net/asterisk11/files/patch-main__utils.c deleted file mode 100644 index 26f6ed6cce39..000000000000 --- a/net/asterisk11/files/patch-main__utils.c +++ /dev/null @@ -1,13 +0,0 @@ ---- main/utils.c.orig 2015-07-24 22:06:05 UTC -+++ main/utils.c -@@ -1242,8 +1242,8 @@ int ast_pthread_create_stack(pthread_t * - pthread_attr_init(attr); - } - --#ifdef __linux__ -- /* On Linux, pthread_attr_init() defaults to PTHREAD_EXPLICIT_SCHED, -+#if defined(__linux__) || defined(__FreeBSD__) -+ /* On Linux and FreeBSD, pthread_attr_init() defaults to PTHREAD_EXPLICIT_SCHED, - which is kind of useless. Change this here to - PTHREAD_INHERIT_SCHED; that way the -p option to set realtime - priority will propagate down to new threads by default. |