[svn-commits] russell: branch group/res_config_ldap r41027 - in /team/group/res_config_ldap...

svn-commits at lists.digium.com svn-commits at lists.digium.com
Thu Aug 24 17:58:23 MST 2006


Author: russell
Date: Thu Aug 24 19:58:20 2006
New Revision: 41027

URL: http://svn.digium.com/view/asterisk?rev=41027&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,40904,40928,40946,40949,40953,40955,40960,40964,40968,40972,40980-40981,40988,40990,40993,40995,41009,41015,41023 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/trunk

................
r40722 | kpfleming | 2006-08-20 22:11:39 -0400 (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 22:26:51 -0400 (Sun, 20 Aug 2006) | 2 lines

oops... no pattern rules for bison/flex

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

main subdirectory is not dependencies for menuselect input

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

could have sworn i committed this change already...

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

document Makefile target changes

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

don't declare these variables unless needed

................
r40753 | kpfleming | 2006-08-20 23:58:02 -0400 (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 03:34:59 -0400 (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 07:48:08 -0400 (Mon, 21 Aug 2006) | 2 lines

swap module macro arguments to proper order

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

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

................
r40769 | kpfleming | 2006-08-21 10:42:03 -0400 (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 10:45:58 -0400 (Mon, 21 Aug 2006) | 2 lines

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

................
r40775 | russell | 2006-08-21 13:22:24 -0400 (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 15:18:09 -0400 (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 15:33:42 -0400 (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 15:35:28 -0400 (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 15:42:29 -0400 (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 15:56:30 -0400 (Mon, 21 Aug 2006) | 2 lines

restore printing of module name during loading

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

use new configure-provided wrappers for attributes

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

don't initialize global variables list twice

................
r40790 | kpfleming | 2006-08-21 16:12:18 -0400 (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 16:18:36 -0400 (Mon, 21 Aug 2006) | 2 lines

another variable to clear out before configuring mxml

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

oops... missed one

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

restore 'preload' functionality in loader

................
r40799 | mogorman | 2006-08-21 18:36:15 -0400 (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 21:01:39 -0400 (Mon, 21 Aug 2006) | 2 lines

Fix up the props a bit

................
r40815 | file | 2006-08-21 21:57:40 -0400 (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 22:15:34 -0400 (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 22:24:46 -0400 (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 22:30:38 -0400 (Mon, 21 Aug 2006) | 2 lines

Another compile time warning bites the dust

................
r40826 | tilghman | 2006-08-21 23:01:49 -0400 (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-22 01:24:50 -0400 (Tue, 22 Aug 2006) | 2 lines

a couple Solaris tweaks, to help build properly.

................
r40833 | qwell | 2006-08-22 01:34:44 -0400 (Tue, 22 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 12:32:41 -0400 (Tue, 22 Aug 2006) | 2 lines

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

................
r40853 | kpfleming | 2006-08-22 17:45:15 -0400 (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 17:57:16 -0400 (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 19:06:13 -0400 (Tue, 22 Aug 2006) | 2 lines

minor improvements

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

make platforms that use mutexes in stdio.h happy

................
r40866 | kpfleming | 2006-08-22 19:55:16 -0400 (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 23:07:34 -0400 (Tue, 22 Aug 2006) | 2 lines

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

................
r40904 | tilghman | 2006-08-23 12:14:18 -0400 (Wed, 23 Aug 2006) | 10 lines

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

........
r40901 | tilghman | 2006-08-23 11:05:26 -0500 (Wed, 23 Aug 2006) | 2 lines

Revert last change - breaks retrieval of builtin variables

........

................
r40928 | russell | 2006-08-23 13:44:33 -0400 (Wed, 23 Aug 2006) | 2 lines

remove svnmerge-integrated property

................
r40946 | qwell | 2006-08-23 14:51:39 -0400 (Wed, 23 Aug 2006) | 2 lines

move the "muted" svn:ignore to the utils/ directory

................
r40949 | kpfleming | 2006-08-23 15:28:13 -0400 (Wed, 23 Aug 2006) | 3 lines

use RTLD_NOLOAD if it's available to make loading dynamic modules a little faster and less resource-intensive
also, keep trying to dlclose() a module until it actually goes away, since it may have other modules it brought in when it was loaded (thanks PCadach for pointing this problem out to me)

................
r40953 | file | 2006-08-23 16:22:18 -0400 (Wed, 23 Aug 2006) | 2 lines

Free the filename so we don't have a memory leak. (reported by PCadach in #asterisk-bugs)

................
r40955 | file | 2006-08-23 16:39:23 -0400 (Wed, 23 Aug 2006) | 2 lines

Add a lasting legacy from 1082... a Macro to do a pre acknowledgement message with option to reject. Thanks to patbaker82 for this. (issue #1082 reported by damin)

................
r40960 | oej | 2006-08-23 17:19:21 -0400 (Wed, 23 Aug 2006) | 2 lines

Fixing a comment

................
r40964 | qwell | 2006-08-23 21:21:41 -0400 (Wed, 23 Aug 2006) | 8 lines

Okay, there are 3 reasons why I'm doing this.

1) Solaris sed doesn't have -r, which means things like \s and \S don't work.
2) GNU sed version 4.1.2 failed on a very simple test
     echo "Test   Test" | sed -r -e 's/\s/x/g'
     should have returned "TestxxxTest", but did not (however, 4.1.4 did?).
3) The CFLAGS were never set, so that entire line actually did nothing.  Now it's useful again.

................
r40968 | file | 2006-08-24 11:44:24 -0400 (Thu, 24 Aug 2006) | 2 lines

Documentation updates (thanks Shaun for the speechrec.txt one!)

................
r40972 | file | 2006-08-24 12:46:13 -0400 (Thu, 24 Aug 2006) | 10 lines

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

........
r40971 | file | 2006-08-24 12:44:41 -0400 (Thu, 24 Aug 2006) | 2 lines

Minor documentation fix to add the 'dynamic' dialplan option from angler

........

................
r40980 | file | 2006-08-24 13:13:57 -0400 (Thu, 24 Aug 2006) | 10 lines

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

........
r40979 | file | 2006-08-24 13:13:04 -0400 (Thu, 24 Aug 2006) | 2 lines

I can type english. Honest. Thanks Kenny.

........

................
r40981 | mattf | 2006-08-24 13:24:33 -0400 (Thu, 24 Aug 2006) | 2 lines

Revert stupid RTLD_NOLOAD change that breaks module loading on some systems.

................
r40988 | oej | 2006-08-24 14:49:35 -0400 (Thu, 24 Aug 2006) | 2 lines

Deprecate USERAGENT

................
r40990 | russell | 2006-08-24 14:57:46 -0400 (Thu, 24 Aug 2006) | 2 lines

remove CFLAGS that aren't needed anymore

................
r40993 | russell | 2006-08-24 15:07:01 -0400 (Thu, 24 Aug 2006) | 2 lines

fix codec_gsm build for powerpc

................
r40995 | russell | 2006-08-24 15:53:43 -0400 (Thu, 24 Aug 2006) | 19 lines

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

........
r40994 | russell | 2006-08-24 15:41:26 -0400 (Thu, 24 Aug 2006) | 11 lines

Fix a few issues related to the handling of channel variables
 - in pbx_builtin_serialize_variables(), the variable list traversal would stop
   on a variables with empty name/values, which is not appropriate
 - When removing the GROUP variables, use AST_LIST_REMOVE_CURRENT instead of
   AST_LIST_REMOVE
 - During masquerading, when copying the variables list from one channel to the
   other, using AST_LIST_INSERT_TAIL is not valid for appending a whole list.
   It leaves the tail pointer of the list invalid.  Introduce a new macro,
   AST_LIST_APPEND_LIST that appends a list properly.
(issue #7802, softins)

........

................
r41009 | qwell | 2006-08-24 17:30:34 -0400 (Thu, 24 Aug 2006) | 2 lines

Fix a small typo I found.

................
r41015 | qwell | 2006-08-24 18:17:12 -0400 (Thu, 24 Aug 2006) | 5 lines

As per the comments in this file..
The last patch was slightly wrong.  This'll get it for sure.

Solaris (and some others) don't have sed -r.  perl -p is equivalent

................
r41023 | russell | 2006-08-24 20:13:03 -0400 (Thu, 24 Aug 2006) | 2 lines

get cflags for libcurl as well as libs (patch from qwell)

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

Added:
    team/group/res_config_ldap/build_tools/embed_modules.xml
      - copied unchanged from r41023, trunk/build_tools/embed_modules.xml
    team/group/res_config_ldap/doc/asterisk.8
      - copied unchanged from r41023, trunk/doc/asterisk.8
    team/group/res_config_ldap/doc/asterisk.sgml
      - copied unchanged from r41023, trunk/doc/asterisk.sgml
    team/group/res_config_ldap/include/asterisk/paths.h
      - copied unchanged from r41023, trunk/include/asterisk/paths.h
    team/group/res_config_ldap/main/   (props changed)
      - copied from r41023, trunk/main/
    team/group/res_config_ldap/main/Makefile
      - copied unchanged from r41023, trunk/main/Makefile
    team/group/res_config_ldap/main/abstract_jb.c
      - copied unchanged from r41023, trunk/main/abstract_jb.c
    team/group/res_config_ldap/main/acl.c
      - copied unchanged from r41023, trunk/main/acl.c
    team/group/res_config_ldap/main/aescrypt.c
      - copied unchanged from r41023, trunk/main/aescrypt.c
    team/group/res_config_ldap/main/aeskey.c
      - copied unchanged from r41023, trunk/main/aeskey.c
    team/group/res_config_ldap/main/aesopt.h
      - copied unchanged from r41023, trunk/main/aesopt.h
    team/group/res_config_ldap/main/aestab.c
      - copied unchanged from r41023, trunk/main/aestab.c
    team/group/res_config_ldap/main/alaw.c
      - copied unchanged from r41023, trunk/main/alaw.c
    team/group/res_config_ldap/main/app.c
      - copied unchanged from r41023, trunk/main/app.c
    team/group/res_config_ldap/main/ast_expr2.c
      - copied unchanged from r41023, trunk/main/ast_expr2.c
    team/group/res_config_ldap/main/ast_expr2.fl
      - copied unchanged from r41023, trunk/main/ast_expr2.fl
    team/group/res_config_ldap/main/ast_expr2.h
      - copied unchanged from r41023, trunk/main/ast_expr2.h
    team/group/res_config_ldap/main/ast_expr2.y
      - copied unchanged from r41023, trunk/main/ast_expr2.y
    team/group/res_config_ldap/main/ast_expr2f.c
      - copied unchanged from r41023, trunk/main/ast_expr2f.c
    team/group/res_config_ldap/main/asterisk.c
      - copied unchanged from r41023, trunk/main/asterisk.c
    team/group/res_config_ldap/main/astmm.c
      - copied unchanged from r41023, trunk/main/astmm.c
    team/group/res_config_ldap/main/autoservice.c
      - copied unchanged from r41023, trunk/main/autoservice.c
    team/group/res_config_ldap/main/buildinfo.c
      - copied unchanged from r41023, trunk/main/buildinfo.c
    team/group/res_config_ldap/main/callerid.c
      - copied unchanged from r41023, trunk/main/callerid.c
    team/group/res_config_ldap/main/cdr.c
      - copied unchanged from r41023, trunk/main/cdr.c
    team/group/res_config_ldap/main/channel.c
      - copied unchanged from r41023, trunk/main/channel.c
    team/group/res_config_ldap/main/chanvars.c
      - copied unchanged from r41023, trunk/main/chanvars.c
    team/group/res_config_ldap/main/cli.c
      - copied unchanged from r41023, trunk/main/cli.c
    team/group/res_config_ldap/main/coef_in.h
      - copied unchanged from r41023, trunk/main/coef_in.h
    team/group/res_config_ldap/main/coef_out.h
      - copied unchanged from r41023, trunk/main/coef_out.h
    team/group/res_config_ldap/main/config.c
      - copied unchanged from r41023, trunk/main/config.c
    team/group/res_config_ldap/main/cryptostub.c
      - copied unchanged from r41023, trunk/main/cryptostub.c
    team/group/res_config_ldap/main/db.c
      - copied unchanged from r41023, trunk/main/db.c
    team/group/res_config_ldap/main/db1-ast/   (props changed)
      - copied from r41023, trunk/main/db1-ast/
    team/group/res_config_ldap/main/db1-ast/Makefile
      - copied unchanged from r41023, trunk/main/db1-ast/Makefile
    team/group/res_config_ldap/main/db1-ast/btree/
      - copied from r41023, trunk/main/db1-ast/btree/
    team/group/res_config_ldap/main/db1-ast/btree/bt_close.c
      - copied unchanged from r41023, trunk/main/db1-ast/btree/bt_close.c
    team/group/res_config_ldap/main/db1-ast/btree/bt_conv.c
      - copied unchanged from r41023, trunk/main/db1-ast/btree/bt_conv.c
    team/group/res_config_ldap/main/db1-ast/btree/bt_debug.c
      - copied unchanged from r41023, trunk/main/db1-ast/btree/bt_debug.c
    team/group/res_config_ldap/main/db1-ast/btree/bt_delete.c
      - copied unchanged from r41023, trunk/main/db1-ast/btree/bt_delete.c
    team/group/res_config_ldap/main/db1-ast/btree/bt_get.c
      - copied unchanged from r41023, trunk/main/db1-ast/btree/bt_get.c
    team/group/res_config_ldap/main/db1-ast/btree/bt_open.c
      - copied unchanged from r41023, trunk/main/db1-ast/btree/bt_open.c
    team/group/res_config_ldap/main/db1-ast/btree/bt_overflow.c
      - copied unchanged from r41023, trunk/main/db1-ast/btree/bt_overflow.c
    team/group/res_config_ldap/main/db1-ast/btree/bt_page.c
      - copied unchanged from r41023, trunk/main/db1-ast/btree/bt_page.c
    team/group/res_config_ldap/main/db1-ast/btree/bt_put.c
      - copied unchanged from r41023, trunk/main/db1-ast/btree/bt_put.c
    team/group/res_config_ldap/main/db1-ast/btree/bt_search.c
      - copied unchanged from r41023, trunk/main/db1-ast/btree/bt_search.c
    team/group/res_config_ldap/main/db1-ast/btree/bt_seq.c
      - copied unchanged from r41023, trunk/main/db1-ast/btree/bt_seq.c
    team/group/res_config_ldap/main/db1-ast/btree/bt_split.c
      - copied unchanged from r41023, trunk/main/db1-ast/btree/bt_split.c
    team/group/res_config_ldap/main/db1-ast/btree/bt_utils.c
      - copied unchanged from r41023, trunk/main/db1-ast/btree/bt_utils.c
    team/group/res_config_ldap/main/db1-ast/btree/btree.h
      - copied unchanged from r41023, trunk/main/db1-ast/btree/btree.h
    team/group/res_config_ldap/main/db1-ast/btree/extern.h
      - copied unchanged from r41023, trunk/main/db1-ast/btree/extern.h
    team/group/res_config_ldap/main/db1-ast/db/
      - copied from r41023, trunk/main/db1-ast/db/
    team/group/res_config_ldap/main/db1-ast/db/db.c
      - copied unchanged from r41023, trunk/main/db1-ast/db/db.c
    team/group/res_config_ldap/main/db1-ast/hash/
      - copied from r41023, trunk/main/db1-ast/hash/
    team/group/res_config_ldap/main/db1-ast/hash/README
      - copied unchanged from r41023, trunk/main/db1-ast/hash/README
    team/group/res_config_ldap/main/db1-ast/hash/extern.h
      - copied unchanged from r41023, trunk/main/db1-ast/hash/extern.h
    team/group/res_config_ldap/main/db1-ast/hash/hash.c
      - copied unchanged from r41023, trunk/main/db1-ast/hash/hash.c
    team/group/res_config_ldap/main/db1-ast/hash/hash.h
      - copied unchanged from r41023, trunk/main/db1-ast/hash/hash.h
    team/group/res_config_ldap/main/db1-ast/hash/hash_bigkey.c
      - copied unchanged from r41023, trunk/main/db1-ast/hash/hash_bigkey.c
    team/group/res_config_ldap/main/db1-ast/hash/hash_buf.c
      - copied unchanged from r41023, trunk/main/db1-ast/hash/hash_buf.c
    team/group/res_config_ldap/main/db1-ast/hash/hash_func.c
      - copied unchanged from r41023, trunk/main/db1-ast/hash/hash_func.c
    team/group/res_config_ldap/main/db1-ast/hash/hash_log2.c
      - copied unchanged from r41023, trunk/main/db1-ast/hash/hash_log2.c
    team/group/res_config_ldap/main/db1-ast/hash/hash_page.c
      - copied unchanged from r41023, trunk/main/db1-ast/hash/hash_page.c
    team/group/res_config_ldap/main/db1-ast/hash/hsearch.c
      - copied unchanged from r41023, trunk/main/db1-ast/hash/hsearch.c
    team/group/res_config_ldap/main/db1-ast/hash/ndbm.c
      - copied unchanged from r41023, trunk/main/db1-ast/hash/ndbm.c
    team/group/res_config_ldap/main/db1-ast/hash/page.h
      - copied unchanged from r41023, trunk/main/db1-ast/hash/page.h
    team/group/res_config_ldap/main/db1-ast/hash/search.h
      - copied unchanged from r41023, trunk/main/db1-ast/hash/search.h
    team/group/res_config_ldap/main/db1-ast/include/
      - copied from r41023, trunk/main/db1-ast/include/
    team/group/res_config_ldap/main/db1-ast/include/circ-queue.h
      - copied unchanged from r41023, trunk/main/db1-ast/include/circ-queue.h
    team/group/res_config_ldap/main/db1-ast/include/compat.h
      - copied unchanged from r41023, trunk/main/db1-ast/include/compat.h
    team/group/res_config_ldap/main/db1-ast/include/db.h
      - copied unchanged from r41023, trunk/main/db1-ast/include/db.h
    team/group/res_config_ldap/main/db1-ast/include/mpool.h
      - copied unchanged from r41023, trunk/main/db1-ast/include/mpool.h
    team/group/res_config_ldap/main/db1-ast/include/ndbm.h
      - copied unchanged from r41023, trunk/main/db1-ast/include/ndbm.h
    team/group/res_config_ldap/main/db1-ast/libdb.map
      - copied unchanged from r41023, trunk/main/db1-ast/libdb.map
    team/group/res_config_ldap/main/db1-ast/mpool/
      - copied from r41023, trunk/main/db1-ast/mpool/
    team/group/res_config_ldap/main/db1-ast/mpool/README
      - copied unchanged from r41023, trunk/main/db1-ast/mpool/README
    team/group/res_config_ldap/main/db1-ast/mpool/mpool.c
      - copied unchanged from r41023, trunk/main/db1-ast/mpool/mpool.c
    team/group/res_config_ldap/main/db1-ast/recno/
      - copied from r41023, trunk/main/db1-ast/recno/
    team/group/res_config_ldap/main/db1-ast/recno/extern.h
      - copied unchanged from r41023, trunk/main/db1-ast/recno/extern.h
    team/group/res_config_ldap/main/db1-ast/recno/rec_close.c
      - copied unchanged from r41023, trunk/main/db1-ast/recno/rec_close.c
    team/group/res_config_ldap/main/db1-ast/recno/rec_delete.c
      - copied unchanged from r41023, trunk/main/db1-ast/recno/rec_delete.c
    team/group/res_config_ldap/main/db1-ast/recno/rec_get.c
      - copied unchanged from r41023, trunk/main/db1-ast/recno/rec_get.c
    team/group/res_config_ldap/main/db1-ast/recno/rec_open.c
      - copied unchanged from r41023, trunk/main/db1-ast/recno/rec_open.c
    team/group/res_config_ldap/main/db1-ast/recno/rec_put.c
      - copied unchanged from r41023, trunk/main/db1-ast/recno/rec_put.c
    team/group/res_config_ldap/main/db1-ast/recno/rec_search.c
      - copied unchanged from r41023, trunk/main/db1-ast/recno/rec_search.c
    team/group/res_config_ldap/main/db1-ast/recno/rec_seq.c
      - copied unchanged from r41023, trunk/main/db1-ast/recno/rec_seq.c
    team/group/res_config_ldap/main/db1-ast/recno/rec_utils.c
      - copied unchanged from r41023, trunk/main/db1-ast/recno/rec_utils.c
    team/group/res_config_ldap/main/db1-ast/recno/recno.h
      - copied unchanged from r41023, trunk/main/db1-ast/recno/recno.h
    team/group/res_config_ldap/main/devicestate.c
      - copied unchanged from r41023, trunk/main/devicestate.c
    team/group/res_config_ldap/main/dlfcn.c
      - copied unchanged from r41023, trunk/main/dlfcn.c
    team/group/res_config_ldap/main/dns.c
      - copied unchanged from r41023, trunk/main/dns.c
    team/group/res_config_ldap/main/dnsmgr.c
      - copied unchanged from r41023, trunk/main/dnsmgr.c
    team/group/res_config_ldap/main/dsp.c
      - copied unchanged from r41023, trunk/main/dsp.c
    team/group/res_config_ldap/main/ecdisa.h
      - copied unchanged from r41023, trunk/main/ecdisa.h
    team/group/res_config_ldap/main/editline/   (props changed)
      - copied from r41023, trunk/main/editline/
    team/group/res_config_ldap/main/editline/CHANGES
      - copied unchanged from r41023, trunk/main/editline/CHANGES
    team/group/res_config_ldap/main/editline/INSTALL
      - copied unchanged from r41023, trunk/main/editline/INSTALL
    team/group/res_config_ldap/main/editline/Makefile.in
      - copied unchanged from r41023, trunk/main/editline/Makefile.in
    team/group/res_config_ldap/main/editline/PLATFORMS
      - copied unchanged from r41023, trunk/main/editline/PLATFORMS
    team/group/res_config_ldap/main/editline/README
      - copied unchanged from r41023, trunk/main/editline/README
    team/group/res_config_ldap/main/editline/TEST/
      - copied from r41023, trunk/main/editline/TEST/
    team/group/res_config_ldap/main/editline/TEST/test.c
      - copied unchanged from r41023, trunk/main/editline/TEST/test.c
    team/group/res_config_ldap/main/editline/chared.c
      - copied unchanged from r41023, trunk/main/editline/chared.c
    team/group/res_config_ldap/main/editline/chared.h
      - copied unchanged from r41023, trunk/main/editline/chared.h
    team/group/res_config_ldap/main/editline/common.c
      - copied unchanged from r41023, trunk/main/editline/common.c
    team/group/res_config_ldap/main/editline/config.guess
      - copied unchanged from r41023, trunk/main/editline/config.guess
    team/group/res_config_ldap/main/editline/config.h.in
      - copied unchanged from r41023, trunk/main/editline/config.h.in
    team/group/res_config_ldap/main/editline/config.sub
      - copied unchanged from r41023, trunk/main/editline/config.sub
    team/group/res_config_ldap/main/editline/configure
      - copied unchanged from r41023, trunk/main/editline/configure
    team/group/res_config_ldap/main/editline/configure.in
      - copied unchanged from r41023, trunk/main/editline/configure.in
    team/group/res_config_ldap/main/editline/editline.3
      - copied unchanged from r41023, trunk/main/editline/editline.3
    team/group/res_config_ldap/main/editline/editrc.5
      - copied unchanged from r41023, trunk/main/editline/editrc.5
    team/group/res_config_ldap/main/editline/el.c
      - copied unchanged from r41023, trunk/main/editline/el.c
    team/group/res_config_ldap/main/editline/el.h
      - copied unchanged from r41023, trunk/main/editline/el.h
    team/group/res_config_ldap/main/editline/emacs.c
      - copied unchanged from r41023, trunk/main/editline/emacs.c
    team/group/res_config_ldap/main/editline/hist.c
      - copied unchanged from r41023, trunk/main/editline/hist.c
    team/group/res_config_ldap/main/editline/hist.h
      - copied unchanged from r41023, trunk/main/editline/hist.h
    team/group/res_config_ldap/main/editline/histedit.h
      - copied unchanged from r41023, trunk/main/editline/histedit.h
    team/group/res_config_ldap/main/editline/history.c
      - copied unchanged from r41023, trunk/main/editline/history.c
    team/group/res_config_ldap/main/editline/install-sh
      - copied unchanged from r41023, trunk/main/editline/install-sh
    team/group/res_config_ldap/main/editline/key.c
      - copied unchanged from r41023, trunk/main/editline/key.c
    team/group/res_config_ldap/main/editline/key.h
      - copied unchanged from r41023, trunk/main/editline/key.h
    team/group/res_config_ldap/main/editline/makelist
      - copied unchanged from r41023, trunk/main/editline/makelist
    team/group/res_config_ldap/main/editline/map.c
      - copied unchanged from r41023, trunk/main/editline/map.c
    team/group/res_config_ldap/main/editline/map.h
      - copied unchanged from r41023, trunk/main/editline/map.h
    team/group/res_config_ldap/main/editline/np/   (props changed)
      - copied from r41023, trunk/main/editline/np/
    team/group/res_config_ldap/main/editline/np/fgetln.c
      - copied unchanged from r41023, trunk/main/editline/np/fgetln.c
    team/group/res_config_ldap/main/editline/np/strlcat.c
      - copied unchanged from r41023, trunk/main/editline/np/strlcat.c
    team/group/res_config_ldap/main/editline/np/strlcpy.c
      - copied unchanged from r41023, trunk/main/editline/np/strlcpy.c
    team/group/res_config_ldap/main/editline/np/unvis.c
      - copied unchanged from r41023, trunk/main/editline/np/unvis.c
    team/group/res_config_ldap/main/editline/np/vis.c
      - copied unchanged from r41023, trunk/main/editline/np/vis.c
    team/group/res_config_ldap/main/editline/np/vis.h
      - copied unchanged from r41023, trunk/main/editline/np/vis.h
    team/group/res_config_ldap/main/editline/parse.c
      - copied unchanged from r41023, trunk/main/editline/parse.c
    team/group/res_config_ldap/main/editline/parse.h
      - copied unchanged from r41023, trunk/main/editline/parse.h
    team/group/res_config_ldap/main/editline/prompt.c
      - copied unchanged from r41023, trunk/main/editline/prompt.c
    team/group/res_config_ldap/main/editline/prompt.h
      - copied unchanged from r41023, trunk/main/editline/prompt.h
    team/group/res_config_ldap/main/editline/read.c
      - copied unchanged from r41023, trunk/main/editline/read.c
    team/group/res_config_ldap/main/editline/read.h
      - copied unchanged from r41023, trunk/main/editline/read.h
    team/group/res_config_ldap/main/editline/readline/
      - copied from r41023, trunk/main/editline/readline/
    team/group/res_config_ldap/main/editline/readline.c
      - copied unchanged from r41023, trunk/main/editline/readline.c
    team/group/res_config_ldap/main/editline/readline/readline.h
      - copied unchanged from r41023, trunk/main/editline/readline/readline.h
    team/group/res_config_ldap/main/editline/refresh.c
      - copied unchanged from r41023, trunk/main/editline/refresh.c
    team/group/res_config_ldap/main/editline/refresh.h
      - copied unchanged from r41023, trunk/main/editline/refresh.h
    team/group/res_config_ldap/main/editline/search.c
      - copied unchanged from r41023, trunk/main/editline/search.c
    team/group/res_config_ldap/main/editline/search.h
      - copied unchanged from r41023, trunk/main/editline/search.h
    team/group/res_config_ldap/main/editline/sig.c
      - copied unchanged from r41023, trunk/main/editline/sig.c
    team/group/res_config_ldap/main/editline/sig.h
      - copied unchanged from r41023, trunk/main/editline/sig.h
    team/group/res_config_ldap/main/editline/sys.h
      - copied unchanged from r41023, trunk/main/editline/sys.h
    team/group/res_config_ldap/main/editline/term.c
      - copied unchanged from r41023, trunk/main/editline/term.c
    team/group/res_config_ldap/main/editline/term.h
      - copied unchanged from r41023, trunk/main/editline/term.h
    team/group/res_config_ldap/main/editline/tokenizer.c
      - copied unchanged from r41023, trunk/main/editline/tokenizer.c
    team/group/res_config_ldap/main/editline/tokenizer.h
      - copied unchanged from r41023, trunk/main/editline/tokenizer.h
    team/group/res_config_ldap/main/editline/tty.c
      - copied unchanged from r41023, trunk/main/editline/tty.c
    team/group/res_config_ldap/main/editline/tty.h
      - copied unchanged from r41023, trunk/main/editline/tty.h
    team/group/res_config_ldap/main/editline/vi.c
      - copied unchanged from r41023, trunk/main/editline/vi.c
    team/group/res_config_ldap/main/enum.c
      - copied unchanged from r41023, trunk/main/enum.c
    team/group/res_config_ldap/main/file.c
      - copied unchanged from r41023, trunk/main/file.c
    team/group/res_config_ldap/main/fixedjitterbuf.c
      - copied unchanged from r41023, trunk/main/fixedjitterbuf.c
    team/group/res_config_ldap/main/fixedjitterbuf.h
      - copied unchanged from r41023, trunk/main/fixedjitterbuf.h
    team/group/res_config_ldap/main/frame.c
      - copied unchanged from r41023, trunk/main/frame.c
    team/group/res_config_ldap/main/fskmodem.c
      - copied unchanged from r41023, trunk/main/fskmodem.c
    team/group/res_config_ldap/main/http.c
      - copied unchanged from r41023, trunk/main/http.c
    team/group/res_config_ldap/main/image.c
      - copied unchanged from r41023, trunk/main/image.c
    team/group/res_config_ldap/main/indications.c
      - copied unchanged from r41023, trunk/main/indications.c
    team/group/res_config_ldap/main/io.c
      - copied unchanged from r41023, trunk/main/io.c
    team/group/res_config_ldap/main/jitterbuf.c
      - copied unchanged from r41023, trunk/main/jitterbuf.c
    team/group/res_config_ldap/main/jitterbuf.h
      - copied unchanged from r41023, trunk/main/jitterbuf.h
    team/group/res_config_ldap/main/loader.c
      - copied unchanged from r41023, trunk/main/loader.c
    team/group/res_config_ldap/main/logger.c
      - copied unchanged from r41023, trunk/main/logger.c
    team/group/res_config_ldap/main/manager.c
      - copied unchanged from r41023, trunk/main/manager.c
    team/group/res_config_ldap/main/md5.c
      - copied unchanged from r41023, trunk/main/md5.c
    team/group/res_config_ldap/main/netsock.c
      - copied unchanged from r41023, trunk/main/netsock.c
    team/group/res_config_ldap/main/pbx.c
      - copied unchanged from r41023, trunk/main/pbx.c
    team/group/res_config_ldap/main/plc.c
      - copied unchanged from r41023, trunk/main/plc.c
    team/group/res_config_ldap/main/poll.c
      - copied unchanged from r41023, trunk/main/poll.c
    team/group/res_config_ldap/main/privacy.c
      - copied unchanged from r41023, trunk/main/privacy.c
    team/group/res_config_ldap/main/rtp.c
      - copied unchanged from r41023, trunk/main/rtp.c
    team/group/res_config_ldap/main/say.c
      - copied unchanged from r41023, trunk/main/say.c
    team/group/res_config_ldap/main/sched.c
      - copied unchanged from r41023, trunk/main/sched.c
    team/group/res_config_ldap/main/sha1.c
      - copied unchanged from r41023, trunk/main/sha1.c
    team/group/res_config_ldap/main/slinfactory.c
      - copied unchanged from r41023, trunk/main/slinfactory.c
    team/group/res_config_ldap/main/srv.c
      - copied unchanged from r41023, trunk/main/srv.c
    team/group/res_config_ldap/main/stdtime/   (props changed)
      - copied from r41023, trunk/main/stdtime/
    team/group/res_config_ldap/main/stdtime/Makefile
      - copied unchanged from r41023, trunk/main/stdtime/Makefile
    team/group/res_config_ldap/main/stdtime/localtime.c
      - copied unchanged from r41023, trunk/main/stdtime/localtime.c
    team/group/res_config_ldap/main/stdtime/test.c
      - copied unchanged from r41023, trunk/main/stdtime/test.c
    team/group/res_config_ldap/main/stdtime/tzfile.h
      - copied unchanged from r41023, trunk/main/stdtime/tzfile.h
    team/group/res_config_ldap/main/strcompat.c
      - copied unchanged from r41023, trunk/main/strcompat.c
    team/group/res_config_ldap/main/tdd.c
      - copied unchanged from r41023, trunk/main/tdd.c
    team/group/res_config_ldap/main/term.c
      - copied unchanged from r41023, trunk/main/term.c
    team/group/res_config_ldap/main/translate.c
      - copied unchanged from r41023, trunk/main/translate.c
    team/group/res_config_ldap/main/udptl.c
      - copied unchanged from r41023, trunk/main/udptl.c
    team/group/res_config_ldap/main/ulaw.c
      - copied unchanged from r41023, trunk/main/ulaw.c
    team/group/res_config_ldap/main/utils.c
      - copied unchanged from r41023, trunk/main/utils.c
    team/group/res_config_ldap/utils/muted.c
      - copied unchanged from r41023, trunk/utils/muted.c
Removed:
    team/group/res_config_ldap/abstract_jb.c
    team/group/res_config_ldap/acl.c
    team/group/res_config_ldap/aescrypt.c
    team/group/res_config_ldap/aeskey.c
    team/group/res_config_ldap/aesopt.h
    team/group/res_config_ldap/aestab.c
    team/group/res_config_ldap/alaw.c
    team/group/res_config_ldap/app.c
    team/group/res_config_ldap/ast_expr2.c
    team/group/res_config_ldap/ast_expr2.fl
    team/group/res_config_ldap/ast_expr2.h
    team/group/res_config_ldap/ast_expr2.y
    team/group/res_config_ldap/ast_expr2f.c
    team/group/res_config_ldap/asterisk.8
    team/group/res_config_ldap/asterisk.c
    team/group/res_config_ldap/asterisk.sgml
    team/group/res_config_ldap/astmm.c
    team/group/res_config_ldap/autoservice.c
    team/group/res_config_ldap/buildinfo.c
    team/group/res_config_ldap/callerid.c
    team/group/res_config_ldap/cdr.c
    team/group/res_config_ldap/channel.c
    team/group/res_config_ldap/chanvars.c
    team/group/res_config_ldap/cli.c
    team/group/res_config_ldap/coef_in.h
    team/group/res_config_ldap/coef_out.h
    team/group/res_config_ldap/config.c
    team/group/res_config_ldap/cryptostub.c
    team/group/res_config_ldap/cygwin/
    team/group/res_config_ldap/db.c
    team/group/res_config_ldap/db1-ast/
    team/group/res_config_ldap/devicestate.c
    team/group/res_config_ldap/dlfcn.c
    team/group/res_config_ldap/dns.c
    team/group/res_config_ldap/dnsmgr.c
    team/group/res_config_ldap/dsp.c
    team/group/res_config_ldap/ecdisa.h
    team/group/res_config_ldap/editline/
    team/group/res_config_ldap/enum.c
    team/group/res_config_ldap/file.c
    team/group/res_config_ldap/fixedjitterbuf.c
    team/group/res_config_ldap/fixedjitterbuf.h
    team/group/res_config_ldap/frame.c
    team/group/res_config_ldap/fskmodem.c
    team/group/res_config_ldap/http.c
    team/group/res_config_ldap/image.c
    team/group/res_config_ldap/indications.c
    team/group/res_config_ldap/io.c
    team/group/res_config_ldap/jitterbuf.c
    team/group/res_config_ldap/jitterbuf.h
    team/group/res_config_ldap/loader.c
    team/group/res_config_ldap/logger.c
    team/group/res_config_ldap/manager.c
    team/group/res_config_ldap/md5.c
    team/group/res_config_ldap/muted.c
    team/group/res_config_ldap/netsock.c
    team/group/res_config_ldap/pbx.c
    team/group/res_config_ldap/plc.c
    team/group/res_config_ldap/poll.c
    team/group/res_config_ldap/privacy.c
    team/group/res_config_ldap/rtp.c
    team/group/res_config_ldap/say.c
    team/group/res_config_ldap/sched.c
    team/group/res_config_ldap/sha1.c
    team/group/res_config_ldap/slinfactory.c
    team/group/res_config_ldap/sounds.txt
    team/group/res_config_ldap/srv.c
    team/group/res_config_ldap/stdtime/
    team/group/res_config_ldap/strcompat.c
    team/group/res_config_ldap/tdd.c
    team/group/res_config_ldap/term.c
    team/group/res_config_ldap/translate.c
    team/group/res_config_ldap/udptl.c
    team/group/res_config_ldap/ulaw.c
    team/group/res_config_ldap/utils.c
Modified:
    team/group/res_config_ldap/   (props changed)
    team/group/res_config_ldap/.cleancount
    team/group/res_config_ldap/Makefile
    team/group/res_config_ldap/Makefile.moddir_rules
    team/group/res_config_ldap/Makefile.rules
    team/group/res_config_ldap/UPGRADE.txt
    team/group/res_config_ldap/acinclude.m4
    team/group/res_config_ldap/agi/Makefile
    team/group/res_config_ldap/apps/   (props changed)
    team/group/res_config_ldap/apps/Makefile
    team/group/res_config_ldap/apps/app_adsiprog.c

[... 22824 lines stripped ...]


More information about the svn-commits mailing list