OLD | NEW |
1 URL: http://code.google.com/p/libjingle/ | 1 URL: http://code.google.com/p/libjingle/ |
2 Version: 2.7.0 | 2 Version: 2.7.0 |
3 License: BSD | 3 License: BSD |
4 License File: COPYING | 4 License File: COPYING |
5 | 5 |
6 Description: | 6 Description: |
7 Libjingle provides xmpp support to the sync code, which | 7 Libjingle provides xmpp support to the sync code, which |
8 lives at chrome/browser/sync/notifier. | 8 lives at chrome/browser/sync/notifier. |
9 | 9 |
10 Libjingle is distributed under a Berkeley-style license detailed in | 10 Libjingle is distributed under a Berkeley-style license detailed in |
(...skipping 14 matching lines...) Expand all Loading... |
25 The overrides typically pull an implementation from src/base, and | 25 The overrides typically pull an implementation from src/base, and |
26 then supplement this with any additional defines not found | 26 then supplement this with any additional defines not found |
27 in Chromium. | 27 in Chromium. |
28 * Edits to config.h, changing some #defines. | 28 * Edits to config.h, changing some #defines. |
29 * Removed some scripts and build files not needed by Chromium: aclocal.m4, | 29 * Removed some scripts and build files not needed by Chromium: aclocal.m4, |
30 config.guess, config.h.in, config.sub, configure, depcomp, install-sh, | 30 config.guess, config.h.in, config.sub, configure, depcomp, install-sh, |
31 ltmain.sh, missing. | 31 ltmain.sh, missing. |
32 * Removed Makefile.in files, *.sln, *.vcproj. | 32 * Removed Makefile.in files, *.sln, *.vcproj. |
33 * Removed "examples", "thirdparty", and "sessions" directories. | 33 * Removed "examples", "thirdparty", and "sessions" directories. |
34 * Removed a number of unneeded scope specifications to appease gcc. | 34 * Removed a number of unneeded scope specifications to appease gcc. |
| 35 * Added a #define guard to libjingle's base/logging.h to prevent the |
| 36 LOG() macros from being redefined when included by users of the |
| 37 library. The #define guard is SAFE_TO_DEFINE_TALK_BASE_LOGGING_MACROS. |
OLD | NEW |