[svn-commits] murf: branch murf/AAL r40926 - in /team/murf/AAL: ./ agi/ apps/ build_tools/ ...

svn-commits at lists.digium.com svn-commits at lists.digium.com
Wed Aug 23 10:38:36 MST 2006


Author: murf
Date: Wed Aug 23 12:38:33 2006
New Revision: 40926

URL: http://svn.digium.com/view/asterisk?rev=40926&view=rev
Log:
Merged revisions 40722,40724-40726,40728,40751,40753,40757,40761,40765,40769-40770,40775,40780-40785,40789-40792,40796,40799,40812,40815,40818-40820,40826,40832-40833,40837,40853-40854,40863-40864,40866,40877 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/trunk

................
r40722 | kpfleming | 2006-08-20 20:11:39 -0600 (Sun, 20 Aug 2006) | 8 lines

merge new_loader_completion branch, including (at least):
  - restructured build tree and makefiles to eliminate recursion problems
  - support for embedded modules
  - support for static builds
  - simpler cross-compilation support
  - simpler module/loader interface (no exported symbols)


................
r40724 | kpfleming | 2006-08-20 20:26:51 -0600 (Sun, 20 Aug 2006) | 2 lines

oops... no pattern rules for bison/flex

................
r40725 | kpfleming | 2006-08-20 20:31:01 -0600 (Sun, 20 Aug 2006) | 2 lines

main subdirectory is not dependencies for menuselect input

................
r40726 | kpfleming | 2006-08-20 20:46:47 -0600 (Sun, 20 Aug 2006) | 2 lines

could have sworn i committed this change already...

................
r40728 | kpfleming | 2006-08-20 20:54:05 -0600 (Sun, 20 Aug 2006) | 2 lines

document Makefile target changes

................
r40751 | kpfleming | 2006-08-20 21:06:41 -0600 (Sun, 20 Aug 2006) | 2 lines

don't declare these variables unless needed

................
r40753 | kpfleming | 2006-08-20 21:58:02 -0600 (Sun, 20 Aug 2006) | 2 lines

ensure that 'make' after 'svn update' that includes a configure script change won't run without making the user run configure first

................
r40757 | qwell | 2006-08-21 01:34:59 -0600 (Mon, 21 Aug 2006) | 5 lines

Fix a potential integer signedness problem.
Also fix some locking issues I found at the same time.

Issue 7770, original patch by alamantia

................
r40761 | kpfleming | 2006-08-21 05:48:08 -0600 (Mon, 21 Aug 2006) | 2 lines

swap module macro arguments to proper order

................
r40765 | kpfleming | 2006-08-21 07:47:45 -0600 (Mon, 21 Aug 2006) | 2 lines

replace a couple of bare 'make' with $(MAKE)

................
r40769 | kpfleming | 2006-08-21 08:42:03 -0600 (Mon, 21 Aug 2006) | 2 lines

use a safer process for checking if a module wants to export symbols into the global namespace

................
r40770 | kpfleming | 2006-08-21 08:45:58 -0600 (Mon, 21 Aug 2006) | 2 lines

build muted by default, since there is no Makefile target for it anymore

................
r40775 | russell | 2006-08-21 11:22:24 -0600 (Mon, 21 Aug 2006) | 5 lines

- use a common error message in all of the memory allocation macros
- add ast_asprintf() and ast_vasprintf()
- tweak doxygen comments
- simplify the definition of a flag macro

................
r40780 | russell | 2006-08-21 13:18:09 -0600 (Mon, 21 Aug 2006) | 9 lines

various cleanups, including ...
- Create an astmm_log() macro that logs the same message to both stderr as well
  as the mmlog file if it is open instead of duplicating the code everywhere.
- Use for loops for list traversals instead of while loops
- reduce nesting
- ensure locking isn't put around more than is necessary
- localize a struct definition
- change the limit of the path to the mmlog to PATH_MAX instead of 80

................
r40781 | file | 2006-08-21 13:33:42 -0600 (Mon, 21 Aug 2006) | 2 lines

Allow an offset for SIP_HEADER so you can get more then 1 header of the same name if they exist. Why someone would want to grab something like Via headers from dialplan I don't exactly know, but okay. (issue #7563 reported by Corydon76)

................
r40782 | russell | 2006-08-21 13:35:28 -0600 (Mon, 21 Aug 2006) | 5 lines

- use the atomic operations for incrementing the unique int
- free the string fields allocation if ast_create_channel() failes to open the
  alert pipe
- formatting tweaks

................
r40783 | russell | 2006-08-21 13:42:29 -0600 (Mon, 21 Aug 2006) | 9 lines

- simplify and improve astmm by using thread storage instead of a dynamic
  allocation and free on every call of the function for preparing the string
  that will be appended.  Then, use the ast_dynamic_str() code instead of the
  open coded version that is appended to when waiting for it to be delivered.
- use for loops for list traversals
- convert the manager sessions list to use list macros
- use atomic operations for num_sessions and usecounts
- convert some defines to the equivalent enum

................
r40784 | kpfleming | 2006-08-21 13:56:30 -0600 (Mon, 21 Aug 2006) | 2 lines

restore printing of module name during loading

................
r40785 | kpfleming | 2006-08-21 13:56:45 -0600 (Mon, 21 Aug 2006) | 2 lines

use new configure-provided wrappers for attributes

................
r40789 | kpfleming | 2006-08-21 14:04:59 -0600 (Mon, 21 Aug 2006) | 2 lines

don't initialize global variables list twice

................
r40790 | kpfleming | 2006-08-21 14:12:18 -0600 (Mon, 21 Aug 2006) | 3 lines

use a customized configure macro to tell the script that uCLinux does not have fork() that works
drop all startup options and code related to forking if it is not available

................
r40791 | kpfleming | 2006-08-21 14:18:36 -0600 (Mon, 21 Aug 2006) | 2 lines

another variable to clear out before configuring mxml

................
r40792 | kpfleming | 2006-08-21 14:19:47 -0600 (Mon, 21 Aug 2006) | 2 lines

oops... missed one

................
r40796 | kpfleming | 2006-08-21 16:23:26 -0600 (Mon, 21 Aug 2006) | 2 lines

restore 'preload' functionality in loader

................
r40799 | mogorman | 2006-08-21 16:36:15 -0600 (Mon, 21 Aug 2006) | 12 lines

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

........
r40798 | mogorman | 2006-08-21 17:34:26 -0500 (Mon, 21 Aug 2006) | 4 lines

Move the load_modules call so that if a module needs
realtime support it will work, none do currently but a good
move none the less.

