Commit Graph

527 Commits

Author SHA1 Message Date
Anthony Minessale 322ecbbb9b tweak to jingle
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3624 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-12-12 17:44:59 +00:00
Michael Jerris 343a0c776c remove generated file from tree.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3607 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-12-12 02:36:02 +00:00
Anthony Minessale 2986cee258 sigh
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3513 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-12-02 02:13:15 +00:00
Michael Jerris c8b129df56 initial stubs for odbc and libetpan modules for spidermonkey. These do not do anything yet.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3507 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-12-01 17:59:58 +00:00
Michael Jerris 92bd5358d0 fix mod_enum on windows, fix logic error in free function causing operations on freed memory
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3503 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-12-01 06:12:07 +00:00
Michael Jerris fadc1ccebe win32 build for mod_enum/libudns. Please note, this builds but still DOES NOT work on windows.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3499 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-11-30 23:33:37 +00:00
Michael Jerris 693c80fb01 update to sofia release 1.12.4, many fixes including fix for assert(sip) on response to invite after an outbound register
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3497 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-11-30 22:56:56 +00:00
Anthony Minessale 067014633e add file
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3496 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-11-30 22:10:07 +00:00
Anthony Minessale 60434decf5 ENUM Support
mod_enum can be used as a dialplan app, an api call from the console or as a dialplan interface.


Dialplan Interface:
put enum as the dialplan parameter in an endpoint module
i.e. instead of "XML" set it to "enum" or "enum,XML" for fall through.

Dialplan App:
This example will do a lookup and set the a variable that is the proper
dialstring to call all of the possible routes in order of preference according to 
the lookup and the order of the routes in the enum.conf section.

<extension name="tollfree">
  <condition field="destination_number" expression="^(18(0{2}|8{2}|7{2}|6{2})\d{7})$">
    <action application="enum" data="$1"/>
    <action application="bridge" data="${enum_auto_route}"/>
  </condition>
</extension>

You can also pick an alrernate root:
<action application="enum" data="$1 myroot.org"/>	


API command:
at the console you can say:
enum <number> [<root>]

The root always defaults to the one in the enum.conf section.




git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3494 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-11-30 21:28:32 +00:00
Anthony Minessale 90ddec83d9 tweak
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3493 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-11-30 15:27:37 +00:00
Michael Jerris 6b5a464f2b fix spidermonkey build on FreeBSD (patch from Matt Klein)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3484 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-11-29 14:43:41 +00:00
Michael Jerris 44649c70b4 Add magic comments for emacs and vi in source and header files to properly format and display tabs vs. spaces in those editors:
/* For Emacs:
 * Local Variables:
 * mode:c
 * indent-tabs-mode:nil
 * tab-width:4
 * c-basic-offset:4
 * End:
 * For VIM:
 * vim:set softtabstop=4 shiftwidth=4 tabstop=4 expandtab:
 */


git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3462 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-11-27 22:30:48 +00:00
Michael Jerris cb24948735 update to new sofia snapshot. Fixes a memory leak on invite, a timer bug, and several other issues as follows:
Thu Nov 16 07:23:30 Eastern Standard Time 2006  Pekka.Pessi@nokia.com
  * nta.c: setting the local sequence number of nta_leg_t only when first reques
t is sent.

  Application can now set the initial value of CSeq either in nta_leg_create()
  or in nta_outgoing_*create() (or nta_msg_request_complete()).

  * nua_session.c: fixed session timer negotiation when UAS does refreshing with
 INVITEs

  The session-expires header had "uac" even when uac did not support timer.
  The UAS failed to send re-INVITEs.

  Thanks for Chung Pak Lai for reporting this problem.

  * bnf: added host_cmp().

  * outbound.c: using host_cmp() to check if Via host and received parameter dif
fer

  Bug reported by Marc Blanchet.

  * nua_session.c: fixed leak in incomin INVITE processing.

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3425 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-11-20 21:54:19 +00:00
Michael Jerris fc03e90da4 silence silly warning on msvc.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3413 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-11-19 01:21:44 +00:00
Anthony Minessale d7baa16132 Ringback (sponsored by Front Logic)
This addition lets you set artifical ringback on a channel
that is waiting for an originated call to be answered.

the syntax is 

<action application="set" data="ringback=[data]"/>

where data is either the full path to an audio file
or a teletone generation script..


syntax of teletone scripts

LEGEND:

0-9,a-d,*,# (standard dtmf tones)

variables: c,r,d,v,>,<,+,w,l,L,%

c (channels)        - Sets the number of channels.
r (rate)            - Sets the sample rate.
d (duration)        - Sets the default tone duration.
v (volume)          - Sets the default volume.
> (decrease vol)    - factor to decrease volume by per frame (0 for even decrease across duration).
< (increase vol)    - factor to increase volume by per frame (0 for even increase across duration).
+ (step)            - factor to step by used by < and >.
w (wait)            - default silence after each tone.
l (loops)           - number of times to repeat each tone in the script.
L (LOOPS)           - number of times to repeat the the whole script.
% (manual tone)     - a generic tone specified by a duration, a wait and a list of frequencies.

