Commit Graph

187 Commits

Author SHA1 Message Date
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