........

................
r40812 | file | 2006-08-21 19:01:39 -0600 (Mon, 21 Aug 2006) | 2 lines

Fix up the props a bit

................
r40815 | file | 2006-08-21 19:57:40 -0600 (Mon, 21 Aug 2006) | 2 lines

Sorry, but this does not resemble malloc... so GCC was ignoring the attribute and throwing a warning.

................
r40818 | file | 2006-08-21 20:15:34 -0600 (Mon, 21 Aug 2006) | 2 lines

Make doxygen work with the new location of files that now reside in main

................
r40819 | file | 2006-08-21 20:24:46 -0600 (Mon, 21 Aug 2006) | 2 lines

Make a warning about an unused function & variable go away on the stand alone AEL build.

................
r40820 | file | 2006-08-21 20:30:38 -0600 (Mon, 21 Aug 2006) | 2 lines

Another compile time warning bites the dust

................
r40826 | tilghman | 2006-08-21 21:01:49 -0600 (Mon, 21 Aug 2006) | 9 lines

Blocked revisions 40821 via svnmerge

........
r40821 | tilghman | 2006-08-21 21:59:37 -0500 (Mon, 21 Aug 2006) | 2 lines

Bug 7779 - Using initstate(3) means that we cannot unload this module once loaded.

........

................
r40832 | qwell | 2006-08-21 23:24:50 -0600 (Mon, 21 Aug 2006) | 2 lines

a couple Solaris tweaks, to help build properly.

................
r40833 | qwell | 2006-08-21 23:34:44 -0600 (Mon, 21 Aug 2006) | 4 lines

Solaris didn't like this.

Let's just go ahead and make this match every other uintXX_t in Asterisk.

................
r40837 | kpfleming | 2006-08-22 10:32:41 -0600 (Tue, 22 Aug 2006) | 2 lines

remove requirement for libtasn1, which appears to be a Debian thing

................
r40853 | kpfleming | 2006-08-22 15:45:15 -0600 (Tue, 22 Aug 2006) | 2 lines

add a new include file for out-of-tree modules that need to know where things are located

................
r40854 | kpfleming | 2006-08-22 15:57:16 -0600 (Tue, 22 Aug 2006) | 2 lines

when loadable modules are disabled, if someone tries to load a module that does not exist, don't dereference a NULL pointer, just stop trying to load it...

................
r40863 | kpfleming | 2006-08-22 17:06:13 -0600 (Tue, 22 Aug 2006) | 2 lines

minor improvements

................
r40864 | kpfleming | 2006-08-22 17:07:11 -0600 (Tue, 22 Aug 2006) | 2 lines

make platforms that use mutexes in stdio.h happy

................
r40866 | kpfleming | 2006-08-22 17:55:16 -0600 (Tue, 22 Aug 2006) | 2 lines

generate a message when a module cannot be found and loadable modules are disabled

................
r40877 | russell | 2006-08-22 21:07:34 -0600 (Tue, 22 Aug 2006) | 2 lines

merge menuselect_build ... most of the changes happened in menuselect

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