standard tones can have custom duration per use with the () modifier
7(1000, 500) to generate DTMF 7 for 1 second then pause .5 seconds

EXAMPLES

UK Ring Tone [400+450 hz on for 400ms off for 200ms then 400+450 hz on for 400ms off for 2200ms]
%(400,200,400,450);%(400,2200,400,450)

US Ring Tone [440+480 hz on for 2000ms off for 4000ms]
%(2000,4000,440,480)

ATT BONG [volume level 4000, even decay, step by 2, # key for 60ms with no wait, volume level 2000, 350+440hz {us dialtone} for 940ms
v=4000;>=0;+=2;#(60,0);v=2000;%(940,0,350,440)

SIT Tone 913.8 hz for 274 ms with no wait, 1370.6 hz for 274 ms with no wait, 1776.7 hz for 380ms with no wait
%(274,0,913.8);%(274,0,1370.6);%(380,0,1776.7)

ATTN TONE (phone's off the hook!) 1400+2060+2450+2600 hz for 100ms with 100ms wait
%(100,100,1400,2060,2450,2600)



git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3408 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-11-19 01:05:06 +00:00
Michael Jerris 0984933c36 fix spidermonkey release build.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3406 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-11-18 17:09:25 +00:00
Michael Jerris 2ce49f8f0b silence silly warning
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3404 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-11-18 16:39:45 +00:00
Michael Jerris 0d0114c8a5 fix portaudio build on ppc, thanks puzzled on irc.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3392 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-11-16 23:09:36 +00:00
Anthony Minessale ff4d2b3dcc pesky interop
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3387 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-11-16 19:28:05 +00:00
Anthony Minessale 9415cdcacb update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3385 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-11-16 16:10:39 +00:00
Anthony Minessale 594ccf8bb8 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3384 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-11-16 15:50:17 +00:00
Anthony Minessale 394a188b7e update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3381 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-11-15 20:21:46 +00:00
Anthony Minessale 6013035a6c update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3380 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-11-15 20:21:29 +00:00
Anthony Minessale 1fc5fd0e14 inherited 64bit bug curses to unsigned long
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3374 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-11-15 00:15:38 +00:00
Michael Jerris 54e68cfee6 fix path of header files.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3372 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-11-14 19:52:24 +00:00
Michael Jerris 73304d0ca8 move to sofia snapshot 1.12.3.10. This adds nua_i_mehtod support to allow receipt of non-standard methods as well as a number of other bugfixes.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3346 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-11-13 19:13:56 +00:00
Michael Jerris 2450b0e624 teletone dll needs to built to the dest dir, not to the intermediate dir.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3304 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-11-10 16:02:31 +00:00
Anthony Minessale 3c20f80991 dox
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3292 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-11-09 06:55:18 +00:00
Anthony Minessale 1167541063 build stuff
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3287 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-11-09 05:31:29 +00:00
Michael Jerris 1e4ad3c5ae Update to newest sofia snapshot. This includes many fixes mostly for sdp negotiation.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3244 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-10-31 20:48:16 +00:00
Michael Jerris 7a36a5d969 Update to new sofia tarball to tweak sdp behavior to use the correct c line on re-invite.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3241 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-10-31 05:43:53 +00:00
Anthony Minessale 082a5a03c0 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3226 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-10-29 15:36:23 +00:00
Michael Jerris 18f51bee7b update to new sofia snapshot. This fixes several race conditions, ref count problems, and double frees that were happening in the sofia library and fixes segfaults under heavy load and a segfault on cancel when using 100rel while awaiting a prack. Sofia should be much more stable now, please beat it up and let us know.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3220 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-10-27 23:20:10 +00:00
Anthony Minessale b22e11c36a update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3206 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-10-25 20:05:16 +00:00
Michael Jerris f1cfceb9d4 bad opt, wrong directory.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3201 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-10-25 17:04:00 +00:00
Anthony Minessale 305bc19458 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3199 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-10-25 17:00:23 +00:00
Anthony Minessale 521e3b0a55 figure out when we are on hold
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3185 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-10-24 21:31:39 +00:00
Anthony Minessale e22015c799 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3182 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-10-24 18:51:33 +00:00
Anthony Minessale 10ead46ffd update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3181 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-10-24 18:50:52 +00:00
Anthony Minessale 04546b6b93 fix sillyness
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3171 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-10-24 01:29:04 +00:00
Michael Jerris 39df1481c2 move to new sofia tarball for windows build, this new tarball includes fix for build w/o glib on *nix, fix for segfault on cancel during early media, and proper implementation of handing subscribe and publish requests up to the application (removes our private hacks to enable this behavior).
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3167 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-10-23 20:39:48 +00:00
Anthony Minessale aba9c77c35 your run-of-the mill nightmarish attempt at normalizing not one crazy protocol but many....
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3151 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-10-22 04:37:19 +00:00
Michael Jerris 796ed1813e tweak warning level up.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3131 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-10-21 01:32:11 +00:00
Anthony Minessale 4770a54d37 strip html till we figure it out
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3129 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-10-21 00:59:51 +00:00
Anthony Minessale 003f33e409 *WARNING* delete /usr/local/freeswitch/db/* cos the schema has changed
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3121 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-10-20 07:35:55 +00:00
Anthony Minessale 26fa772094 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3120 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-10-20 07:34:08 +00:00
Anthony Minessale 747ab41f78 bs
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3118 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-10-20 06:44:58 +00:00
Anthony Minessale 3a32d9e53c Presence and Chat Gateway Code
This is some brand new stuff to gateway chat/presence/audio from one protocol to another
So far it only works between google/jingle and SIP

All I had to test the SIP end was X-Lite and Eyebeam and GoogleTalk on the jingle end.

With this setup registered X-Lite's can chat with each other and call each other 
as well as X-Lite to GoogleTalk and GoogleTalk to X-Lite audio calls.

Chat May also be done between X-Lite and jabber 

You'll also need a jabber server configured for component login so you can interface.
We have only tested with jabberd2 so far.

Configure DNS so srv records for jabber for your subdomain (fs.mydomain.com in the example)
so the jabber records are pointed at your jabber server.

RELEVANT CONFIGS

<!-- Brian has no jingle support so send calls to him over to his iax url -->
<extension name="bkw">
  <condition field="destination_number" expression="^jingle\+brian@agents.cylynx.com$">
    <action application="bridge" data="iax/guest@brianwest.homeunix.org/9184290404"/>
  </condition>
</extension>

<!-- Assumption is made here that both sip and jingle have the same profile/domain name as documented below -->

<extension name="jingle2sip">
  <condition field="source" expression="mod_dingaling"/>
  <condition field="destination_number" expression="^sip\+([^\@]+)\@(.*)$">
    <action application="bridge" data="sofia/$2/$1%$2"/>
  </condition>
</extension>

<extension name="sip2jingle">
  <condition field="source" expression="mod_sofia"/>
  <condition field="destination_number" expression="^jingle\+([^\@]+)\@(.*)$">
    <action application="bridge" data="dingaling/sip+${sip_fromuser}@${sip_fromhost}/$1@$2"/>
  </condition>
</extension>


<configuration name="sofia.conf" description="sofia Endpoint">
  <global_settings>
    <param name="log-level" value="0"/>
  </global_settings>

  <profiles>
    <profile name="fs.mydomain.com">
      <registrations/>
      <settings>
	<param name="debug" value="1"/>
	<param name="rfc2833-pt" value="101"/>
	<param name="sip-port" value="5060"/>
	<param name="dialplan" value="XML"/>
	<param name="dtmf-duration" value="100"/>
	<param name="codec-prefs" value="PCMU"/>
	<param name="codec-ms" value="20"/>
	<param name="accept-blind-reg" value="true"/>
	<param name="manage-presence" value="true"/>
	<!--<param name="full-id-in-dialplan" value="true"/>-->
	<!--<param name="auth-calls" value="true"/>-->
	<!--<param name="auth-all-packets" value="true"/>-->
	<param name="use-rtp-timer" value="true"/>
	<param name="rtp-timer-name" value="soft"/>
	<param name="rtp-ip" value="100.200.100.200"/>
	<param name="sip-ip" value="fs.mydomain.com"/>
      </settings>
    </profile>
  </profiles>

</configuration>


<configuration name="dingaling.conf" description="XMPP Jingle Endpoint">
  <settings>
    <param name="debug" value="0"/>
    <param name="codec-prefs" value="PCMU"/>
  </settings>

  <profile type="component">
    <param name="name" value="fs.mydomain.com"/>
    <param name="password" value="secret"/>
    <param name="dialplan" value="XML"/>
    <param name="rtp-ip" value="208.64.200.42"/>
    <param name="server" value="jabber.freeswitch.org:5347"/>
    <!-- disable to trade async for more calls -->
    <param name="use-rtp-timer" value="true"/>
    <param name="exten" value="_auto_"/>
    <!--<param name="vad" value="both"/>-->
  </profile>

</configuration>



git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3115 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-10-20 06:17:00 +00:00
Anthony Minessale 12243c194e tidy up, note yesterday's propagate_vars was changed to export_vars
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3106 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-10-19 16:33:54 +00:00
Michael Jerris f33768085a tweak up another warning level.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3105 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-10-19 16:10:46 +00:00
Michael Jerris e415095df3 up the msvc warning level on srtp
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3099 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-10-19 06:29:49 +00:00
Michael Jerris faf7cd383b add new sha1 code on windows build.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3089 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-10-19 01:21:43 +00:00
Michael Jerris f64ae18ac6 add endian defines on MSVC
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3088 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-10-19 01:21:17 +00:00
Anthony Minessale dba1b9b7a1 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3085 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-10-19 00:17:47 +00:00
Anthony Minessale 70bfba5b63 Christmas Presence
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3083 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-10-18 22:57:35 +00:00
Michael Jerris 61e118db18 some proper casts after bit shifts to force to the right data type.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3081 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-10-18 21:09:35 +00:00
Michael Jerris 4acbf41663 fix target on release dll build.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3080 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-10-18 19:22:23 +00:00
Michael Jerris 5148aa2da6 up the warning level.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3072 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-10-17 21:56:45 +00:00
Michael Jerris 3b47c3e85c raise warning levels.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3069 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-10-17 03:45:51 +00:00
Michael Jerris 4c795c3d1c update to new tarball for sofia
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3054 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-10-15 05:21:40 +00:00
Anthony Minessale ba46200539 refactoring and general improvement (do a make sure)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3035 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-10-12 00:59:09 +00:00
Michael Jerris 21bb1bd2b0 update to new sofia tarball.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3014 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-10-09 20:13:12 +00:00
Michael Jerris b9a350a40d update windows build to new sofia tarball
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2995 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-10-07 20:09:46 +00:00
Michael Jerris 9624ef3f3d fix debug build for sofia on windows, use dll version of pthread win32 so it can do the cleanup properly.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2988 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-10-06 13:13:28 +00:00
Michael Jerris 4e9be89ad6 update windows sofia build to latest release.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2972 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-10-05 03:11:09 +00:00
Michael Jerris 9dc167a83c make attempting to reapply patches just fail and not prompt the user
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2967 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-10-04 00:27:59 +00:00
Michael Jerris 64a3ef3c91 resolve unused function warning, this probably works better as a macro anyhow.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2964 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-10-03 12:38:12 +00:00
Anthony Minessale 965f8b50d5 finish solaris porting for srtp. This should work now, but still needs some more work
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2957 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-10-02 20:49:26 +00:00
Michael Jerris c4b5df5315 solairs port, add new files, still WIP.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2955 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-10-02 19:13:49 +00:00
Anthony Minessale 804aaa5097 update autotools for libspeakup
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2954 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-10-02 18:22:56 +00:00
Michael Jerris 4a871ba503 remove sum unnecessary files, add a missing one
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2953 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-10-02 18:21:02 +00:00
Michael Jerris 8747f15aee add some macros in preparation for solaris port of srtp
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2951 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-10-02 17:03:36 +00:00
Michael Jerris 791c051246 make spidermonkey build on OpenBSD
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2943 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-10-02 06:27:29 +00:00
Michael Jerris ebd092f2a8 spidermonkey builds successfully on freebsd now.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2938 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-10-02 04:06:27 +00:00
Michael Jerris f403d3415e force -lpthread on freebsd
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2937 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-10-02 03:36:26 +00:00
Michael Jerris 5a315d74bf create makefile for netbsd.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2933 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-10-02 02:47:39 +00:00
Michael Jerris 356730ab97 add tgmath.h checks.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2932 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-10-02 01:53:37 +00:00
Anthony Minessale 8001cd5802 add check for tgmath.h
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2931 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-10-02 01:49:41 +00:00
Michael Jerris 0bea969515 tweak to run in pieces
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2930 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-10-02 01:27:06 +00:00
Michael Jerris c61584b6e5 fix sqlite build on netbsd
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2929 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-10-02 00:53:48 +00:00
Michael Jerris 7807b1f443 I'll get this right by the 10th time.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2928 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-10-02 00:15:18 +00:00
Michael Jerris 0e03f2e7d2 64 bit on bsd
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2927 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-10-02 00:01:00 +00:00
Michael Jerris e0cd293e83 typo
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2926 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-10-01 23:58:05 +00:00
Michael Jerris 4d230d08e7 fix portaudio build on OpenBSD take 5
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2925 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-10-01 23:56:21 +00:00
Michael Jerris aab161e9cd fix portaudio build on OpenBSD take 4
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2924 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-10-01 23:42:16 +00:00
Justin Cassidy e306d23a78 add makefile for openbsd
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2923 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-10-01 23:12:50 +00:00
Michael Jerris 3d13f15163 fix portaudio build on OpenBSD take 3
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2922 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-10-01 22:50:31 +00:00
Michael Jerris 43332a09c2 fix portaudio build on OpenBSD take 2
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2921 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-10-01 22:39:50 +00:00
Michael Jerris b42509957f fix portaudio build on OpenBSD
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2920 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-10-01 22:36:44 +00:00
Michael Jerris 76dba3a39e header tweak for netbsd
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2919 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-10-01 22:15:44 +00:00
Michael Jerris df6f6f2f2b iax tweak for netbsd
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2918 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-10-01 21:55:52 +00:00
Michael Jerris d1ab8a446f type tweak
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2917 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-10-01 21:44:49 +00:00
Anthony Minessale 9d91ece984 fix spidermonkey freebsd build take 2, try this
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2914 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-10-01 16:26:20 +00:00
Anthony Minessale 491e23f56f fix spidermonkey freebsd build. Thanks vile for the patch
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2913 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-10-01 16:06:16 +00:00
Michael Jerris b56f0a0e2f fix portaudio build on FreeBSD
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2910 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-10-01 03:54:50 +00:00
Michael Jerris 0fcde9649c remove exosip from windows build.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2904 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-09-30 23:37:58 +00:00
Anthony Minessale 35504516b3 remove hardcoded make name
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2895 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-09-30 07:33:44 +00:00
Anthony Minessale 5a9d2acf54 remove hardcoded make name
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2892 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-09-30 06:38:42 +00:00
Michael Jerris 28de3a859b use in tree libresample on windows build.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2891 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-09-30 06:14:18 +00:00
Michael Jerris f4ec0d618e update to pcre 6.7 for windows build.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2890 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-09-30 06:11:27 +00:00
Anthony Minessale 47d6b6b011 solaris porting
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2884 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-09-30 03:03:44 +00:00
Michael Jerris 64a62d5232 solaris\sun studio porting
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2883 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-09-30 02:48:07 +00:00
Anthony Minessale 4fce555f74 more solaris porting
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2882 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-09-30 02:46:27 +00:00
Anthony Minessale d687aef4b6 add .so version number
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2881 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-09-30 02:42:06 +00:00
Michael Jerris 32fce49ba3 solaris\sun studio porting
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2880 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-09-30 02:40:39 +00:00
Anthony Minessale 82d7918546 solaris port of libteletone. part 2/2
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2873 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-09-29 21:28:23 +00:00
Michael Jerris 561009aed3 solaris port of libteletone. part 1/2
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2872 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-09-29 20:24:54 +00:00
Anthony Minessale e7b2126bea remove static make name from script
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2865 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-09-29 06:02:37 +00:00
Anthony Minessale 4368a2cbd5 remove static make name from makefile
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2864 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-09-29 05:39:07 +00:00
Michael Jerris ea3eab9cfd Update sofia build to 1.12.2 on windows.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2858 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-09-28 20:03:23 +00:00
Michael Jerris f567ba48b6 fix build error on windows on multiproc boxes.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2857 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-09-28 17:45:45 +00:00
Michael Jerris d5ac9cba0c add quoting for source dir with spaces.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2852 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-09-28 01:19:39 +00:00
Michael Jerris b474fafc5e Merged revision 2827-2828 from freeswitch/branches/tholo. Thanks tholo:
2827: Embed installed name of shared library on Mac OS X -- otherwise code that is linked against it will not find it later on as the relative path during build gets embedded.

2828: Make it build using Xcode on Mac OS X again


git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2830 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-09-25 14:57:44 +00:00
Michael Jerris 50571597c5 Do not force use of "gmake" -- but propagate whichever command was used to start the top-level make. This way users on e.g.
Mac OS X won't have to create a special symlink to build, but can instead just use the command "gnumake" (as opposed to "make" og "gmake")

Merged from tholo's branch http://svn.freeswitch.org/svn/freeswitch/branches/tholo rev 2796, thanks tholo.

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2815 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-09-23 23:27:44 +00:00
Michael Jerris fbda5f4b60 change pthread to build and link static
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2731 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-09-18 03:05:48 +00:00
Anthony Minessale b3c437630f use steve's g711 (thanks steve), chage the conditional mutex based on paul T's input (thanks paul) and take the yield away on switch_yield and just sleep
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2663 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-09-12 17:17:02 +00:00
Anthony Minessale acc81d7b55 iax
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2644 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-09-11 22:52:19 +00:00
Michael Jerris 6d21b6400f sofia windows build. This should work now, please test.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2641 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-09-11 17:01:15 +00:00
Michael Jerris 8d63c12387 make mod_sofia be able to build on the windows build system. I am sure this won't actually run yet, there are still bits to do in the build system.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2635 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-09-11 07:19:22 +00:00
Michael Jerris 4960fbc73f add quoting to pre build events for directories with spaces in their paths
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2582 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-09-08 18:20:06 +00:00
Anthony Minessale 52956d5cb1 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2554 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-09-07 15:08:40 +00:00
Michael Jerris b40695d30e more g7xx lib tweaks
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2515 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-09-05 18:27:19 +00:00
Anthony Minessale 308bbf236f git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2514 d0543943-73ff-0310-b7d9-9358b9ac24b2 2006-09-05 18:10:21 +00:00
Anthony Minessale cab31d8914 ok mike here ya go
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2513 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-09-05 18:08:46 +00:00
Anthony Minessale 37c9bd44fe cleanup
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2512 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-09-05 18:06:17 +00:00
Michael Jerris 344c37a2aa new codec lib msvc build.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2511 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-09-05 17:40:05 +00:00
Brian West fa060db892 Adding new bits for g722, g711 and g726 from Steve Underwood. Thanks Steve! I libtooled them into libg7xx
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2504 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-09-05 01:36:05 +00:00
Michael Jerris 9b86e69fae turn off edit and continue...
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2490 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-09-03 14:30:42 +00:00
Brian West b0f0c6e9e0 clean up
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2473 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-08-31 19:39:57 +00:00
Anthony Minessale 2565f310cf git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2457 d0543943-73ff-0310-b7d9-9358b9ac24b2 2006-08-30 19:20:44 +00:00
Anthony Minessale 63ebcc5379 woops, don't need these
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2456 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-08-30 19:20:18 +00:00
Anthony Minessale 13522cdbe2 libtoolize this for possible use
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2455 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-08-30 19:18:41 +00:00
Anthony Minessale 6d4e3e4cd0 commit automake update for the lib
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2436 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-08-29 23:00:08 +00:00
Brian West 340f7b2b6b Added g711 to libg72x
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2435 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-08-29 22:58:49 +00:00
Michael Jerris bdc6b78103 add windows build for g726. Not done yet.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2433 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-08-29 21:28:52 +00:00
Michael Jerris 036002d885 use different bat file names so multi proc systems can download more than one lib at a time without failing.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2414 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-08-28 02:01:41 +00:00
Michael Jerris 97a1363c50 cleanup msvc build targets and remove incremental build settings from libs.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2413 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-08-28 01:35:49 +00:00
Michael Jerris 92693418d4 move creation of the version header file to use util.vbs
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2410 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-08-27 20:37:01 +00:00
Michael Jerris af7af5f07f quote directory names for directories with spaces in their names.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2409 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-08-27 20:08:04 +00:00
Michael Jerris 4388f0c2b4 make downloads work without adodb.stream in case it fails. Thanks to Dave Horner for the inspiration on this.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2405 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-08-27 04:21:27 +00:00
Michael Jerris dc5cd4e942 Let msvc decide if it needs to re-run the download projects based upon the presence of the downloaded directory. This now works properly for these targets when it will scroll pass the target as "up-to-date" instead of running it and doing nothing. This should speed up the build process a bit.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2371 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-08-23 16:26:50 +00:00
Michael Jerris b2392afa2f add ldl_session_accept_candidate and ldl_session_send_msg to the def file.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2366 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-08-22 21:32:23 +00:00
Michael Jerris ccc83cbccb Let msvc decide if it needs to re-run the download projects based upon the presence of the downloaded directory. This now works properly for these targets when it will scroll pass the target as "up-to-date" instead of running it and doing nothing. This should speed up the build process a bit.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2363 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-08-22 20:31:53 +00:00
Michael Jerris 8aee1b33b5 Let msvc decide if it needs to re-run the download projects based upon the presence of the downloaded directory. This now works properly for these targets when it will scroll pass the target as "up-to-date" instead of running it and doing nothing. This should speed up the build process a bit.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2359 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-08-22 16:30:35 +00:00
Anthony Minessale 780edcd09d optimizations
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2354 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-08-22 00:56:27 +00:00
Michael Jerris 14d79cf500 Windows build tweaks.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2352 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-08-21 22:48:01 +00:00
Anthony Minessale 4f17ab7714 bunch of tweaks to make ivr more fun
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2350 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-08-21 19:14:51 +00:00
Michael Jerris 7fe0d89388 Fix for http://trac.freeswitch.org/ticket/6 . Thanks alek
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2343 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-08-20 08:31:02 +00:00
Anthony Minessale 89e62d8c56 google part 1000
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2330 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-08-18 21:02:40 +00:00
Anthony Minessale 6ccb60c25c last round of google cleanup rebuild libdingaling
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2327 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-08-18 18:44:11 +00:00
Michael Jerris 1003a4d404 Cleanups from update to new build system for windows.
More to come.


git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2325 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-08-18 07:22:18 +00:00
Anthony Minessale 47192db741 Upgrade Dingaling to meet new googletalk spec upgrade your client if you have issues.
codecs need more work...

Expose events into javascript so you can create and fire events and 
and pick up chat events with chat-enabled clients like googletalk
EXAMPLE:

session.answer();

e = new Event("custom", "JS::Custom");
e.addHeader("subject", "cool");
e.addBody("hello this is a test");
e.fire;

while(session.ready()) {
    session.execute("sleep", "1000");
    event = session.getEvent();
    if (event) {
      str = event.serialize(); // or ("xml")
      console_log("debug", "Dump Event:\n" + str + "\n");


        e = new Event("custom", "JS::Chat");
        e.addHeader("works", "yes");
        e.addBody("you said: " + event.getBody());
        session.sendEvent(e);
      event.destroy();
    }
}





git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2323 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-08-18 01:28:50 +00:00
Michael Jerris ae380d58ec Update to new build system for windows.
This fixes several issues when debugging code in the ide, and does better dependency tracking.

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2317 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-08-17 19:58:55 +00:00
Michael Jerris a90b88d201 revert static runtime change for msvc. Bad idea...
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2290 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-08-14 17:44:38 +00:00
Michael Jerris fea5980a12 Change windows build to use static runtime to make it more easily portable to older windows, and to decrease startup time on windows.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2289 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-08-14 16:11:08 +00:00
Michael Jerris d066dca08e fix signedness issue and strlen to uint32_t cast
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2280 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-08-13 05:09:29 +00:00
Anthony Minessale 45f49eccbe update roster nonsense
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2272 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-08-12 17:09:11 +00:00
Michael Jerris 88dbc8c056 Make iax work with plaintext passwords too. Thanks to Michael Workman for the patch.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2258 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-08-11 16:24:06 +00:00
Anthony Minessale 040dc25141 autoheadache
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2252 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-08-11 00:39:35 +00:00
Anthony Minessale 07a7b6e54a update dingaling to be able to use TLS jabber servers such as googletalk
see sample config for new options.

the dingaling library has changed so you must rebuild it 
rm libs/libdingaling/.complete
make installall



git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2251 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-08-11 00:24:38 +00:00
Brian West 754b273f56 Not used yet.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2095 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-07-25 04:24:11 +00:00
Anthony Minessale 7a5bc3b711 autoconf crap
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2043 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-07-22 01:02:36 +00:00
Anthony Minessale 75d61d12b1 make portaudio autobuild on 64bit right
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2010 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-07-20 03:54:34 +00:00
Anthony Minessale 7712c6637c messaging stuff
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1902 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-07-17 14:12:07 +00:00
Anthony Minessale 988841611a dingaling tweak
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1660 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-06-22 21:57:40 +00:00
Michael Jerris f524d3a397 remove generated file
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1393 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-08 04:04:48 +00:00
Michael Jerris 7bbb4ec19c remove generated files.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1375 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-05 17:58:53 +00:00
Anthony Minessale dfe5b94baf update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1374 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-05 16:52:19 +00:00
Anthony Minessale 2e0da1e8f7 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1372 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-05 16:03:15 +00:00
Anthony Minessale a4b1fdc709 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1357 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-04 20:38:01 +00:00
Anthony Minessale 51241ad37f update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1355 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-04 20:19:23 +00:00
Anthony Minessale febd8b9a27 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1353 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-04 18:34:34 +00:00
Michael Jerris 3da19e9559 add new jb files for testing
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1352 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-04 18:19:53 +00:00
Michael Jerris 10ae6c32c7 add new functions.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1347 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-04 15:56:00 +00:00
Anthony Minessale 83edba5385 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1345 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-04 15:37:06 +00:00
Anthony Minessale 49e7b1bbca update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1344 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-04 14:37:11 +00:00
Anthony Minessale ccbf0b5544 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1334 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-03 23:54:30 +00:00
Anthony Minessale c7e5e47ab6 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1332 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-03 20:08:38 +00:00
Anthony Minessale 00219ede9d update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1331 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-03 19:02:33 +00:00
Anthony Minessale 3252e6ef68 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1330 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-03 18:43:57 +00:00
Anthony Minessale 5ad8162dbf update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1329 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-03 18:41:14 +00:00
Anthony Minessale 397bf1bffc change dingaling to break everybody
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1318 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-02 16:43:13 +00:00
Michael Jerris 1349bbff39 add function from rev 1312 ldl_handle_send_msg to def file
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1314 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-01 19:47:07 +00:00
Anthony Minessale 607109bfaa update to dingaling (rm ./libs/libdingaling/.complete
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1312 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-05-01 18:55:04 +00:00
Michael Jerris f562b523fb remove gcc specific non c99 compliant optimization.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1257 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-26 15:39:05 +00:00
Michael Jerris c0ac721693 jitteruffer build tweak.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1179 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-17 20:21:22 +00:00
Anthony Minessale 57d9170c9c add jb
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1178 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-17 20:05:46 +00:00
Michael Jerris fd7bf0eaaa update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1171 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-15 22:30:25 +00:00
Anthony Minessale 5d47cffc28 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1162 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-15 05:00:51 +00:00
Anthony Minessale 0e0e1e3673 make dingaling need talk in the resource to clear up collisions
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1159 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-14 18:10:24 +00:00
Michael Jerris f6dba5de97 add new function ldl_global_set_logger
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1154 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-14 14:13:28 +00:00
Michael Jerris d6d313884e update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1148 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-14 03:04:53 +00:00
Anthony Minessale cb28473398 add logger
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1147 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-14 02:05:29 +00:00
Michael Jerris 429cdca58f fix iax win32 build for inet_aton
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1136 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-13 03:58:01 +00:00
Michael Jerris ecc2a3baa1 let iax bind to specific ip (rm libs/iax/.complete next time you build)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1134 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-13 01:05:47 +00:00
Michael Jerris d91f8ef358 fix all the bugs introduced by recent chainsaw massacre
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1132 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-12 20:48:47 +00:00
Brian West 559b8ab26c Gut Logger and put it back modular style
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1117 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-11 21:13:44 +00:00
Brian West 255afc7c25 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1110 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-10 21:36:06 +00:00
Brian West 786bf4d1cb update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1101 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-10 15:37:20 +00:00
Michael Jerris 7d43b0c01f cleanup files that don't belong in tree
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1091 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-07 18:45:54 +00:00
Brian West 78e37908bc Add optional packetization and VAD buster options to RTP
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1090 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-07 17:32:14 +00:00
Anthony Minessale 809dfc8488 add in tree srtp to build system
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1089 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-07 16:39:49 +00:00
Michael Jerris 2532569aaa add missing files for srtp on msvc
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1088 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-07 16:35:12 +00:00
Michael Jerris abda472017 srtp msvc updates and cleanup
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1087 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-07 16:34:02 +00:00
Anthony Minessale b3d890ef25 add srtp
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1086 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-07 16:10:03 +00:00
Anthony Minessale 46febe98bc add missing byte to dingaling
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1072 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-06 23:31:01 +00:00
Michael Jerris 0fe4db12d0 move stun to the core
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1038 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-04 16:50:35 +00:00
Anthony Minessale 4fa64dd6d2 a stunning new change
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1036 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-04 16:07:40 +00:00
Michael Jerris 13c4c60260 remove jrtp (we can always pull it out of the archives)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1035 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-04 15:44:45 +00:00
Anthony Minessale 3cf68432c1 more build stuff
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1024 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-04 00:27:32 +00:00
Michael Jerris 1e37c413ff add new function to def
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1003 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-04-01 01:37:59 +00:00
Anthony Minessale 703642fbfd update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@999 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-03-31 23:23:10 +00:00
Anthony Minessale 2e02468fa3 update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@997 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-03-31 21:42:36 +00:00
Anthony Minessale a3e7b59de6 Addition of libdingaling and mod_dingaling to enable jingle support
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@995 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-03-31 19:38:09 +00:00
Michael Jerris 0232f398c7 fix sun studio compile issues
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@967 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-03-30 01:35:26 +00:00
Michael Jerris d92ee88a8b dos2unix gsm
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@966 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-03-30 01:34:04 +00:00
Michael Jerris e3d0adb850 fix
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@964 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-03-29 22:16:06 +00:00
Michael Jerris 011a5ccf12 jrtp4c windows tweaks
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@962 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-03-29 19:48:50 +00:00
Anthony Minessale 896c8a1d93 doh
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@961 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-03-29 19:15:44 +00:00
Anthony Minessale fac7b4a64e optimize
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@960 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-03-29 19:11:20 +00:00
Anthony Minessale edaa6870e8 rtp
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@956 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-03-28 20:12:05 +00:00
Anthony Minessale 1fe0f26046 fix jrtp build
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@955 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-03-28 19:33:25 +00:00
Michael Jerris 2f322f615f update to jrtp 3.5.2 and jthread 1.2.0
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@954 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-03-28 15:58:06 +00:00
Michael Jerris ee0dd13ca7 C99 compliance tweaks for sun studio.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@953 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-03-28 15:01:10 +00:00
Michael Jerris 2ac8184a7f revert debugging stuff
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@944 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-03-27 20:23:46 +00:00
Anthony Minessale fd557f4ca3 fix
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@943 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-03-27 20:14:34 +00:00
Michael Jerris bcb9d08d77 tweak to build libresample on FreeBSD 5.4 thanks to xachen.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@924 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-03-25 02:59:28 +00:00
Michael Jerris 07a6d60efb add missing } for extern C
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@915 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-03-24 21:28:46 +00:00
Anthony Minessale c7ab1b5885 64bit tweak
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@888 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-03-21 17:08:54 +00:00
Anthony Minessale 3030915703 nog
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@887 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-03-21 16:26:49 +00:00
Anthony Minessale a688382c3c update
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@880 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-03-20 23:41:21 +00:00
Anthony Minessale dc8a2fdb39 autoheadache
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@869 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-03-17 19:59:56 +00:00
Michael Jerris fe9ec23f9b update jrtp to 3.4.0 version with our mods. Pending: Autotools rerun on this.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@868 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-03-17 19:57:18 +00:00
Michael Jerris 10ee3e4347 a few more rtp cleanups.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@866 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-03-17 17:01:41 +00:00
Michael Jerris 0075dce340 Tweaks for mac build.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@865 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-03-17 16:24:30 +00:00
Anthony Minessale b317041634 grr 1 fricken character missing
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@864 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-03-17 16:12:32 +00:00
Michael Jerris a2c448e118 windows build update to use more dynamic libs, fix some type issues, and fix jrtp build.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@862 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-03-17 02:45:19 +00:00
Anthony Minessale 539ff39995 tweaks and fixes
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@859 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-03-15 22:11:13 +00:00
Michael Jerris c5e3144711 eliminate some int overflows in iax.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@856 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-03-13 20:36:58 +00:00
Michael Jerris 9977f2b8dd msvc build fixes
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@797 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-03-08 03:29:56 +00:00
Brian West 1570ac77bd MD5 of all external libs
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@789 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-03-07 18:16:44 +00:00
Brian West f881785183 one more thing that was anoying me
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@780 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-03-07 06:28:39 +00:00
Brian West 1e2de69785 clean up some warnings because it anoyed me
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@779 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-03-07 06:25:16 +00:00
Michael Jerris 6bbe672f07 win32 mods.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@778 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-03-07 06:18:46 +00:00
Michael Jerris c299083587 update project file to modified file location in src
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@777 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-03-07 06:11:10 +00:00
Brian West fc0fd39973 small fix
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@776 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-03-07 05:44:38 +00:00
Brian West 8c79672f12 Lets get the g726 lib in here for later use.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@775 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-03-07 05:41:10 +00:00
Brian West eb594d0d60 update to include this header also
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@773 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-03-07 02:57:17 +00:00
Brian West b4d499f295 Don't need this
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@772 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-03-07 02:49:55 +00:00
Brian West 3d0788b9a7 update automake for ilbc
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@771 d0543943-73ff-0310-b7d9-9358b9ac24b2
2006-03-07 02:49:37 +00:00