[54184] trunk/dports/net/asterisk
snc at macports.org
snc at macports.org
Wed Jul 22 11:55:03 PDT 2009
Revision: 54184
http://trac.macports.org/changeset/54184
Author: snc at macports.org
Date: 2009-07-22 11:55:02 -0700 (Wed, 22 Jul 2009)
Log Message:
-----------
updated version per #20211, also adding startupitem and changing config flags.
Modified Paths:
--------------
trunk/dports/net/asterisk/Portfile
Added Paths:
-----------
trunk/dports/net/asterisk/files/
trunk/dports/net/asterisk/files/20090420__bug14930.diff
Modified: trunk/dports/net/asterisk/Portfile
===================================================================
--- trunk/dports/net/asterisk/Portfile 2009-07-22 18:53:33 UTC (rev 54183)
+++ trunk/dports/net/asterisk/Portfile 2009-07-22 18:55:02 UTC (rev 54184)
@@ -1,3 +1,4 @@
+# -*- coding: utf-8; mode: tcl; tab-width: 4; truncate-lines: t; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:et:sw=4:ts=4:sts=4
# $Id$
PortSystem 1.0
@@ -3,5 +4,5 @@
name asterisk
-version 1.4.20.1
+version 1.6.1.1
categories net
platforms darwin
@@ -15,6 +16,7 @@
homepage http://www.asterisk.org
master_sites http://downloads.digium.com/pub/asterisk/releases/
+patchfiles 20090420__bug14930.diff
depends_lib port:ncurses \
port:openssl \
@@ -23,13 +25,16 @@
port:curl \
port:wget
-checksums md5 4e4c0cdd97cb0f7b007d4f773222a2a9 \
- sha1 402c06fdf5171bdeec90f0a456f5582230c64284 \
- rmd160 3bc932cb68538cd16d214f87d9e06a6b84ea7968
+checksums md5 7e4dccc79c504ae497ff42062279905d \
+ sha1 cd976cf05ba4c4b53b50e7af69fd6d684f070f86 \
+ rmd160 2fd9fc82a3f9cf23bbe2ed974b008a7a5bfdd570
-configure.args --localstatedir=${prefix}/var --sysconfdir=${prefix}/etc/asterisk \
- --without-h323 --without-zaptel
+startupitem.create yes
+startupitem.netchange yes
+startupitem.executable ${prefix}/sbin/asterisk -d
+configure.args --without-h323 --without-zaptel
+
build.env ASTCFLAGS=-I${prefix}/include \
ASTLDFLAGS=-L${prefix}/lib
Added: trunk/dports/net/asterisk/files/20090420__bug14930.diff
===================================================================
--- trunk/dports/net/asterisk/files/20090420__bug14930.diff (rev 0)
+++ trunk/dports/net/asterisk/files/20090420__bug14930.diff 2009-07-22 18:55:02 UTC (rev 54184)
@@ -0,0 +1,246 @@
+Index: configure
+===================================================================
+--- configure (revision 189343)
++++ configure (working copy)
+#@@ -1,5 +1,5 @@
+# #! /bin/sh
+#-# From configure.ac Revision: 183242 .
+#+# From configure.ac Revision: 188342 .
+# # Guess values for system-dependent variables and create Makefiles.
+# # Generated by GNU Autoconf 2.61 for asterisk 1.6.
+# #
+@@ -17256,7 +17256,71 @@
+ rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
+ conftest$ac_exeext conftest.$ac_ext
+
++{ echo "$as_me:$LINENO: checking for pthread_rwlock_timedwrlock() in pthread.h" >&5
++echo $ECHO_N "checking for pthread_rwlock_timedwrlock() in pthread.h... $ECHO_C" >&6; }
++cat >conftest.$ac_ext <<_ACEOF
++/* confdefs.h. */
++_ACEOF
++cat confdefs.h >>conftest.$ac_ext
++cat >>conftest.$ac_ext <<_ACEOF
++/* end confdefs.h. */
++#include <pthread.h>
++ #include <time.h>
++int
++main ()
++{
++pthread_rwlock_t foo; struct timespec bar; pthread_rwlock_timedwrlock(&foo, &bar)
++ ;
++ return 0;
++}
+
++_ACEOF
++rm -f conftest.$ac_objext conftest$ac_exeext
++if { (ac_try="$ac_link"
++case "(($ac_try" in
++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
++ *) ac_try_echo=$ac_try;;
++esac
++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
++ (eval "$ac_link") 2>conftest.er1
++ ac_status=$?
++ grep -v '^ *+' conftest.er1 >conftest.err
++ rm -f conftest.er1
++ cat conftest.err >&5
++ echo "$as_me:$LINENO: \$? = $ac_status" >&5
++ (exit $ac_status); } && {
++ test -z "$ac_c_werror_flag" ||
++ test ! -s conftest.err
++ } && test -s conftest$ac_exeext &&
++ $as_test_x conftest$ac_exeext; then
++
++ { echo "$as_me:$LINENO: result: yes" >&5
++echo "${ECHO_T}yes" >&6; }
++ ac_cv_pthread_rwlock_timedwrlock="yes"
++
++else
++ echo "$as_me: failed program was:" >&5
++sed 's/^/| /' conftest.$ac_ext >&5
++
++
++ { echo "$as_me:$LINENO: result: no" >&5
++echo "${ECHO_T}no" >&6; }
++ ac_cv_pthread_rwlock_timedwrlock="no"
++
++
++fi
++
++rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
++ conftest$ac_exeext conftest.$ac_ext
++if test "${ac_cv_pthread_rwlock_timedwrlock}" = "yes"; then
++
++cat >>confdefs.h <<\_ACEOF
++#define HAVE_PTHREAD_RWLOCK_TIMEDWRLOCK 1
++_ACEOF
++
++fi
++
++
+ if test "x${PBX_PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP}" != "x1"; then
+ { echo "$as_me:$LINENO: checking for PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP in pthread.h" >&5
+ echo $ECHO_N "checking for PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP in pthread.h... $ECHO_C" >&6; }
+Index: configure.ac
+===================================================================
+--- configure.ac (revision 189343)
++++ configure.ac (working copy)
+@@ -461,6 +461,24 @@
+ AC_MSG_RESULT(no)
+ )
+
++AC_MSG_CHECKING(for pthread_rwlock_timedwrlock() in pthread.h)
++AC_LINK_IFELSE(
++ [AC_LANG_PROGRAM(
++ [#include <pthread.h>
++ #include <time.h>],
++ [pthread_rwlock_t foo; struct timespec bar; pthread_rwlock_timedwrlock(&foo, &bar)])
++ ],[
++ AC_MSG_RESULT(yes)
++ ac_cv_pthread_rwlock_timedwrlock="yes"
++ ],[
++ AC_MSG_RESULT(no)
++ ac_cv_pthread_rwlock_timedwrlock="no"
++ ]
++)
++if test "${ac_cv_pthread_rwlock_timedwrlock}" = "yes"; then
++ AC_DEFINE([HAVE_PTHREAD_RWLOCK_TIMEDWRLOCK], 1, [Define if your system has pthread_rwlock_timedwrlock()])
++fi
++
+ AST_C_DEFINE_CHECK([PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP], [PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP], [pthread.h])
+
+ #if test "${cross_compiling}" = "no";
+Index: include/asterisk/lock.h
+===================================================================
+--- include/asterisk/lock.h (revision 189343)
++++ include/asterisk/lock.h (working copy)
+@@ -49,10 +49,15 @@
+ #define _ASTERISK_LOCK_H
+
+ #include <pthread.h>
++#include <time.h>
+ #include <sys/param.h>
+ #ifdef HAVE_BKTR
+ #include <execinfo.h>
+ #endif
++
++#ifndef HAVE_PTHREAD_RWLOCK_TIMEDWRLOCK
++#include "asterisk/time.h"
++#endif
+ #include "asterisk/logger.h"
+
+ /* internal macro to profile mutexes. Only computes the delay on
+@@ -1395,7 +1400,23 @@
+ ast_store_lock_info(AST_WRLOCK, filename, line, func, name, t);
+ #endif
+ }
++#ifdef HAVE_PTHREAD_RWLOCK_TIMEDWRLOCK
+ res = pthread_rwlock_timedrdlock(&t->lock, abs_timeout);
++#else
++ do {
++ struct timeval _start = ast_tvnow(), _diff;
++ for (;;) {
++ if (!(res = pthread_rwlock_tryrdlock(&t->lock))) {
++ break;
++ }
++ _diff = ast_tvsub(ast_tvnow(), _start);
++ if (_diff.tv_sec > abs_timeout->tv_sec || (_diff.tv_sec == abs_timeout->tv_sec && _diff.tv_usec * 1000 > abs_timeout->tv_nsec)) {
++ break;
++ }
++ usleep(1);
++ }
++ } while (0);
++#endif
+ if (!res) {
+ ast_reentrancy_lock(lt);
+ if (lt->reentrancy < AST_MAX_REENTRANCY) {
+@@ -1474,7 +1495,23 @@
+ ast_store_lock_info(AST_WRLOCK, filename, line, func, name, t);
+ #endif
+ }
++#ifdef HAVE_PTHREAD_RWLOCK_TIMEDWRLOCK
+ res = pthread_rwlock_timedwrlock(&t->lock, abs_timeout);
++#else
++ do {
++ struct timeval _start = ast_tvnow(), _diff;
++ for (;;) {
++ if (!(res = pthread_rwlock_trywrlock(&t->lock))) {
++ break;
++ }
++ _diff = ast_tvsub(ast_tvnow(), _start);
++ if (_diff.tv_sec > abs_timeout->tv_sec || (_diff.tv_sec == abs_timeout->tv_sec && _diff.tv_usec * 1000 > abs_timeout->tv_nsec)) {
++ break;
++ }
++ usleep(1);
++ }
++ } while (0);
++#endif
+ if (!res) {
+ ast_reentrancy_lock(lt);
+ if (lt->reentrancy < AST_MAX_REENTRANCY) {
+@@ -1762,7 +1799,23 @@
+
+ static inline int ast_rwlock_timedrdlock(ast_rwlock_t *prwlock, const struct timespec *abs_timeout)
+ {
+- return pthread_rwlock_timedrdlock(prwlock, abs_timeout);
++ int res;
++#ifdef HAVE_PTHREAD_RWLOCK_TIMEDWRLOCK
++ res = pthread_rwlock_timedrdlock(prwlock, abs_timeout);
++#else
++ struct timeval _start = ast_tvnow(), _diff;
++ for (;;) {
++ if (!(res = pthread_rwlock_tryrdlock(prwlock))) {
++ break;
++ }
++ _diff = ast_tvsub(ast_tvnow(), _start);
++ if (_diff.tv_sec > abs_timeout->tv_sec || (_diff.tv_sec == abs_timeout->tv_sec && _diff.tv_usec * 1000 > abs_timeout->tv_nsec)) {
++ break;
++ }
++ usleep(1);
++ }
++#endif
++ return res;
+ }
+
+ static inline int ast_rwlock_tryrdlock(ast_rwlock_t *prwlock)
+@@ -1777,7 +1830,25 @@
+
+ static inline int ast_rwlock_timedwrlock(ast_rwlock_t *prwlock, const struct timespec *abs_timeout)
+ {
+- return pthread_rwlock_timedwrlock(prwlock, abs_timeout);
++ int res;
++#ifdef HAVE_PTHREAD_RWLOCK_TIMEDWRLOCK
++ res = pthread_rwlock_timedwrlock(prwlock, abs_timeout);
++#else
++ do {
++ struct timeval _start = ast_tvnow(), _diff;
++ for (;;) {
++ if (!(res = pthread_rwlock_trywrlock(prwlock))) {
++ break;
++ }
++ _diff = ast_tvsub(ast_tvnow(), _start);
++ if (_diff.tv_sec > abs_timeout->tv_sec || (_diff.tv_sec == abs_timeout->tv_sec && _diff.tv_usec * 1000 > abs_timeout->tv_nsec)) {
++ break;
++ }
++ usleep(1);
++ }
++ } while (0);
++#endif
++ return res;
+ }
+
+ static inline int ast_rwlock_trywrlock(ast_rwlock_t *prwlock)
+Index: include/asterisk/autoconfig.h.in
+===================================================================
+--- include/asterisk/autoconfig.h.in (revision 189343)
++++ include/asterisk/autoconfig.h.in (working copy)
+@@ -704,6 +704,9 @@
+ pthread.h */
+ #undef HAVE_PTHREAD_RWLOCK_PREFER_WRITER_NP
+
++/* Define if your system has pthread_rwlock_timedwrlock() */
++#undef HAVE_PTHREAD_RWLOCK_TIMEDWRLOCK
++
+ /* Define to 1 if the system has the type `ptrdiff_t'. */
+ #undef HAVE_PTRDIFF_T
+
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.macosforge.org/pipermail/macports-changes/attachments/20090722/376ac903/attachment.html>
More information about the macports-changes
mailing list