summaryrefslogtreecommitdiff
path: root/net/asterisk-bristuff/files/patch-main::utils.c
diff options
context:
space:
mode:
authorMax Khon <fjoe@FreeBSD.org>2010-11-28 19:44:40 +0000
committerMax Khon <fjoe@FreeBSD.org>2010-11-28 19:44:40 +0000
commit46d90ed03174a5ca966b690198acea675a58d214 (patch)
tree499c5db38e6a12f5ab1b97617f20213183639134 /net/asterisk-bristuff/files/patch-main::utils.c
parentAdd a note about asterisk update to 1.8 (diff)
The only thing that was missing in stock asterisk was lack of ISDN bri_net_ptmp
signalling that was implemented in asterisk 1.8 and libpri 1.4.11.
Notes
Notes: svn path=/head/; revision=265331
Diffstat (limited to 'net/asterisk-bristuff/files/patch-main::utils.c')
-rw-r--r--net/asterisk-bristuff/files/patch-main::utils.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/net/asterisk-bristuff/files/patch-main::utils.c b/net/asterisk-bristuff/files/patch-main::utils.c
deleted file mode 100644
index e2c43ab89109..000000000000
--- a/net/asterisk-bristuff/files/patch-main::utils.c
+++ /dev/null
@@ -1,16 +0,0 @@
-
-$FreeBSD: /tmp/pcvs/ports/net/asterisk-bristuff/files/Attic/patch-main::utils.c,v 1.1 2009-09-16 19:33:37 fjoe Exp $
-
---- main/utils.c.orig
-+++ main/utils.c
-@@ -914,8 +914,8 @@
- 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.