[svn-commits] nadi: branch group/trunk-cm-csel-hash r46907 - in /team/group/trunk-cm-csel-h...

svn-commits at lists.digium.com svn-commits at lists.digium.com
Thu Nov 2 08:52:28 MST 2006


Author: nadi
Date: Thu Nov  2 09:52:27 2006
New Revision: 46907

URL: http://svn.digium.com/view/asterisk?rev=46907&view=rev
Log:
Merged revisions 46330,46339,46341,46346,46348,46354,46359-46360,46364-46366,46368-46369,46371-46372,46378-46379,46383,46385,46387,46390,46392-46395,46397,46399-46400,46404-46405,46408-46410,46432,46434,46436,46439,46459,46461,46466,46475-46476,46489,46507-46509,46512-46514,46529,46541,46556,46559,46562,46564-46565,46582,46584,46609,46629-46630,46635,46649-46650,46661,46683,46695-46696,46717-46719,46732,46745,46758-46759,46773-46774,46777,46779,46781-46782,46801,46823,46846,46848-46849,46863 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/trunk

................
r46330 | russell | 2006-10-26 18:35:34 +0200 (Do, 26 Okt 2006) | 19 lines

Merged revisions 46329 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r46329 | russell | 2006-10-26 11:31:05 -0500 (Thu, 26 Oct 2006) | 11 lines

- If the source has no audio or no video portion, do not call powerof() to
  get the format index.
- Don't run through the audio and video loops if there is no audio or video
  portion of the source
