OLD | NEW |
1 Name: libjingle | 1 Name: libjingle |
2 URL: http://code.google.com/p/libjingle/ | 2 URL: http://code.google.com/p/libjingle/ |
3 Version: 2.7.0 | 3 Version: 2.7.0 |
4 License: BSD | 4 License: BSD |
5 License File: files/COPYING | 5 License File: source/COPYING |
6 | 6 |
7 Description: | 7 Description: |
8 Libjingle provides xmpp support to the sync code, which | 8 Libjingle provides xmpp support to the sync code, which |
9 lives at chrome/browser/sync/notifier. | 9 lives at chrome/browser/sync/notifier. |
10 | 10 |
11 Libjingle is distributed under a Berkeley-style license detailed in | 11 Libjingle is distributed under a Berkeley-style license detailed in |
12 files/COPYING. | 12 source/COPYING. |
13 | |
14 Local Modifications: | |
15 Applied changes per the patchfile mods-since-v0_4_0.diff. That | |
16 includes the following items. | |
17 * Added support to specify the token_service in the auth stanza. | |
18 * Added support for non-gaia ids associated with gaia accounts. | |
19 * A bug fix in the task code to prevent infinite looping of aborted | |
20 tasks. | |
21 * Removed the definition of DISALLOW_EVIL_CONSTRUCTORS from common.h | |
22 * Introduction of #undef ETIMEDOUT to get around a conflict versus | |
23 pthreads.h. | |
24 * We use an "overrides" directory for some headers, for example, | |
25 scoped_ptr.h and basic_types.h, to avoid a duplicate functionality. | |
26 The overrides typically pull an implementation from src/base, and | |
27 then supplement this with any additional defines not found | |
28 in Chromium. | |
29 * Edits to config.h, changing some #defines. | |
30 * Removed some scripts and build files not needed by Chromium: aclocal.m4, | |
31 config.guess, config.h.in, config.sub, configure, depcomp, install-sh, | |
32 ltmain.sh, missing. | |
33 * Removed Makefile.in files, *.sln, *.vcproj. | |
34 * Removed "examples", "thirdparty", and "sessions" directories. | |
35 * Removed a number of unneeded scope specifications to appease gcc. | |
36 * Renamed "talk/xmpp/constants.*" to "talk/xmpp/xmppconstants.*" to get | |
37 around an IncrediBuild link error. Apparently IncrediBuild can become | |
38 confused when two compilation units have the same filename. | |
39 * Added a #define guard to libjingle's base/logging.h to prevent the | |
40 LOG() macros from being redefined when included by users of the | |
41 library. The #define guard is SAFE_TO_DEFINE_TALK_BASE_LOGGING_MACROS. | |
42 * Updated signalthread.* and dependencies to add threadcounting and | |
43 improve multithread safety. | |
44 * Added a CreateSSLAdapter() function to SocketFactory to allow SSL | |
45 adapter creation behavior to be overridden. | |
46 * Improved handling and error-checking of SSL adapters. | |
47 * Changed uses of Windows-only debug variable _DEBUG to use the | |
48 cross-platform NDEBUG variable instead. | |
49 * Fixed error-checking bugs in xmppclient.cc and physicalsocketserver.cc. | |
50 * Made some XmppTask member functions static. | |
51 * Cleaned up several sscanf/printf format strings/arguments. | |
OLD | NEW |