Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(295)

Side by Side Diff: README.chromium

Issue 6760010: Fixing icu to work with msvs2010. (Closed) Base URL: svn://chrome-svn.corp.google.com/chrome/trunk/deps/third_party/icu46/
Patch Set: Created 9 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | source/common/stringpiece.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 Name: icu 1 Name: icu
2 URL: http://site.icu-project.org/ 2 URL: http://site.icu-project.org/
3 Version: 4.6 3 Version: 4.6
4 4
5 Description: 5 Description:
6 This directory contains the source code of ICU 4.6 for C/C++ 6 This directory contains the source code of ICU 4.6 for C/C++
7 7
8 1. It was obtained with the following: 8 1. It was obtained with the following:
9 9
10 $ svn export --native-eol LF http://source.icu-project.org/repos/icu/icu/tag s/release-4-6 icu46 10 $ svn export --native-eol LF http://source.icu-project.org/repos/icu/icu/tag s/release-4-6 icu46
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 - cros/icudt46l_dat.S : Built on Linux with 130 - cros/icudt46l_dat.S : Built on Linux with
131 abriged locale source files in cros/data put 131 abriged locale source files in cros/data put
132 in source/data. Those abridged locales files are 132 in source/data. Those abridged locales files are
133 for locales ChromeOS is not localized to. 133 for locales ChromeOS is not localized to.
134 134
135 11. The header files were moved as shown below: 135 11. The header files were moved as shown below:
136 136
137 source/common/unicode ==> public/common/unicode 137 source/common/unicode ==> public/common/unicode
138 source/i18n/unicode ==> public/i18n/unicode 138 source/i18n/unicode ==> public/i18n/unicode
139 139
140 12. Fix for msvs2010 applied:
141 --- D:/src/ent/src/third_party/icu/source/common/stringpiece.cpp
142 (revision 78292)
143 +++ D:/src/ent/src/third_party/icu/source/common/stringpiece.cpp
144 (working copy)
145 @@ -75,7 +75,7 @@
146 * Visual Studios 9.0.
147 * Cygwin with MSVC 9.0 also complains here about redefinition.
148 */
149 -#if (!defined(_MSC_VER) || (_MSC_VER > 1500)) && !defined(CYGWINMSVC)
150 +#if (!defined(_MSC_VER) || (_MSC_VER > 1600)) && !defined(CYGWINMSVC)
151 const int32_t StringPiece::npos;
152 #endif
OLDNEW
« no previous file with comments | « no previous file | source/common/stringpiece.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698