If 0 is passed to powerof, it will return -1.  This value of -1 was then being
used as an array index in these loops, which caused a crash on some systems.
Other than this issue, this code works as we expected it to.  If a format is
not in the source, and we have to translation path to it, it is not offered in
the list of acceptable destination formats.
(fixes issue #8231)

........

................
r46339 | russell | 2006-10-26 19:52:15 +0200 (Do, 26 Okt 2006) | 2 lines

fix various spelling mistakes in comments (issue #8237, jmls)

................
r46341 | qwell | 2006-10-26 20:04:46 +0200 (Do, 26 Okt 2006) | 2 lines

oops - somebody forgot to change this - long ago, probably.

................
r46346 | oej | 2006-10-26 22:22:14 +0200 (Do, 26 Okt 2006) | 2 lines

Show if the channel is ready for video or T.38 udptl

................
r46348 | qwell | 2006-10-26 22:27:52 +0200 (Do, 26 Okt 2006) | 10 lines

Merged revisions 46347 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r46347 | qwell | 2006-10-26 15:25:44 -0500 (Thu, 26 Oct 2006) | 2 lines

Fix small formatting issue, that causes misaligned line

........

................
r46354 | crichter | 2006-10-27 13:18:32 +0200 (Fr, 27 Okt 2006) | 33 lines

Merged revisions 46351-46353 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.4

................
r46351 | crichter | 2006-10-27 11:49:20 +0200 (Fr, 27 Okt 2006) | 9 lines

Merged revisions 46176 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.2

........
r46176 | crichter | 2006-10-25 10:41:59 +0200 (Mi, 25 Okt 2006) | 1 line

added nttimeout option to configure wether we disconnect calls on NT timeouts or not during an overlapdial session
........

................
r46352 | crichter | 2006-10-27 11:58:44 +0200 (Fr, 27 Okt 2006) | 1 line

fixed not compile issue, which was just introduced
................
r46353 | crichter | 2006-10-27 12:03:23 +0200 (Fr, 27 Okt 2006) | 9 lines

Merged revisions 46350 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.2

........
r46350 | crichter | 2006-10-27 11:24:01 +0200 (Fr, 27 Okt 2006) | 1 line

fixed a bug which caused chan_misdn to try to allocate 2 times the same channel on high load, which then caused instability of mISDN. removed a useless function from isdn_lib.c
........

................

................
r46359 | russell | 2006-10-27 17:44:34 +0200 (Fr, 27 Okt 2006) | 13 lines

Merged revisions 46358 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r46358 | russell | 2006-10-27 10:32:40 -0500 (Fri, 27 Oct 2006) | 5 lines

Instead of iterating all of the options once to look for jitterbuffer options,
and then again for everything else, move the processing of jitterbuffer
options into the main loop so that there are no erroneous messages about
ignoring unknown options.  (issue #8226)

........

................
r46360 | russell | 2006-10-27 18:47:44 +0200 (Fr, 27 Okt 2006) | 4 lines

Add the ability to customize some of the prompts used within the voicemail
application by configuring them in voicemail.conf (issue #7415, patch by
fkasumovic, with some fixes and documentation updates by myself)

................
r46364 | russell | 2006-10-27 19:42:57 +0200 (Fr, 27 Okt 2006) | 13 lines

Merged revisions 46363 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r46363 | russell | 2006-10-27 12:39:31 -0500 (Fri, 27 Oct 2006) | 5 lines

We should always be using _exit() after a fork() or vfork() instead of exit().
This is because exit() does some extra cleanup which in some implementations
of vfork(), for example, can actually modify the state of the parent process,
causing very weird bugs or crashes.  (issue #7971, Nick Gavrikov)

........

................
r46365 | oej | 2006-10-27 19:45:43 +0200 (Fr, 27 Okt 2006) | 2 lines

Put this patch on hold pending further testing...

................
r46366 | mattf | 2006-10-27 19:46:04 +0200 (Fr, 27 Okt 2006) | 3 lines

First pass at implementation to be able to block and unblock zap channels for 
use.

................
r46368 | oej | 2006-10-27 20:31:19 +0200 (Fr, 27 Okt 2006) | 2 lines

raise the pressure on Christian :-)

................
r46369 | bweschke | 2006-10-27 20:59:16 +0200 (Fr, 27 Okt 2006) | 7 lines

  * Added option to run macro when a queue member is connected to a caller,
     see queues.conf.sample for details.
  * Added QUEUE_VARIABLES function to set queue variables added setqueuevar and
    setqueueentryvar options for each queue, see queues.conf.sample for details.
								(#8216, jmls reported and submitted)


................
r46371 | russell | 2006-10-27 21:04:34 +0200 (Fr, 27 Okt 2006) | 12 lines

Merged revisions 46370 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r46370 | russell | 2006-10-27 14:03:32 -0500 (Fri, 27 Oct 2006) | 4 lines

move the copy of the default settings to the global settings back out of
process_zap, so that they aren't overwritten when process_zap is called
multiple times

........

................
r46372 | bweschke | 2006-10-27 21:28:34 +0200 (Fr, 27 Okt 2006) | 3 lines

 Let's make sure we hold the mutex lock before we go looking at values in the queue structure that could potentially be changing while we're running.


................
r46378 | file | 2006-10-28 18:39:40 +0200 (Sa, 28 Okt 2006) | 10 lines

Merged revisions 46377 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r46377 | file | 2006-10-28 12:37:44 -0400 (Sat, 28 Oct 2006) | 2 lines

Don't build muted on OpenBSD, it is not supported.

........

................
r46379 | oej | 2006-10-28 19:25:23 +0200 (Sa, 28 Okt 2006) | 7 lines

- Don't lock the dialoglist during the whole destruction of a single SIP dialog. Only
  lock when needed - when we remove the dialog from the dialog list
  If this doesn't lead to severe problems, it might help with some locking issues
  in 1.4/1.2.
- Remove the term "interface" as a synonym for a SIP dialog. Sorry, Mark, but no
  one understands it... ;-)

................
r46383 | oej | 2006-10-28 21:16:23 +0200 (Sa, 28 Okt 2006) | 2 lines

Merge from 1.4 : Don't send 183 reliably...

................
r46385 | oej | 2006-10-28 21:30:31 +0200 (Sa, 28 Okt 2006) | 4 lines

Don't duplicate function if not needed... 
- removing transmit_reinvite_with_t38_sdp in favour of adding an argument to 
  transmit_reinvite_with_sdp

................
r46387 | oej | 2006-10-28 22:05:19 +0200 (Sa, 28 Okt 2006) | 2 lines

Adding documentation inspired by a virtual drink with an anonymous man in New Jersey

................
r46390 | oej | 2006-10-28 22:27:21 +0200 (Sa, 28 Okt 2006) | 2 lines

Only accept message once

................
r46392 | oej | 2006-10-29 09:15:26 +0100 (So, 29 Okt 2006) | 3 lines

maxtime is not needed any more now that we actually set the T1 timer
based on the qualify result.

................
r46393 | oej | 2006-10-29 09:22:22 +0100 (So, 29 Okt 2006) | 2 lines

Documentation correction

................
r46394 | oej | 2006-10-29 09:26:05 +0100 (So, 29 Okt 2006) | 2 lines

Documentation update (I guess)

................
r46395 | oej | 2006-10-29 09:27:31 +0100 (So, 29 Okt 2006) | 2 lines

Documentation update again

................
r46397 | oej | 2006-10-29 09:40:57 +0100 (So, 29 Okt 2006) | 2 lines

Spelling fix.

................
r46399 | oej | 2006-10-29 17:58:07 +0100 (So, 29 Okt 2006) | 3 lines

- Fix the OUTGOING stuff (merge from 1.4)
- Make sure we UNREF authpeer when not needed

................
r46400 | oej | 2006-10-29 18:07:47 +0100 (So, 29 Okt 2006) | 2 lines

Issues related to issue #7828 - segfault with MWI subscriptions and realtime.

................
r46404 | oej | 2006-10-29 20:14:46 +0100 (So, 29 Okt 2006) | 2 lines

Block patch from other branch

................
r46405 | oej | 2006-10-29 20:16:36 +0100 (So, 29 Okt 2006) | 2 lines

Issue #7608 - Notifications sent with wrong content-type (imported from 1.2, 1.4)

................
r46408 | oej | 2006-10-29 20:35:04 +0100 (So, 29 Okt 2006) | 2 lines

Issue #7869 - Stop retransmission of 302 redirects.

................
r46409 | oej | 2006-10-29 21:21:33 +0100 (So, 29 Okt 2006) | 7 lines

Bind RTCP to the same IP as RTP. 

I currently don't see this as a bug that needs to be fixed in 1.4/1.2 too,
but feel free to backport if you see it that way. RTCP now binds to
ALL IP addresses on the host, RTP to a specific address.


................
r46410 | oej | 2006-10-29 21:47:01 +0100 (So, 29 Okt 2006) | 2 lines

Small formatting changes

................
r46432 | oej | 2006-10-30 17:11:08 +0100 (Mo, 30 Okt 2006) | 2 lines

The RTCP patch started in trunk, so don't start all over again :-)

................
r46434 | oej | 2006-10-30 17:33:02 +0100 (Mo, 30 Okt 2006) | 6 lines

Issue 8246 Doxygen updates (kshumard)	


			THANK YOU!


................
r46436 | mattf | 2006-10-30 17:50:22 +0100 (Mo, 30 Okt 2006) | 2 lines

Don't make errors when we don't need them

................
r46439 | oej | 2006-10-30 17:59:02 +0100 (Mo, 30 Okt 2006) | 4 lines

In debug mode, recognize that someone is sending zrtp, even though we
can't do anything with it yet. Ideally a first step would be a 
passthrough mode.

................
r46459 | mattf | 2006-10-30 18:32:04 +0100 (Mo, 30 Okt 2006) | 2 lines

Specify which linkset we're getting the messages from in the message

................
r46461 | oej | 2006-10-30 19:02:37 +0100 (Mo, 30 Okt 2006) | 2 lines

Small conversion to ast_channel_unlock

................
r46466 | mattf | 2006-10-30 19:04:28 +0100 (Mo, 30 Okt 2006) | 2 lines

Make sure we give the linkset number, not the offset in the linksets array

................
r46475 | file | 2006-10-30 19:17:02 +0100 (Mo, 30 Okt 2006) | 10 lines

Merged revisions 46474 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r46474 | file | 2006-10-30 13:13:07 -0500 (Mon, 30 Oct 2006) | 2 lines

We need to lock the pvt structure during retransmission as another worker thread may be doing something as well.

........

................
r46476 | oej | 2006-10-30 19:34:51 +0100 (Mo, 30 Okt 2006) | 2 lines

Globals need the "global_" prefix in chan_sip, and need to be reset to default value at reload.

................
r46489 | oej | 2006-10-30 20:56:14 +0100 (Mo, 30 Okt 2006) | 6 lines

Change name of "contact" setting to "callback" which better reflects what it
is to the person that configures asterisk. That we use it internally in the
contact header is a totally different story.

Still not convinced this is a good option.

................
r46507 | file | 2006-10-30 22:11:37 +0100 (Mo, 30 Okt 2006) | 10 lines

Merged revisions 46506 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r46506 | file | 2006-10-30 16:09:13 -0500 (Mon, 30 Oct 2006) | 2 lines

Don't explicitly link in crypt as it is not used on some platforms.

........

................
r46508 | oej | 2006-10-30 22:18:39 +0100 (Mo, 30 Okt 2006) | 2 lines

Issue #3930 - Add manager command for listing dialplan (coded april 2005, in bugtracker since) 

................
r46509 | oej | 2006-10-30 22:22:41 +0100 (Mo, 30 Okt 2006) | 2 lines

Update sip list to eventlist format.

................
r46512 | kpfleming | 2006-10-30 22:46:34 +0100 (Mo, 30 Okt 2006) | 10 lines

Merged revisions 46511 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r46511 | kpfleming | 2006-10-30 15:46:07 -0600 (Mon, 30 Oct 2006) | 2 lines

ensure that items removed from a list are always unlinked from the list (next pointer set to NULL)

........

................
r46513 | oej | 2006-10-30 22:48:41 +0100 (Mo, 30 Okt 2006) | 8 lines

Adding dialplan function IFMODULE, so you can create dialplans that handle
various PBX installations and checks if a module is loaded before using
it.
	example IFMODULE(chan_sip3.so)

issue #6671 in the bug tracker, finally gone. Thanks to mithraen for keeping
it updated.

................
r46514 | oej | 2006-10-30 22:56:48 +0100 (Mo, 30 Okt 2006) | 2 lines

show, list, view, display... whatever.

................
r46529 | kpfleming | 2006-10-30 23:27:56 +0100 (Mo, 30 Okt 2006) | 11 lines

Merged revisions 46526 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r46526 | kpfleming | 2006-10-30 16:19:55 -0600 (Mon, 30 Oct 2006) | 3 lines

when unregistering a translator, don't rebuild the translation matrix unless needed
when filtering formats out of an offer, ensure we check for translation ability in both directions

........

................
r46541 | murf | 2006-10-31 00:11:55 +0100 (Di, 31 Okt 2006) | 1 line

These changes submitted by moy via bug 6992, to add a Dial 'End' event to asterisk. I include some changes to astman to cover other events that have been added.
................
r46556 | russell | 2006-10-31 07:10:59 +0100 (Di, 31 Okt 2006) | 13 lines

Merged revisions 46554 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r46554 | russell | 2006-10-31 00:55:07 -0500 (Tue, 31 Oct 2006) | 5 lines

Add a small tweak to the code that checks to see whether destination formats
are translatable based on the source format.  If we have already determined
that there is no translation path in one direction, don't bother checking the
other direction.

........

................
r46559 | russell | 2006-10-31 07:15:12 +0100 (Di, 31 Okt 2006) | 19 lines

Merged revisions 46558 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.4

................
r46558 | russell | 2006-10-31 01:14:13 -0500 (Tue, 31 Oct 2006) | 11 lines

Merged revisions 46557 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.2

........
r46557 | russell | 2006-10-31 01:13:09 -0500 (Tue, 31 Oct 2006) | 3 lines

fix some copy/paste bugs in the checking of arguments for the 
"control stream file" AGI command (issue #8255, mnicholson)

........

................

................
r46562 | russell | 2006-10-31 07:21:40 +0100 (Di, 31 Okt 2006) | 19 lines

Merged revisions 46561 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.4

................
r46561 | russell | 2006-10-31 01:19:56 -0500 (Tue, 31 Oct 2006) | 11 lines

Merged revisions 46560 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.2

........
r46560 | russell | 2006-10-31 01:18:36 -0500 (Tue, 31 Oct 2006) | 3 lines

When handling the case where the hostname is just an IPV4 numeric address,
be sure to set the address type.  (issue #8247, alexr)

........

................

................
r46564 | russell | 2006-10-31 07:31:34 +0100 (Di, 31 Okt 2006) | 11 lines

Merged revisions 46563 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r46563 | russell | 2006-10-31 01:30:53 -0500 (Tue, 31 Oct 2006) | 3 lines

Start Asterisk later in the boot process to ensure it starts after stuff like
MySQL (issue #8253, Alric)

........

................
r46565 | russell | 2006-10-31 07:37:48 +0100 (Di, 31 Okt 2006) | 2 lines

add author doxygen tag (issue #8241, kshumard)

................
r46582 | oej | 2006-10-31 09:08:56 +0100 (Di, 31 Okt 2006) | 4 lines

Take two, using find_resource on Kevin's suggestion. 
Might need better locking support, giving up if we can't get the lock. Right now,
using existing locking in find_resource

................
r46584 | oej | 2006-10-31 09:35:54 +0100 (Di, 31 Okt 2006) | 2 lines

Block patch that only applies to 1.4

................
r46609 | oej | 2006-10-31 10:24:55 +0100 (Di, 31 Okt 2006) | 3 lines

- If peer that register fails ACL, fail him
- Remove the 1.2 props I've set by mistake earlier 

................
r46629 | oej | 2006-10-31 11:29:24 +0100 (Di, 31 Okt 2006) | 4 lines

Fix rport handling.

...where did the 1.2 properties come from, really? they're back.

................
r46630 | oej | 2006-10-31 11:42:22 +0100 (Di, 31 Okt 2006) | 2 lines

Add manager sendtext action. (Issue 6131, ZX81 - thanks!)

................
r46635 | oej | 2006-10-31 12:01:06 +0100 (Di, 31 Okt 2006) | 2 lines

Issue #80898 - Restoring func_enum (otmar) 

................
r46649 | oej | 2006-10-31 14:51:30 +0100 (Di, 31 Okt 2006) | 2 lines

Cleaning up code

................
r46650 | oej | 2006-10-31 14:56:33 +0100 (Di, 31 Okt 2006) | 2 lines

Set #define for TIMER T1 value

................
r46661 | russell | 2006-10-31 16:22:28 +0100 (Di, 31 Okt 2006) | 6 lines

Fix the new send text manager command.  There is no way this could have worked.

- Check the channel name string length to be zero, not non-zero
- Check the message string length to be zero, not non-zero
- unlock the channel *after* calling sendtext

................
r46683 | rizzo | 2006-10-31 18:58:49 +0100 (Di, 31 Okt 2006) | 3 lines

remove old/useless usecount management code.


................
r46695 | rizzo | 2006-10-31 19:04:19 +0100 (Di, 31 Okt 2006) | 3 lines

remove old/useless usecount stuff.


................
r46696 | rizzo | 2006-10-31 19:10:21 +0100 (Di, 31 Okt 2006) | 3 lines

remove old/useless usecount handling


................
r46717 | qwell | 2006-10-31 23:06:27 +0100 (Di, 31 Okt 2006) | 9 lines

Blocked revisions 46716 via svnmerge

........
r46716 | qwell | 2006-10-31 16:02:15 -0600 (Tue, 31 Oct 2006) | 2 lines

Fix "core show translation" output.  Issue #8243, patch by Damin.

........

................
r46718 | qwell | 2006-10-31 23:07:18 +0100 (Di, 31 Okt 2006) | 2 lines

Fix "core show translation" output.  Issue #8243, patch by Damin.

................
r46719 | kpfleming | 2006-10-31 23:19:08 +0100 (Di, 31 Okt 2006) | 10 lines

Merged revisions 46714 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r46714 | kpfleming | 2006-10-31 15:47:48 -0600 (Tue, 31 Oct 2006) | 2 lines

add an API so that translators can activate/deactivate themselves when needed

........

................
r46732 | mogorman | 2006-11-01 01:07:37 +0100 (Mi, 01 Nov 2006) | 3 lines

change default return extension after parking timeout.
6953 with minor changes.

................
r46745 | russell | 2006-11-01 17:51:26 +0100 (Mi, 01 Nov 2006) | 10 lines

Merged revisions 46744 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r46744 | russell | 2006-11-01 11:39:09 -0500 (Wed, 01 Nov 2006) | 2 lines

Prevent an infinite loop when config processing gets to a jitterbuffer option

........

................
r46758 | rizzo | 2006-11-01 18:09:47 +0100 (Mi, 01 Nov 2006) | 3 lines

move variable declaration in the middle of a block


................
r46759 | murf | 2006-11-01 18:46:40 +0100 (Mi, 01 Nov 2006) | 1 line

Cleanups suggested by Russell.
................
r46773 | murf | 2006-11-01 19:14:17 +0100 (Mi, 01 Nov 2006) | 1 line

This introduces Brazilian Portuguese via 7663
................
r46774 | murf | 2006-11-01 19:16:28 +0100 (Mi, 01 Nov 2006) | 1 line

OOps. forgot to add this to CHANGES
................
r46777 | file | 2006-11-01 19:26:12 +0100 (Mi, 01 Nov 2006) | 10 lines

Merged revisions 46775 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r46775 | file | 2006-11-01 13:21:34 -0500 (Wed, 01 Nov 2006) | 2 lines

It's another round of chan_iax2 fixes! Should hopefully fix the deadlock issues people have been reporting. IAXtel now has qualify turned on for 800 peers and it is handling it fine.

........

................
r46779 | russell | 2006-11-01 19:29:05 +0100 (Mi, 01 Nov 2006) | 25 lines

Merged revisions 46778 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.4

................
r46778 | russell | 2006-11-01 13:26:35 -0500 (Wed, 01 Nov 2006) | 17 lines

Merged revisions 46776 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.2

........
r46776 | russell | 2006-11-01 13:24:17 -0500 (Wed, 01 Nov 2006) | 9 lines

soxmix and Asterisk expect different file extensions for certain formats.  This
was already handled for the wav49 format.  However, it was not handled for
ulaw and alaw.  I fixed this in such a way that using the alternate extensions
for ulaw and alaw will only happen if we know we're calling soxmix, and not a
custom script defined using the MONITOR_EXEC variable.  The wav49 processing
was left alone so that external scripts will see no behavior change.
(issue #7550, reported by mnicholson, proposed patch by junky, committed fix
is a bit different)

........

................

................
r46781 | russell | 2006-11-01 19:40:13 +0100 (Mi, 01 Nov 2006) | 5 lines

Add the ability to pass options to the Dial application when using the DUNDi
switch in the dialplan by setting the DUNDIDIALARGS channel variable.
(issue #8084, patch by bluecrow76, with small modifications and documentation
updates)

................
r46782 | file | 2006-11-01 19:41:49 +0100 (Mi, 01 Nov 2006) | 10 lines

Merged revisions 46780 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r46780 | file | 2006-11-01 13:39:47 -0500 (Wed, 01 Nov 2006) | 2 lines

Force poll() emulation for Darwin to always be on. It's too broken to consider being used. This resolves the console issue OSX users have been seeing. I would have liked to autoconf this but I haven't been able to come up with a test case that works. Que sera.

........

................
r46801 | murf | 2006-11-01 20:48:40 +0100 (Mi, 01 Nov 2006) | 1 line

a fix for bug 8251; the var_val needs to accept longer strings or mass confusion and a lot of lost time is the result
................
r46823 | mogorman | 2006-11-01 21:38:05 +0100 (Mi, 01 Nov 2006) | 10 lines

Merged revisions 46822 via svnmerge from 
https://svn.digium.com/svn/asterisk/branches/1.4

........
r46822 | mogorman | 2006-11-01 14:35:41 -0600 (Wed, 01 Nov 2006) | 2 lines

bind address support from bug 8164

........

................
r46846 | russell | 2006-11-01 23:35:52 +0100 (Mi, 01 Nov 2006) | 13 lines

Merged revisions 46845 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r46845 | russell | 2006-11-01 17:32:12 -0500 (Wed, 01 Nov 2006) | 5 lines

Add a check in the configure script to determine whether ld is GNU ld or not.
This is needed because module embedding only works for gnu ld.  GNU ld is now
listed as a dependency for all of the module embedding options in menuselect.
(issue #8143)

........

................
r46848 | russell | 2006-11-01 23:54:15 +0100 (Mi, 01 Nov 2006) | 11 lines

Merged revisions 46847 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r46847 | russell | 2006-11-01 17:51:21 -0500 (Wed, 01 Nov 2006) | 3 lines

Fixes for cross-compilation on mips 
(issue #8058, ywalther, with some modifications)

........

................
r46849 | russell | 2006-11-01 23:58:34 +0100 (Mi, 01 Nov 2006) | 2 lines

Add a couple of things to the CHANGES file

................
r46863 | russell | 2006-11-02 00:04:14 +0100 (Do, 02 Nov 2006) | 10 lines

Merged revisions 46857 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r46857 | russell | 2006-11-01 18:01:48 -0500 (Wed, 01 Nov 2006) | 2 lines

fix saying one hundred and two hundred in hebrew (issue #7810, eldadran)

........

................

Added:
    team/group/trunk-cm-csel-hash/funcs/func_module.c
      - copied unchanged from r46863, trunk/funcs/func_module.c
Modified:
    team/group/trunk-cm-csel-hash/   (props changed)
    team/group/trunk-cm-csel-hash/CHANGES
    team/group/trunk-cm-csel-hash/Makefile
    team/group/trunk-cm-csel-hash/aclocal.m4
    team/group/trunk-cm-csel-hash/apps/app_alarmreceiver.c
    team/group/trunk-cm-csel-hash/apps/app_cdr.c
    team/group/trunk-cm-csel-hash/apps/app_dial.c
    team/group/trunk-cm-csel-hash/apps/app_externalivr.c
    team/group/trunk-cm-csel-hash/apps/app_festival.c
    team/group/trunk-cm-csel-hash/apps/app_meetme.c
    team/group/trunk-cm-csel-hash/apps/app_osplookup.c
    team/group/trunk-cm-csel-hash/apps/app_page.c
    team/group/trunk-cm-csel-hash/apps/app_queue.c
    team/group/trunk-cm-csel-hash/apps/app_rpt.c
    team/group/trunk-cm-csel-hash/apps/app_sms.c
    team/group/trunk-cm-csel-hash/apps/app_voicemail.c
    team/group/trunk-cm-csel-hash/build_tools/embed_modules.xml
    team/group/trunk-cm-csel-hash/build_tools/menuselect-deps.in
    team/group/trunk-cm-csel-hash/build_tools/strip_nonapi
    team/group/trunk-cm-csel-hash/channels/chan_gtalk.c
    team/group/trunk-cm-csel-hash/channels/chan_iax2.c
    team/group/trunk-cm-csel-hash/channels/chan_misdn.c
    team/group/trunk-cm-csel-hash/channels/chan_oss.c
    team/group/trunk-cm-csel-hash/channels/chan_sip.c
    team/group/trunk-cm-csel-hash/channels/chan_zap.c
    team/group/trunk-cm-csel-hash/channels/misdn/isdn_lib.h
    team/group/trunk-cm-csel-hash/channels/misdn/isdn_msg_parser.c
    team/group/trunk-cm-csel-hash/codecs/gsm/Makefile
    team/group/trunk-cm-csel-hash/configs/misdn.conf.sample
    team/group/trunk-cm-csel-hash/configs/queues.conf.sample
    team/group/trunk-cm-csel-hash/configs/sip.conf.sample
    team/group/trunk-cm-csel-hash/configs/voicemail.conf.sample
    team/group/trunk-cm-csel-hash/configure
    team/group/trunk-cm-csel-hash/configure.ac
    team/group/trunk-cm-csel-hash/contrib/asterisk-ng-doxygen
    team/group/trunk-cm-csel-hash/contrib/init.d/rc.redhat.asterisk
    team/group/trunk-cm-csel-hash/contrib/scripts/astgenkey.8
    team/group/trunk-cm-csel-hash/doc/channelvariables.txt
    team/group/trunk-cm-csel-hash/formats/format_ogg_vorbis.c
    team/group/trunk-cm-csel-hash/funcs/func_enum.c
    team/group/trunk-cm-csel-hash/include/asterisk/channel.h
    team/group/trunk-cm-csel-hash/include/asterisk/doxyref.h
    team/group/trunk-cm-csel-hash/include/asterisk/enum.h
    team/group/trunk-cm-csel-hash/include/asterisk/file.h
    team/group/trunk-cm-csel-hash/include/asterisk/frame.h
    team/group/trunk-cm-csel-hash/include/asterisk/linkedlists.h
    team/group/trunk-cm-csel-hash/include/asterisk/lock.h
    team/group/trunk-cm-csel-hash/include/asterisk/manager.h
    team/group/trunk-cm-csel-hash/include/asterisk/module.h
    team/group/trunk-cm-csel-hash/include/asterisk/translate.h
    team/group/trunk-cm-csel-hash/main/Makefile
    team/group/trunk-cm-csel-hash/main/app.c
    team/group/trunk-cm-csel-hash/main/ast_expr2f.c
    team/group/trunk-cm-csel-hash/main/asterisk.c
    team/group/trunk-cm-csel-hash/main/config.c
    team/group/trunk-cm-csel-hash/main/enum.c
    team/group/trunk-cm-csel-hash/main/loader.c
    team/group/trunk-cm-csel-hash/main/manager.c
    team/group/trunk-cm-csel-hash/main/pbx.c
    team/group/trunk-cm-csel-hash/main/rtp.c
    team/group/trunk-cm-csel-hash/main/say.c
    team/group/trunk-cm-csel-hash/main/translate.c
    team/group/trunk-cm-csel-hash/main/utils.c
    team/group/trunk-cm-csel-hash/makeopts.in
    team/group/trunk-cm-csel-hash/pbx/pbx_dundi.c
    team/group/trunk-cm-csel-hash/res/res_agi.c
    team/group/trunk-cm-csel-hash/res/res_config_odbc.c
    team/group/trunk-cm-csel-hash/res/res_features.c
    team/group/trunk-cm-csel-hash/res/res_monitor.c
    team/group/trunk-cm-csel-hash/res/res_musiconhold.c
    team/group/trunk-cm-csel-hash/utils/Makefile
    team/group/trunk-cm-csel-hash/utils/astman.c

Propchange: team/group/trunk-cm-csel-hash/
------------------------------------------------------------------------------
--- branch-1.4-blocked (original)
+++ branch-1.4-blocked Thu Nov  2 09:52:27 2006
@@ -1,1 +1,1 @@
-/branches/1.4:43484,43510,43582,43626,43703,43756,44023,44760,45246,45313-45314,45381,46165,46214,46253,46255
+/branches/1.4:43484,43510,43582,43626,43703,43756,44023,44760,45246,45313-45314,45381,46165,46214,46253,46255,46401,46431,46583,46716

Propchange: team/group/trunk-cm-csel-hash/
------------------------------------------------------------------------------
Binary property 'branch-1.4-merged' - no diff available.

Propchange: team/group/trunk-cm-csel-hash/
------------------------------------------------------------------------------
    svnmerge-blocked = /branches/1.2:46361

Propchange: team/group/trunk-cm-csel-hash/
------------------------------------------------------------------------------
--- svnmerge-integrated (original)
+++ svnmerge-integrated Thu Nov  2 09:52:27 2006
@@ -1,1 +1,1 @@
-/trunk:1-46320
+/trunk:1-46875

Modified: team/group/trunk-cm-csel-hash/CHANGES
URL: http://svn.digium.com/view/asterisk/team/group/trunk-cm-csel-hash/CHANGES?rev=46907&r1=46906&r2=46907&view=diff
==============================================================================
--- team/group/trunk-cm-csel-hash/CHANGES (original)
+++ team/group/trunk-cm-csel-hash/CHANGES Thu Nov  2 09:52:27 2006
@@ -1,7 +1,12 @@
 Changes since Asterisk 1.4-beta was branched:
-  * rev.45982: enable https support for builtin web server.
+  * Added the bindaddr option to gtalk.conf.
+  * Added the ability to specify arguments to the Dial application when using
+    the DUNDi switch in the dialplan.
+  * Added the ability to customize which sound files are used for some of the
+    prompts within the Voicemail application by changing them in voicemail.conf
+  * enable https support for builtin web server.
      See configs/http.conf.sample for details.
-  * rev.45945: add a new option, match_auth_username, to sip.conf,
+  * add a new option, match_auth_username, to sip.conf,
      to improve the matching of incoming requests.
      If set, and the incoming request carries authentication info,
      the username to match in the users list is taken from there
@@ -48,3 +53,8 @@
      and numeric representation of type of calling number value.
   * Added 'C' option to Meetme which causes a caller to continue in the dialplan
      when kicked out.
+  * Added option to run macro when a queue member is connected to a caller, 
+     see queues.conf.sample for details.
+  * Added QUEUE_VARIABLES function to set queue variables added setqueuevar and 
+    setqueueentryvar options for each queue, see queues.conf.sample for details.
+  * Brazilian Portuguese (pt-BR) in VM, and say.c was added via patch from cfassoni.

Modified: team/group/trunk-cm-csel-hash/Makefile
URL: http://svn.digium.com/view/asterisk/team/group/trunk-cm-csel-hash/Makefile?rev=46907&r1=46906&r2=46907&view=diff
==============================================================================
--- team/group/trunk-cm-csel-hash/Makefile (original)
+++ team/group/trunk-cm-csel-hash/Makefile Thu Nov  2 09:52:27 2006
@@ -51,6 +51,7 @@
 export DESTDIR
 export PROC
 export SOLINK
+export STRIP
 
 # even though we could use '-include makeopts' here, use a wildcard
 # lookup anyway, so that make won't try to build makeopts if it doesn't

Modified: team/group/trunk-cm-csel-hash/aclocal.m4
URL: http://svn.digium.com/view/asterisk/team/group/trunk-cm-csel-hash/aclocal.m4?rev=46907&r1=46906&r2=46907&view=diff
==============================================================================
--- team/group/trunk-cm-csel-hash/aclocal.m4 (original)
+++ team/group/trunk-cm-csel-hash/aclocal.m4 Thu Nov  2 09:52:27 2006
@@ -11,4 +11,6373 @@
 # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
 # PARTICULAR PURPOSE.
 
+# libtool.m4 - Configure libtool for the host system. -*-Autoconf-*-
+
+# serial 48 Debian 1.5.22-4 AC_PROG_LIBTOOL
+
+
+# AC_PROVIDE_IFELSE(MACRO-NAME, IF-PROVIDED, IF-NOT-PROVIDED)
+# -----------------------------------------------------------
+# If this macro is not defined by Autoconf, define it here.
+m4_ifdef([AC_PROVIDE_IFELSE],
+         [],
+         [m4_define([AC_PROVIDE_IFELSE],
+	         [m4_ifdef([AC_PROVIDE_$1],
+		           [$2], [$3])])])
+
+
+# AC_PROG_LIBTOOL
+# ---------------
+AC_DEFUN([AC_PROG_LIBTOOL],
+[AC_REQUIRE([_AC_PROG_LIBTOOL])dnl
+dnl If AC_PROG_CXX has already been expanded, run AC_LIBTOOL_CXX
+dnl immediately, otherwise, hook it in at the end of AC_PROG_CXX.
+  AC_PROVIDE_IFELSE([AC_PROG_CXX],
+    [AC_LIBTOOL_CXX],
+    [define([AC_PROG_CXX], defn([AC_PROG_CXX])[AC_LIBTOOL_CXX
+  ])])
+dnl And a similar setup for Fortran 77 support
+  AC_PROVIDE_IFELSE([AC_PROG_F77],
+    [AC_LIBTOOL_F77],
+    [define([AC_PROG_F77], defn([AC_PROG_F77])[AC_LIBTOOL_F77
+])])
+
+dnl Quote A][M_PROG_GCJ so that aclocal doesn't bring it in needlessly.
+dnl If either AC_PROG_GCJ or A][M_PROG_GCJ have already been expanded, run
+dnl AC_LIBTOOL_GCJ immediately, otherwise, hook it in at the end of both.
+  AC_PROVIDE_IFELSE([AC_PROG_GCJ],
+    [AC_LIBTOOL_GCJ],
+    [AC_PROVIDE_IFELSE([A][M_PROG_GCJ],
+      [AC_LIBTOOL_GCJ],
+      [AC_PROVIDE_IFELSE([LT_AC_PROG_GCJ],
+	[AC_LIBTOOL_GCJ],
+      [ifdef([AC_PROG_GCJ],
+	     [define([AC_PROG_GCJ], defn([AC_PROG_GCJ])[AC_LIBTOOL_GCJ])])
+       ifdef([A][M_PROG_GCJ],
+	     [define([A][M_PROG_GCJ], defn([A][M_PROG_GCJ])[AC_LIBTOOL_GCJ])])
+       ifdef([LT_AC_PROG_GCJ],
+	     [define([LT_AC_PROG_GCJ],
+		defn([LT_AC_PROG_GCJ])[AC_LIBTOOL_GCJ])])])])
+])])# AC_PROG_LIBTOOL
+
+
+# _AC_PROG_LIBTOOL
+# ----------------
+AC_DEFUN([_AC_PROG_LIBTOOL],
+[AC_REQUIRE([AC_LIBTOOL_SETUP])dnl
+AC_BEFORE([$0],[AC_LIBTOOL_CXX])dnl
+AC_BEFORE([$0],[AC_LIBTOOL_F77])dnl
+AC_BEFORE([$0],[AC_LIBTOOL_GCJ])dnl
+
+# This can be used to rebuild libtool when needed
+LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh"
+
+# Always use our own libtool.
+LIBTOOL='$(SHELL) $(top_builddir)/libtool'
+AC_SUBST(LIBTOOL)dnl
+
+# Prevent multiple expansion
+define([AC_PROG_LIBTOOL], [])
+])# _AC_PROG_LIBTOOL
+
+
+# AC_LIBTOOL_SETUP
+# ----------------
+AC_DEFUN([AC_LIBTOOL_SETUP],
+[AC_PREREQ(2.50)dnl
+AC_REQUIRE([AC_ENABLE_SHARED])dnl
+AC_REQUIRE([AC_ENABLE_STATIC])dnl
+AC_REQUIRE([AC_ENABLE_FAST_INSTALL])dnl
+AC_REQUIRE([AC_CANONICAL_HOST])dnl
+AC_REQUIRE([AC_CANONICAL_BUILD])dnl
+AC_REQUIRE([AC_PROG_CC])dnl
+AC_REQUIRE([AC_PROG_LD])dnl
+AC_REQUIRE([AC_PROG_LD_RELOAD_FLAG])dnl
+AC_REQUIRE([AC_PROG_NM])dnl
+
+AC_REQUIRE([AC_PROG_LN_S])dnl
+AC_REQUIRE([AC_DEPLIBS_CHECK_METHOD])dnl
+# Autoconf 2.13's AC_OBJEXT and AC_EXEEXT macros only works for C compilers!
+AC_REQUIRE([AC_OBJEXT])dnl
+AC_REQUIRE([AC_EXEEXT])dnl
+dnl
+
+AC_LIBTOOL_SYS_MAX_CMD_LEN
+AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE
+AC_LIBTOOL_OBJDIR
+
+AC_REQUIRE([_LT_AC_SYS_COMPILER])dnl
+_LT_AC_PROG_ECHO_BACKSLASH
+
+case $host_os in
+aix3*)
+  # AIX sometimes has problems with the GCC collect2 program.  For some
+  # reason, if we set the COLLECT_NAMES environment variable, the problems
+  # vanish in a puff of smoke.
+  if test "X${COLLECT_NAMES+set}" != Xset; then
+    COLLECT_NAMES=
+    export COLLECT_NAMES
+  fi
+  ;;
+esac
+
+# Sed substitution that helps us do robust quoting.  It backslashifies
+# metacharacters that are still active within double-quoted strings.
+Xsed='sed -e 1s/^X//'
+[sed_quote_subst='s/\([\\"\\`$\\\\]\)/\\\1/g']
+
+# Same as above, but do not quote variable references.
+[double_quote_subst='s/\([\\"\\`\\\\]\)/\\\1/g']
+
+# Sed substitution to delay expansion of an escaped shell variable in a
+# double_quote_subst'ed string.
+delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g'
+
+# Sed substitution to avoid accidental globbing in evaled expressions
+no_glob_subst='s/\*/\\\*/g'
+
+# Constants:
+rm="rm -f"
+
+# Global variables:
+default_ofile=libtool
+can_build_shared=yes
+
+# All known linkers require a `.a' archive for static linking (except MSVC,
+# which needs '.lib').
+libext=a
+ltmain="$ac_aux_dir/ltmain.sh"
+ofile="$default_ofile"
+with_gnu_ld="$lt_cv_prog_gnu_ld"
+
+AC_CHECK_TOOL(AR, ar, false)
+AC_CHECK_TOOL(RANLIB, ranlib, :)
+AC_CHECK_TOOL(STRIP, strip, :)
+
+old_CC="$CC"
+old_CFLAGS="$CFLAGS"
+
+# Set sane defaults for various variables
+test -z "$AR" && AR=ar
+test -z "$AR_FLAGS" && AR_FLAGS=cru
+test -z "$AS" && AS=as
+test -z "$CC" && CC=cc
+test -z "$LTCC" && LTCC=$CC
+test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS
+test -z "$DLLTOOL" && DLLTOOL=dlltool
+test -z "$LD" && LD=ld
+test -z "$LN_S" && LN_S="ln -s"
+test -z "$MAGIC_CMD" && MAGIC_CMD=file
+test -z "$NM" && NM=nm
+test -z "$SED" && SED=sed
+test -z "$OBJDUMP" && OBJDUMP=objdump
+test -z "$RANLIB" && RANLIB=:
+test -z "$STRIP" && STRIP=:
+test -z "$ac_objext" && ac_objext=o
+
+# Determine commands to create old-style static archives.
+old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs$old_deplibs'
+old_postinstall_cmds='chmod 644 $oldlib'
+old_postuninstall_cmds=
+
+if test -n "$RANLIB"; then
+  case $host_os in
+  openbsd*)
+    old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$oldlib"
+    ;;
+  *)
+    old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$oldlib"
+    ;;
+  esac
+  old_archive_cmds="$old_archive_cmds~\$RANLIB \$oldlib"
+fi
+
+_LT_CC_BASENAME([$compiler])
+
+# Only perform the check for file, if the check method requires it
+case $deplibs_check_method in
+file_magic*)
+  if test "$file_magic_cmd" = '$MAGIC_CMD'; then
+    AC_PATH_MAGIC
+  fi
+  ;;
+esac
+
+AC_PROVIDE_IFELSE([AC_LIBTOOL_DLOPEN], enable_dlopen=yes, enable_dlopen=no)
+AC_PROVIDE_IFELSE([AC_LIBTOOL_WIN32_DLL],
+enable_win32_dll=yes, enable_win32_dll=no)
+
+AC_ARG_ENABLE([libtool-lock],
+    [AC_HELP_STRING([--disable-libtool-lock],
+	[avoid locking (might break parallel builds)])])
+test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes
+
+AC_ARG_WITH([pic],
+    [AC_HELP_STRING([--with-pic],
+	[try to use only PIC/non-PIC objects @<:@default=use both@:>@])],
+    [pic_mode="$withval"],
+    [pic_mode=default])
+test -z "$pic_mode" && pic_mode=default
+
+# Use C for the default configuration in the libtool script
+tagname=
+AC_LIBTOOL_LANG_C_CONFIG
+_LT_AC_TAGCONFIG
+])# AC_LIBTOOL_SETUP
+
+
+# _LT_AC_SYS_COMPILER
+# -------------------
+AC_DEFUN([_LT_AC_SYS_COMPILER],
+[AC_REQUIRE([AC_PROG_CC])dnl
+
+# If no C compiler was specified, use CC.
+LTCC=${LTCC-"$CC"}
+
+# If no C compiler flags were specified, use CFLAGS.
+LTCFLAGS=${LTCFLAGS-"$CFLAGS"}
+
+# Allow CC to be a program name with arguments.
+compiler=$CC
+])# _LT_AC_SYS_COMPILER
+
+
+# _LT_CC_BASENAME(CC)
+# -------------------
+# Calculate cc_basename.  Skip known compiler wrappers and cross-prefix.
+AC_DEFUN([_LT_CC_BASENAME],
+[for cc_temp in $1""; do
+  case $cc_temp in
+    compile | *[[\\/]]compile | ccache | *[[\\/]]ccache ) ;;
+    distcc | *[[\\/]]distcc | purify | *[[\\/]]purify ) ;;
+    \-*) ;;
+    *) break;;
+  esac
+done
+cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"`
+])
+
+
+# _LT_COMPILER_BOILERPLATE
+# ------------------------
+# Check for compiler boilerplate output or warnings with
+# the simple compiler test code.
+AC_DEFUN([_LT_COMPILER_BOILERPLATE],
+[ac_outfile=conftest.$ac_objext
+printf "$lt_simple_compile_test_code" >conftest.$ac_ext
+eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err
+_lt_compiler_boilerplate=`cat conftest.err`

[... 15225 lines stripped ...]


More information about the svn-commits mailing list