Added:
    team/murf/AAL/apps/app_followme.c   (props changed)
      - copied unchanged from r40904, trunk/apps/app_followme.c
    team/murf/AAL/bootstrap.sh   (props changed)
      - copied unchanged from r40904, trunk/bootstrap.sh
    team/murf/AAL/build_tools/cflags.xml   (props changed)
      - copied unchanged from r40904, trunk/build_tools/cflags.xml
    team/murf/AAL/build_tools/embed_modules.xml   (props changed)
      - copied unchanged from r40904, trunk/build_tools/embed_modules.xml
    team/murf/AAL/build_tools/get_makeopts   (props changed)
      - copied unchanged from r40904, trunk/build_tools/get_makeopts
    team/murf/AAL/build_tools/get_moduleinfo   (props changed)
      - copied unchanged from r40904, trunk/build_tools/get_moduleinfo
    team/murf/AAL/build_tools/make_buildopts_h   (props changed)
      - copied unchanged from r40904, trunk/build_tools/make_buildopts_h
    team/murf/AAL/build_tools/make_version   (props changed)
      - copied unchanged from r40904, trunk/build_tools/make_version
    team/murf/AAL/build_tools/menuselect-deps.in   (props changed)
      - copied unchanged from r40904, trunk/build_tools/menuselect-deps.in
    team/murf/AAL/build_tools/prep_moduledeps   (props changed)
      - copied unchanged from r40904, trunk/build_tools/prep_moduledeps
    team/murf/AAL/channels/chan_jingle.c   (props changed)
      - copied unchanged from r40904, trunk/channels/chan_jingle.c
    team/murf/AAL/channels/chan_vpb.cc   (props changed)
      - copied unchanged from r40904, trunk/channels/chan_vpb.cc
    team/murf/AAL/config.guess   (props changed)
      - copied unchanged from r40904, trunk/config.guess
    team/murf/AAL/config.sub   (props changed)
      - copied unchanged from r40904, trunk/config.sub
    team/murf/AAL/configure   (props changed)
      - copied unchanged from r40904, trunk/configure
    team/murf/AAL/configure.ac   (props changed)
      - copied unchanged from r40904, trunk/configure.ac
    team/murf/AAL/doc/asterisk.8   (props changed)
      - copied unchanged from r40904, trunk/doc/asterisk.8
    team/murf/AAL/doc/asterisk.sgml   (props changed)
      - copied unchanged from r40904, trunk/doc/asterisk.sgml
    team/murf/AAL/doc/callfiles.txt   (props changed)
      - copied unchanged from r40904, trunk/doc/callfiles.txt
    team/murf/AAL/doc/imapstorage.txt   (props changed)
      - copied unchanged from r40904, trunk/doc/imapstorage.txt
    team/murf/AAL/doc/jabber.txt   (props changed)
      - copied unchanged from r40904, trunk/doc/jabber.txt
    team/murf/AAL/doc/jingle.txt   (props changed)
      - copied unchanged from r40904, trunk/doc/jingle.txt
    team/murf/AAL/doc/macroexclusive.txt   (props changed)
      - copied unchanged from r40904, trunk/doc/macroexclusive.txt
    team/murf/AAL/doc/osp.txt   (props changed)
      - copied unchanged from r40904, trunk/doc/osp.txt
    team/murf/AAL/doc/queues-with-callback-members.txt   (props changed)
      - copied unchanged from r40904, trunk/doc/queues-with-callback-members.txt
    team/murf/AAL/doc/radius.txt   (props changed)
      - copied unchanged from r40904, trunk/doc/radius.txt
    team/murf/AAL/doc/video.txt   (props changed)
      - copied unchanged from r40904, trunk/doc/video.txt
    team/murf/AAL/funcs/func_global.c   (props changed)
      - copied unchanged from r40904, trunk/funcs/func_global.c
    team/murf/AAL/funcs/func_realtime.c   (props changed)
      - copied unchanged from r40904, trunk/funcs/func_realtime.c
    team/murf/AAL/include/asterisk/abstract_jb.h   (props changed)
      - copied unchanged from r40904, trunk/include/asterisk/abstract_jb.h
    team/murf/AAL/include/asterisk/ael_structs.h   (props changed)
      - copied unchanged from r40904, trunk/include/asterisk/ael_structs.h
    team/murf/AAL/include/asterisk/autoconfig.h.in   (props changed)
      - copied unchanged from r40904, trunk/include/asterisk/autoconfig.h.in
    team/murf/AAL/include/asterisk/jabber.h   (props changed)
      - copied unchanged from r40904, trunk/include/asterisk/jabber.h
    team/murf/AAL/include/asterisk/jingle.h   (props changed)
      - copied unchanged from r40904, trunk/include/asterisk/jingle.h
    team/murf/AAL/include/asterisk/paths.h   (props changed)
      - copied unchanged from r40904, trunk/include/asterisk/paths.h
    team/murf/AAL/include/asterisk/threadstorage.h   (props changed)
      - copied unchanged from r40904, trunk/include/asterisk/threadstorage.h
    team/murf/AAL/main/
      - copied from r40904, trunk/main/
    team/murf/AAL/main/utils.c   (props changed)
      - copied unchanged from r40904, trunk/main/utils.c
    team/murf/AAL/mkinstalldirs   (props changed)
      - copied unchanged from r40904, trunk/mkinstalldirs
    team/murf/AAL/pbx/ael/   (props changed)
      - copied from r40904, trunk/pbx/ael/
    team/murf/AAL/pbx/ael/ael-test/
      - copied from r40904, trunk/pbx/ael/ael-test/
    team/murf/AAL/pbx/ael/ael-test/ael-ntest10/
      - copied from r40904, trunk/pbx/ael/ael-test/ael-ntest10/
    team/murf/AAL/pbx/ael/ael-test/ael-ntest10/extensions.ael   (props changed)
      - copied unchanged from r40904, trunk/pbx/ael/ael-test/ael-ntest10/extensions.ael
    team/murf/AAL/pbx/ael/ael-test/ael-ntest12/
      - copied from r40904, trunk/pbx/ael/ael-test/ael-ntest12/
    team/murf/AAL/pbx/ael/ael-test/ael-ntest12/extensions.ael   (props changed)
      - copied unchanged from r40904, trunk/pbx/ael/ael-test/ael-ntest12/extensions.ael
    team/murf/AAL/pbx/ael/ael-test/ael-ntest9/
      - copied from r40904, trunk/pbx/ael/ael-test/ael-ntest9/
    team/murf/AAL/pbx/ael/ael-test/ael-ntest9/extensions.ael   (props changed)
      - copied unchanged from r40904, trunk/pbx/ael/ael-test/ael-ntest9/extensions.ael
    team/murf/AAL/pbx/ael/ael-test/ael-test1/
      - copied from r40904, trunk/pbx/ael/ael-test/ael-test1/
    team/murf/AAL/pbx/ael/ael-test/ael-test1/extensions.ael   (props changed)
      - copied unchanged from r40904, trunk/pbx/ael/ael-test/ael-test1/extensions.ael
    team/murf/AAL/pbx/ael/ael-test/ael-test11/
      - copied from r40904, trunk/pbx/ael/ael-test/ael-test11/
    team/murf/AAL/pbx/ael/ael-test/ael-test11/extensions.ael   (props changed)
      - copied unchanged from r40904, trunk/pbx/ael/ael-test/ael-test11/extensions.ael
    team/murf/AAL/pbx/ael/ael-test/ael-test2/
      - copied from r40904, trunk/pbx/ael/ael-test/ael-test2/
    team/murf/AAL/pbx/ael/ael-test/ael-test2/apptest.ael2   (props changed)
      - copied unchanged from r40904, trunk/pbx/ael/ael-test/ael-test2/apptest.ael2
    team/murf/AAL/pbx/ael/ael-test/ael-test2/extensions.ael   (props changed)
      - copied unchanged from r40904, trunk/pbx/ael/ael-test/ael-test2/extensions.ael
    team/murf/AAL/pbx/ael/ael-test/ael-test3/
      - copied from r40904, trunk/pbx/ael/ael-test/ael-test3/
    team/murf/AAL/pbx/ael/ael-test/ael-test3/extensions.ael   (props changed)
      - copied unchanged from r40904, trunk/pbx/ael/ael-test/ael-test3/extensions.ael
    team/murf/AAL/pbx/ael/ael-test/ael-test3/include1.ael2   (props changed)
      - copied unchanged from r40904, trunk/pbx/ael/ael-test/ael-test3/include1.ael2
    team/murf/AAL/pbx/ael/ael-test/ael-test3/include2.ael2   (props changed)
      - copied unchanged from r40904, trunk/pbx/ael/ael-test/ael-test3/include2.ael2
    team/murf/AAL/pbx/ael/ael-test/ael-test3/include3.ael2   (props changed)
      - copied unchanged from r40904, trunk/pbx/ael/ael-test/ael-test3/include3.ael2
    team/murf/AAL/pbx/ael/ael-test/ael-test3/include4.ael2   (props changed)
      - copied unchanged from r40904, trunk/pbx/ael/ael-test/ael-test3/include4.ael2
    team/murf/AAL/pbx/ael/ael-test/ael-test3/include5.ael2   (props changed)
      - copied unchanged from r40904, trunk/pbx/ael/ael-test/ael-test3/include5.ael2
    team/murf/AAL/pbx/ael/ael-test/ael-test4/
      - copied from r40904, trunk/pbx/ael/ael-test/ael-test4/
    team/murf/AAL/pbx/ael/ael-test/ael-test4/apptest.ael2   (props changed)
      - copied unchanged from r40904, trunk/pbx/ael/ael-test/ael-test4/apptest.ael2
    team/murf/AAL/pbx/ael/ael-test/ael-test4/extensions.ael   (props changed)
      - copied unchanged from r40904, trunk/pbx/ael/ael-test/ael-test4/extensions.ael
    team/murf/AAL/pbx/ael/ael-test/ael-test5/
      - copied from r40904, trunk/pbx/ael/ael-test/ael-test5/
    team/murf/AAL/pbx/ael/ael-test/ael-test5/extensions.ael   (props changed)
      - copied unchanged from r40904, trunk/pbx/ael/ael-test/ael-test5/extensions.ael
    team/murf/AAL/pbx/ael/ael-test/ael-test6/
      - copied from r40904, trunk/pbx/ael/ael-test/ael-test6/
    team/murf/AAL/pbx/ael/ael-test/ael-test6/extensions.ael   (props changed)
      - copied unchanged from r40904, trunk/pbx/ael/ael-test/ael-test6/extensions.ael
    team/murf/AAL/pbx/ael/ael-test/ael-test7/
      - copied from r40904, trunk/pbx/ael/ael-test/ael-test7/
    team/murf/AAL/pbx/ael/ael-test/ael-test7/extensions.ael   (props changed)
      - copied unchanged from r40904, trunk/pbx/ael/ael-test/ael-test7/extensions.ael
    team/murf/AAL/pbx/ael/ael-test/ael-test8/
      - copied from r40904, trunk/pbx/ael/ael-test/ael-test8/
    team/murf/AAL/pbx/ael/ael-test/ael-test8/extensions.ael   (props changed)
      - copied unchanged from r40904, trunk/pbx/ael/ael-test/ael-test8/extensions.ael
    team/murf/AAL/pbx/ael/ael-test/ael-vtest13/
      - copied from r40904, trunk/pbx/ael/ael-test/ael-vtest13/
    team/murf/AAL/pbx/ael/ael-test/ael-vtest13/extensions.ael   (props changed)
      - copied unchanged from r40904, trunk/pbx/ael/ael-test/ael-vtest13/extensions.ael
    team/murf/AAL/pbx/ael/ael-test/ael-vtest13/include1.ael2   (props changed)
      - copied unchanged from r40904, trunk/pbx/ael/ael-test/ael-vtest13/include1.ael2
    team/murf/AAL/pbx/ael/ael-test/ael-vtest13/include2.ael2   (props changed)
      - copied unchanged from r40904, trunk/pbx/ael/ael-test/ael-vtest13/include2.ael2
    team/murf/AAL/pbx/ael/ael-test/ael-vtest13/include3.ael2   (props changed)
      - copied unchanged from r40904, trunk/pbx/ael/ael-test/ael-vtest13/include3.ael2
    team/murf/AAL/pbx/ael/ael-test/ael-vtest13/include4.ael2   (props changed)
      - copied unchanged from r40904, trunk/pbx/ael/ael-test/ael-vtest13/include4.ael2
    team/murf/AAL/pbx/ael/ael-test/ael-vtest13/include5.ael2   (props changed)
      - copied unchanged from r40904, trunk/pbx/ael/ael-test/ael-vtest13/include5.ael2
    team/murf/AAL/pbx/ael/ael-test/ael-vtest13/telemarket_torture.ael2   (props changed)
      - copied unchanged from r40904, trunk/pbx/ael/ael-test/ael-vtest13/telemarket_torture.ael2
    team/murf/AAL/pbx/ael/ael-test/ref.ael-ntest10   (props changed)
      - copied unchanged from r40904, trunk/pbx/ael/ael-test/ref.ael-ntest10
    team/murf/AAL/pbx/ael/ael-test/ref.ael-ntest12   (props changed)
      - copied unchanged from r40904, trunk/pbx/ael/ael-test/ref.ael-ntest12
    team/murf/AAL/pbx/ael/ael-test/ref.ael-ntest9   (props changed)
      - copied unchanged from r40904, trunk/pbx/ael/ael-test/ref.ael-ntest9
    team/murf/AAL/pbx/ael/ael-test/ref.ael-test1   (props changed)
      - copied unchanged from r40904, trunk/pbx/ael/ael-test/ref.ael-test1
    team/murf/AAL/pbx/ael/ael-test/ref.ael-test11   (props changed)
      - copied unchanged from r40904, trunk/pbx/ael/ael-test/ref.ael-test11
    team/murf/AAL/pbx/ael/ael-test/ref.ael-test2   (props changed)
      - copied unchanged from r40904, trunk/pbx/ael/ael-test/ref.ael-test2
    team/murf/AAL/pbx/ael/ael-test/ref.ael-test3   (props changed)
      - copied unchanged from r40904, trunk/pbx/ael/ael-test/ref.ael-test3
    team/murf/AAL/pbx/ael/ael-test/ref.ael-test4   (props changed)
      - copied unchanged from r40904, trunk/pbx/ael/ael-test/ref.ael-test4
    team/murf/AAL/pbx/ael/ael-test/ref.ael-test5   (props changed)
      - copied unchanged from r40904, trunk/pbx/ael/ael-test/ref.ael-test5
    team/murf/AAL/pbx/ael/ael-test/ref.ael-test6   (props changed)
      - copied unchanged from r40904, trunk/pbx/ael/ael-test/ref.ael-test6
    team/murf/AAL/pbx/ael/ael-test/ref.ael-test7   (props changed)
      - copied unchanged from r40904, trunk/pbx/ael/ael-test/ref.ael-test7
    team/murf/AAL/pbx/ael/ael-test/ref.ael-test8   (props changed)
      - copied unchanged from r40904, trunk/pbx/ael/ael-test/ref.ael-test8
    team/murf/AAL/pbx/ael/ael-test/ref.ael-vtest13   (props changed)
      - copied unchanged from r40904, trunk/pbx/ael/ael-test/ref.ael-vtest13
    team/murf/AAL/pbx/ael/ael-test/runtests   (props changed)
      - copied unchanged from r40904, trunk/pbx/ael/ael-test/runtests
    team/murf/AAL/pbx/ael/ael-test/setref   (props changed)
      - copied unchanged from r40904, trunk/pbx/ael/ael-test/setref
    team/murf/AAL/pbx/ael/ael.flex   (props changed)
      - copied unchanged from r40904, trunk/pbx/ael/ael.flex
    team/murf/AAL/pbx/ael/ael.tab.c   (props changed)
      - copied unchanged from r40904, trunk/pbx/ael/ael.tab.c
    team/murf/AAL/pbx/ael/ael.tab.h   (props changed)
      - copied unchanged from r40904, trunk/pbx/ael/ael.tab.h
    team/murf/AAL/pbx/ael/ael.y   (props changed)
      - copied unchanged from r40904, trunk/pbx/ael/ael.y
    team/murf/AAL/pbx/ael/ael_lex.c   (props changed)
      - copied unchanged from r40904, trunk/pbx/ael/ael_lex.c
    team/murf/AAL/pbx/kdeconsole_main.cc   (props changed)
      - copied unchanged from r40904, trunk/pbx/kdeconsole_main.cc
    team/murf/AAL/sounds/Makefile   (props changed)
      - copied unchanged from r40904, trunk/sounds/Makefile
    team/murf/AAL/sounds/sounds.xml   (props changed)
      - copied unchanged from r40904, trunk/sounds/sounds.xml
