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

Side by Side Diff: public/common/unicode/plinux.h

Issue 16862003: Fix the typo in the previous CL for uClibc support in ICU Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/icu46/
Patch Set: Created 7 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 ****************************************************************************** 2 ******************************************************************************
3 * 3 *
4 * Copyright (C) 1997-2010, International Business Machines 4 * Copyright (C) 1997-2010, International Business Machines
5 * Corporation and others. All Rights Reserved. 5 * Corporation and others. All Rights Reserved.
6 * 6 *
7 ****************************************************************************** 7 ******************************************************************************
8 * 8 *
9 * Note: autoconf creates platform.h from platform.h.in at configure time. 9 * Note: autoconf creates platform.h from platform.h.in at configure time.
10 * 10 *
(...skipping 264 matching lines...) Expand 10 before | Expand all | Expand 10 after
275 #define U_HAVE_NL_LANGINFO_CODESET 1 275 #define U_HAVE_NL_LANGINFO_CODESET 1
276 #endif 276 #endif
277 277
278 #ifndef U_NL_LANGINFO_CODESET 278 #ifndef U_NL_LANGINFO_CODESET
279 #define U_NL_LANGINFO_CODESET CODESET 279 #define U_NL_LANGINFO_CODESET CODESET
280 #endif 280 #endif
281 281
282 #if 1 282 #if 1
283 #define U_TZSET tzset 283 #define U_TZSET tzset
284 #endif 284 #endif
285 #ifdef !defined(__UCLIBC__) 285 #if !defined(__UCLIBC__)
286 #define U_TIMEZONE __timezone 286 #define U_TIMEZONE __timezone
287 #endif 287 #endif
288 #if 1 288 #if 1
289 #define U_TZNAME tzname 289 #define U_TZNAME tzname
290 #endif 290 #endif
291 291
292 #define U_HAVE_MMAP 1 292 #define U_HAVE_MMAP 1
293 #define U_HAVE_POPEN 1 293 #define U_HAVE_POPEN 1
294 294
295 /** @} */ 295 /** @} */
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
394 #if U_HAVE_LIB_SUFFIX 394 #if U_HAVE_LIB_SUFFIX
395 # ifndef U_ICU_ENTRY_POINT_RENAME 395 # ifndef U_ICU_ENTRY_POINT_RENAME
396 /* Renaming pattern: u_strcpy_41_suffix */ 396 /* Renaming pattern: u_strcpy_41_suffix */
397 # define U_ICU_ENTRY_POINT_RENAME(x) x ## _ ## 46 ## 397 # define U_ICU_ENTRY_POINT_RENAME(x) x ## _ ## 46 ##
398 # define U_DEF_ICUDATA_ENTRY_POINT(major, minor) icudt####major##minor##_dat 398 # define U_DEF_ICUDATA_ENTRY_POINT(major, minor) icudt####major##minor##_dat
399 399
400 # endif 400 # endif
401 #endif 401 #endif
402 402
403 #endif 403 #endif
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698