Removed:
    team/murf/AAL/acl.c
    team/murf/AAL/aescrypt.c
    team/murf/AAL/aeskey.c
    team/murf/AAL/aesopt.h
    team/murf/AAL/aestab.c
    team/murf/AAL/alaw.c
    team/murf/AAL/app.c
    team/murf/AAL/ast_expr2.c
    team/murf/AAL/ast_expr2.fl
    team/murf/AAL/ast_expr2.h
    team/murf/AAL/ast_expr2.y
    team/murf/AAL/ast_expr2f.c
    team/murf/AAL/asterisk.8
    team/murf/AAL/asterisk.c
    team/murf/AAL/asterisk.sgml
    team/murf/AAL/astmm.c
    team/murf/AAL/autoservice.c
    team/murf/AAL/build_tools/make_svn_branch_name
    team/murf/AAL/buildinfo.c
    team/murf/AAL/callerid.c
    team/murf/AAL/cdr.c
    team/murf/AAL/channel.c
    team/murf/AAL/channels/chan_vpb.c
    team/murf/AAL/channels/misdn/fac.c
    team/murf/AAL/channels/misdn/fac.h
    team/murf/AAL/chanvars.c
    team/murf/AAL/cli.c
    team/murf/AAL/coef_in.h
    team/murf/AAL/coef_out.h
    team/murf/AAL/config.c
    team/murf/AAL/cryptostub.c
    team/murf/AAL/cygwin/
    team/murf/AAL/db.c
    team/murf/AAL/db1-ast/
    team/murf/AAL/devicestate.c
    team/murf/AAL/dlfcn.c
    team/murf/AAL/dns.c
    team/murf/AAL/dnsmgr.c
    team/murf/AAL/dsp.c
    team/murf/AAL/ecdisa.h
    team/murf/AAL/editline/
    team/murf/AAL/enum.c
    team/murf/AAL/file.c
    team/murf/AAL/frame.c
    team/murf/AAL/fskmodem.c
    team/murf/AAL/http.c
    team/murf/AAL/image.c
    team/murf/AAL/indications.c
    team/murf/AAL/io.c
    team/murf/AAL/jitterbuf.c
    team/murf/AAL/jitterbuf.h
    team/murf/AAL/loader.c
    team/murf/AAL/logger.c
    team/murf/AAL/manager.c
    team/murf/AAL/md5.c
    team/murf/AAL/muted.c
    team/murf/AAL/netsock.c
    team/murf/AAL/pbx.c
    team/murf/AAL/pbx/pbx_kdeconsole_main.cc
    team/murf/AAL/plc.c
    team/murf/AAL/poll.c
    team/murf/AAL/privacy.c
    team/murf/AAL/rtp.c
    team/murf/AAL/say.c
    team/murf/AAL/sched.c
    team/murf/AAL/sha1.c
    team/murf/AAL/slinfactory.c
    team/murf/AAL/sounds.txt
    team/murf/AAL/sounds/agent-alreadyon.gsm
    team/murf/AAL/sounds/agent-incorrect.gsm
    team/murf/AAL/sounds/agent-loggedoff.gsm
    team/murf/AAL/sounds/agent-loginok.gsm
    team/murf/AAL/sounds/agent-newlocation.gsm
    team/murf/AAL/sounds/agent-pass.gsm
    team/murf/AAL/sounds/agent-user.gsm
    team/murf/AAL/sounds/auth-incorrect.gsm
    team/murf/AAL/sounds/auth-thankyou.gsm
    team/murf/AAL/sounds/beep.gsm
    team/murf/AAL/sounds/beeperr.gsm
    team/murf/AAL/sounds/conf-adminmenu.gsm
    team/murf/AAL/sounds/conf-enteringno.gsm
    team/murf/AAL/sounds/conf-errormenu.gsm
    team/murf/AAL/sounds/conf-getchannel.gsm
    team/murf/AAL/sounds/conf-getconfno.gsm
    team/murf/AAL/sounds/conf-getpin.gsm
    team/murf/AAL/sounds/conf-hasjoin.gsm
    team/murf/AAL/sounds/conf-hasleft.gsm
    team/murf/AAL/sounds/conf-invalid.gsm
    team/murf/AAL/sounds/conf-invalidpin.gsm
    team/murf/AAL/sounds/conf-kicked.gsm
    team/murf/AAL/sounds/conf-leaderhasleft.gsm
    team/murf/AAL/sounds/conf-locked.gsm
    team/murf/AAL/sounds/conf-lockednow.gsm
    team/murf/AAL/sounds/conf-muted.gsm
    team/murf/AAL/sounds/conf-noempty.gsm
    team/murf/AAL/sounds/conf-onlyone.gsm
    team/murf/AAL/sounds/conf-onlyperson.gsm
    team/murf/AAL/sounds/conf-otherinparty.gsm
    team/murf/AAL/sounds/conf-placeintoconf.gsm
    team/murf/AAL/sounds/conf-thereare.gsm
    team/murf/AAL/sounds/conf-unlockednow.gsm
    team/murf/AAL/sounds/conf-unmuted.gsm
    team/murf/AAL/sounds/conf-usermenu.gsm
    team/murf/AAL/sounds/conf-userswilljoin.gsm
    team/murf/AAL/sounds/conf-userwilljoin.gsm
    team/murf/AAL/sounds/conf-waitforleader.gsm
    team/murf/AAL/sounds/demo-abouttotry.gsm
    team/murf/AAL/sounds/demo-congrats.gsm
    team/murf/AAL/sounds/demo-echodone.gsm
    team/murf/AAL/sounds/demo-echotest.gsm
    team/murf/AAL/sounds/demo-enterkeywords.gsm
    team/murf/AAL/sounds/demo-instruct.gsm
    team/murf/AAL/sounds/demo-moreinfo.gsm
    team/murf/AAL/sounds/demo-nogo.gsm
    team/murf/AAL/sounds/demo-nomatch.gsm
    team/murf/AAL/sounds/demo-thanks.gsm
    team/murf/AAL/sounds/dictate/
    team/murf/AAL/sounds/digits/
    team/murf/AAL/sounds/dir-instr.gsm
    team/murf/AAL/sounds/dir-intro-fn.gsm
    team/murf/AAL/sounds/dir-intro.gsm
    team/murf/AAL/sounds/dir-nomatch.gsm
    team/murf/AAL/sounds/dir-nomore.gsm
    team/murf/AAL/sounds/fpm-calm-river.mp3
    team/murf/AAL/sounds/fpm-sunshine.mp3
    team/murf/AAL/sounds/fpm-world-mix.mp3
    team/murf/AAL/sounds/hello-world.gsm
    team/murf/AAL/sounds/hours.gsm
    team/murf/AAL/sounds/invalid.gsm
    team/murf/AAL/sounds/letters/
    team/murf/AAL/sounds/minutes.gsm
    team/murf/AAL/sounds/pbx-invalid.gsm
    team/murf/AAL/sounds/pbx-invalidpark.gsm
    team/murf/AAL/sounds/pbx-transfer.gsm
    team/murf/AAL/sounds/phonetic/
    team/murf/AAL/sounds/priv-callee-options.gsm
    team/murf/AAL/sounds/priv-callpending.gsm
    team/murf/AAL/sounds/priv-introsaved.gsm
    team/murf/AAL/sounds/priv-recordintro.gsm
    team/murf/AAL/sounds/privacy-incorrect.gsm
    team/murf/AAL/sounds/privacy-prompt.gsm
    team/murf/AAL/sounds/privacy-thankyou.gsm
    team/murf/AAL/sounds/privacy-unident.gsm
    team/murf/AAL/sounds/queue-callswaiting.gsm
    team/murf/AAL/sounds/queue-holdtime.gsm
    team/murf/AAL/sounds/queue-less-than.gsm
    team/murf/AAL/sounds/queue-minutes.gsm
    team/murf/AAL/sounds/queue-periodic-announce.gsm
    team/murf/AAL/sounds/queue-reporthold.gsm
    team/murf/AAL/sounds/queue-seconds.gsm
    team/murf/AAL/sounds/queue-thankyou.gsm
    team/murf/AAL/sounds/queue-thereare.gsm
    team/murf/AAL/sounds/queue-youarenext.gsm
    team/murf/AAL/sounds/screen-callee-options.gsm
    team/murf/AAL/sounds/seconds.gsm
    team/murf/AAL/sounds/spy-agent.gsm
    team/murf/AAL/sounds/spy-h323.gsm
    team/murf/AAL/sounds/spy-iax.gsm
    team/murf/AAL/sounds/spy-iax2.gsm
    team/murf/AAL/sounds/spy-mgcp.gsm
    team/murf/AAL/sounds/spy-sip.gsm
    team/murf/AAL/sounds/spy-skinny.gsm
    team/murf/AAL/sounds/spy-zap.gsm
    team/murf/AAL/sounds/ss-noservice.gsm
    team/murf/AAL/sounds/transfer.gsm
    team/murf/AAL/sounds/tt-allbusy.gsm
    team/murf/AAL/sounds/tt-monkeys.gsm
    team/murf/AAL/sounds/tt-monkeysintro.gsm
    team/murf/AAL/sounds/tt-somethingwrong.gsm
    team/murf/AAL/sounds/tt-weasels.gsm
    team/murf/AAL/sounds/vm-Cust1.gsm
    team/murf/AAL/sounds/vm-Cust2.gsm
    team/murf/AAL/sounds/vm-Cust3.gsm
    team/murf/AAL/sounds/vm-Cust4.gsm
    team/murf/AAL/sounds/vm-Cust5.gsm
    team/murf/AAL/sounds/vm-Family.gsm
    team/murf/AAL/sounds/vm-Friends.gsm
    team/murf/AAL/sounds/vm-INBOX.gsm
    team/murf/AAL/sounds/vm-Old.gsm
    team/murf/AAL/sounds/vm-Work.gsm
    team/murf/AAL/sounds/vm-advopts.gsm
    team/murf/AAL/sounds/vm-and.gsm
    team/murf/AAL/sounds/vm-calldiffnum.gsm
    team/murf/AAL/sounds/vm-changeto.gsm
    team/murf/AAL/sounds/vm-delete.gsm
    team/murf/AAL/sounds/vm-deleted.gsm
    team/murf/AAL/sounds/vm-dialout.gsm
    team/murf/AAL/sounds/vm-enter-num-to-call.gsm
    team/murf/AAL/sounds/vm-extension.gsm
    team/murf/AAL/sounds/vm-first.gsm
    team/murf/AAL/sounds/vm-for.gsm
    team/murf/AAL/sounds/vm-forward.gsm
    team/murf/AAL/sounds/vm-forwardoptions.gsm
    team/murf/AAL/sounds/vm-from-extension.gsm
    team/murf/AAL/sounds/vm-from-phonenumber.gsm
    team/murf/AAL/sounds/vm-from.gsm
    team/murf/AAL/sounds/vm-goodbye.gsm
    team/murf/AAL/sounds/vm-helpexit.gsm
    team/murf/AAL/sounds/vm-incorrect-mailbox.gsm
    team/murf/AAL/sounds/vm-incorrect.gsm
    team/murf/AAL/sounds/vm-instructions.gsm
    team/murf/AAL/sounds/vm-intro.gsm
    team/murf/AAL/sounds/vm-isonphone.gsm
    team/murf/AAL/sounds/vm-isunavail.gsm
    team/murf/AAL/sounds/vm-last.gsm
    team/murf/AAL/sounds/vm-leavemsg.gsm
    team/murf/AAL/sounds/vm-login.gsm
    team/murf/AAL/sounds/vm-mailboxfull.gsm
    team/murf/AAL/sounds/vm-message.gsm
    team/murf/AAL/sounds/vm-messages.gsm
    team/murf/AAL/sounds/vm-minutes.gsm
    team/murf/AAL/sounds/vm-mismatch.gsm
    team/murf/AAL/sounds/vm-msginstruct.gsm
    team/murf/AAL/sounds/vm-msgsaved.gsm
    team/murf/AAL/sounds/vm-newpassword.gsm
    team/murf/AAL/sounds/vm-newuser.gsm
    team/murf/AAL/sounds/vm-next.gsm
    team/murf/AAL/sounds/vm-no.gsm
    team/murf/AAL/sounds/vm-nobodyavail.gsm
    team/murf/AAL/sounds/vm-nobox.gsm
    team/murf/AAL/sounds/vm-nomore.gsm
    team/murf/AAL/sounds/vm-nonumber.gsm
    team/murf/AAL/sounds/vm-num-i-have.gsm
    team/murf/AAL/sounds/vm-onefor.gsm
    team/murf/AAL/sounds/vm-options.gsm
    team/murf/AAL/sounds/vm-opts.gsm
    team/murf/AAL/sounds/vm-passchanged.gsm
    team/murf/AAL/sounds/vm-password.gsm
    team/murf/AAL/sounds/vm-press.gsm
    team/murf/AAL/sounds/vm-prev.gsm
    team/murf/AAL/sounds/vm-reachoper.gsm
    team/murf/AAL/sounds/vm-rec-busy.gsm
    team/murf/AAL/sounds/vm-rec-name.gsm
    team/murf/AAL/sounds/vm-rec-temp.gsm
    team/murf/AAL/sounds/vm-rec-unv.gsm
    team/murf/AAL/sounds/vm-received.gsm
    team/murf/AAL/sounds/vm-reenterpassword.gsm
    team/murf/AAL/sounds/vm-repeat.gsm
    team/murf/AAL/sounds/vm-review.gsm
    team/murf/AAL/sounds/vm-saved.gsm
    team/murf/AAL/sounds/vm-savedto.gsm
    team/murf/AAL/sounds/vm-savefolder.gsm
    team/murf/AAL/sounds/vm-savemessage.gsm
    team/murf/AAL/sounds/vm-saveoper.gsm
    team/murf/AAL/sounds/vm-sorry.gsm
    team/murf/AAL/sounds/vm-star-cancel.gsm
    team/murf/AAL/sounds/vm-starmain.gsm
    team/murf/AAL/sounds/vm-tempgreeting.gsm
    team/murf/AAL/sounds/vm-tempgreeting2.gsm
    team/murf/AAL/sounds/vm-tempremoved.gsm
    team/murf/AAL/sounds/vm-then-pound.gsm
    team/murf/AAL/sounds/vm-theperson.gsm
    team/murf/AAL/sounds/vm-tocallback.gsm
    team/murf/AAL/sounds/vm-tocallnum.gsm
    team/murf/AAL/sounds/vm-tocancel.gsm
    team/murf/AAL/sounds/vm-tocancelmsg.gsm
    team/murf/AAL/sounds/vm-toenternumber.gsm
    team/murf/AAL/sounds/vm-toforward.gsm
    team/murf/AAL/sounds/vm-tohearenv.gsm
    team/murf/AAL/sounds/vm-tomakecall.gsm
    team/murf/AAL/sounds/vm-tooshort.gsm
    team/murf/AAL/sounds/vm-toreply.gsm
    team/murf/AAL/sounds/vm-torerecord.gsm
    team/murf/AAL/sounds/vm-undelete.gsm
    team/murf/AAL/sounds/vm-undeleted.gsm
    team/murf/AAL/sounds/vm-unknown-caller.gsm
    team/murf/AAL/sounds/vm-whichbox.gsm
    team/murf/AAL/sounds/vm-youhave.gsm
    team/murf/AAL/srv.c
    team/murf/AAL/stdtime/
    team/murf/AAL/strcompat.c
    team/murf/AAL/tdd.c
    team/murf/AAL/term.c
    team/murf/AAL/translate.c
    team/murf/AAL/udptl.c
    team/murf/AAL/ulaw.c
    team/murf/AAL/utils.c
Modified:
    team/murf/AAL/CREDITS
    team/murf/AAL/Makefile
    team/murf/AAL/UPGRADE.txt
    team/murf/AAL/agi/Makefile
    team/murf/AAL/agi/eagi-sphinx-test.c
    team/murf/AAL/agi/eagi-test.c
    team/murf/AAL/apps/   (props changed)
    team/murf/AAL/apps/Makefile
    team/murf/AAL/apps/app_adsiprog.c
    team/murf/AAL/apps/app_alarmreceiver.c
    team/murf/AAL/apps/app_amd.c
    team/murf/AAL/apps/app_authenticate.c
    team/murf/AAL/apps/app_cdr.c
    team/murf/AAL/apps/app_chanisavail.c
    team/murf/AAL/apps/app_channelredirect.c
    team/murf/AAL/apps/app_chanspy.c
    team/murf/AAL/apps/app_controlplayback.c
    team/murf/AAL/apps/app_db.c
    team/murf/AAL/apps/app_dial.c
    team/murf/AAL/apps/app_dictate.c
    team/murf/AAL/apps/app_directed_pickup.c
    team/murf/AAL/apps/app_directory.c
    team/murf/AAL/apps/app_disa.c
    team/murf/AAL/apps/app_dumpchan.c
    team/murf/AAL/apps/app_echo.c
    team/murf/AAL/apps/app_exec.c
    team/murf/AAL/apps/app_externalivr.c
    team/murf/AAL/apps/app_festival.c
    team/murf/AAL/apps/app_flash.c
    team/murf/AAL/apps/app_forkcdr.c
    team/murf/AAL/apps/app_getcpeid.c
    team/murf/AAL/apps/app_hasnewvoicemail.c
    team/murf/AAL/apps/app_ices.c
    team/murf/AAL/apps/app_image.c
    team/murf/AAL/apps/app_ivrdemo.c
    team/murf/AAL/apps/app_lookupblacklist.c
    team/murf/AAL/apps/app_lookupcidname.c
    team/murf/AAL/apps/app_macro.c
    team/murf/AAL/apps/app_meetme.c
    team/murf/AAL/apps/app_milliwatt.c
    team/murf/AAL/apps/app_mixmonitor.c
    team/murf/AAL/apps/app_morsecode.c
    team/murf/AAL/apps/app_mp3.c
    team/murf/AAL/apps/app_nbscat.c
    team/murf/AAL/apps/app_osplookup.c
    team/murf/AAL/apps/app_page.c
    team/murf/AAL/apps/app_parkandannounce.c
    team/murf/AAL/apps/app_playback.c
    team/murf/AAL/apps/app_privacy.c
    team/murf/AAL/apps/app_queue.c
    team/murf/AAL/apps/app_random.c
    team/murf/AAL/apps/app_read.c
    team/murf/AAL/apps/app_readfile.c
    team/murf/AAL/apps/app_realtime.c
    team/murf/AAL/apps/app_record.c
    team/murf/AAL/apps/app_rpt.c
    team/murf/AAL/apps/app_sayunixtime.c
    team/murf/AAL/apps/app_senddtmf.c
    team/murf/AAL/apps/app_sendtext.c
    team/murf/AAL/apps/app_setcallerid.c
    team/murf/AAL/apps/app_setcdruserfield.c
    team/murf/AAL/apps/app_settransfercapability.c
    team/murf/AAL/apps/app_skel.c
    team/murf/AAL/apps/app_sms.c
    team/murf/AAL/apps/app_softhangup.c
    team/murf/AAL/apps/app_speech_utils.c
    team/murf/AAL/apps/app_stack.c
    team/murf/AAL/apps/app_system.c
    team/murf/AAL/apps/app_talkdetect.c
    team/murf/AAL/apps/app_test.c
    team/murf/AAL/apps/app_transfer.c
    team/murf/AAL/apps/app_url.c
    team/murf/AAL/apps/app_userevent.c
    team/murf/AAL/apps/app_verbose.c
    team/murf/AAL/apps/app_voicemail.c
    team/murf/AAL/apps/app_waitforring.c
    team/murf/AAL/apps/app_waitforsilence.c
    team/murf/AAL/apps/app_while.c
    team/murf/AAL/apps/app_zapateller.c
    team/murf/AAL/apps/app_zapbarge.c
    team/murf/AAL/apps/app_zapras.c
    team/murf/AAL/apps/app_zapscan.c
    team/murf/AAL/build_tools/   (props changed)
    team/murf/AAL/channels/   (props changed)
    team/murf/AAL/channels/Makefile
    team/murf/AAL/channels/chan_agent.c
    team/murf/AAL/channels/chan_alsa.c
    team/murf/AAL/channels/chan_features.c
    team/murf/AAL/channels/chan_h323.c
    team/murf/AAL/channels/chan_iax2.c
    team/murf/AAL/channels/chan_local.c
    team/murf/AAL/channels/chan_mgcp.c
    team/murf/AAL/channels/chan_misdn.c
    team/murf/AAL/channels/chan_nbs.c
    team/murf/AAL/channels/chan_oss.c
    team/murf/AAL/channels/chan_phone.c
    team/murf/AAL/channels/chan_sip.c
    team/murf/AAL/channels/chan_skinny.c
    team/murf/AAL/channels/chan_zap.c
    team/murf/AAL/channels/h323/Makefile
    team/murf/AAL/channels/h323/h323.conf.sample
    team/murf/AAL/channels/iax2-parser.c
    team/murf/AAL/channels/iax2-provision.c
    team/murf/AAL/channels/iax2.h
    team/murf/AAL/channels/misdn/Makefile
    team/murf/AAL/channels/misdn/chan_misdn_config.h
    team/murf/AAL/channels/misdn/ie.c
    team/murf/AAL/channels/misdn/isdn_lib.c
    team/murf/AAL/channels/misdn/isdn_lib.h
    team/murf/AAL/channels/misdn/isdn_lib_intern.h
    team/murf/AAL/channels/misdn/isdn_msg_parser.c
    team/murf/AAL/channels/misdn_config.c
    team/murf/AAL/doc/   (props changed)
    team/murf/AAL/doc/CODING-GUIDELINES
    team/murf/AAL/doc/ael.txt
    team/murf/AAL/doc/asterisk-conf.txt
    team/murf/AAL/doc/cdrdriver.txt
    team/murf/AAL/doc/channelvariables.txt
    team/murf/AAL/doc/cliprompt.txt
    team/murf/AAL/doc/enum.txt
    team/murf/AAL/doc/extconfig.txt
    team/murf/AAL/doc/iax.txt
    team/murf/AAL/doc/manager.txt
    team/murf/AAL/doc/misdn.txt
    team/murf/AAL/doc/odbcstorage.txt
    team/murf/AAL/doc/queuelog.txt
    team/murf/AAL/doc/realtime.txt
    team/murf/AAL/doc/smdi.txt
    team/murf/AAL/doc/speechrec.txt
    team/murf/AAL/funcs/   (props changed)
    team/murf/AAL/funcs/Makefile
    team/murf/AAL/funcs/func_base64.c
    team/murf/AAL/funcs/func_callerid.c
    team/murf/AAL/funcs/func_cdr.c
    team/murf/AAL/funcs/func_channel.c
    team/murf/AAL/funcs/func_curl.c
    team/murf/AAL/funcs/func_cut.c
    team/murf/AAL/funcs/func_db.c
    team/murf/AAL/funcs/func_enum.c
    team/murf/AAL/funcs/func_env.c
    team/murf/AAL/funcs/func_groupcount.c
    team/murf/AAL/funcs/func_language.c
    team/murf/AAL/funcs/func_logic.c
    team/murf/AAL/funcs/func_math.c
    team/murf/AAL/funcs/func_md5.c
    team/murf/AAL/funcs/func_moh.c
    team/murf/AAL/funcs/func_odbc.c
    team/murf/AAL/funcs/func_rand.c
    team/murf/AAL/funcs/func_sha1.c
    team/murf/AAL/funcs/func_strings.c
    team/murf/AAL/funcs/func_timeout.c
    team/murf/AAL/funcs/func_uri.c
    team/murf/AAL/include/   (props changed)
    team/murf/AAL/include/asterisk/   (props changed)
    team/murf/AAL/include/asterisk.h
    team/murf/AAL/include/asterisk/alaw.h
    team/murf/AAL/include/asterisk/app.h
    team/murf/AAL/include/asterisk/astmm.h
    team/murf/AAL/include/asterisk/astosp.h
    team/murf/AAL/include/asterisk/callerid.h
    team/murf/AAL/include/asterisk/cdr.h
    team/murf/AAL/include/asterisk/channel.h
    team/murf/AAL/include/asterisk/chanspy.h
    team/murf/AAL/include/asterisk/compat.h
    team/murf/AAL/include/asterisk/compiler.h
    team/murf/AAL/include/asterisk/config.h
    team/murf/AAL/include/asterisk/devicestate.h
    team/murf/AAL/include/asterisk/dns.h
    team/murf/AAL/include/asterisk/dnsmgr.h
    team/murf/AAL/include/asterisk/doxyref.h
    team/murf/AAL/include/asterisk/endian.h
    team/murf/AAL/include/asterisk/file.h
    team/murf/AAL/include/asterisk/frame.h
    team/murf/AAL/include/asterisk/indications.h
    team/murf/AAL/include/asterisk/linkedlists.h
    team/murf/AAL/include/asterisk/lock.h
    team/murf/AAL/include/asterisk/logger.h
    team/murf/AAL/include/asterisk/manager.h
    team/murf/AAL/include/asterisk/module.h
    team/murf/AAL/include/asterisk/monitor.h

[... 92221 lines stripped ...]


More information about the svn-commits mailing list