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

Unified Diff: source/common/putilimp.h

Issue 266503003: Add a support for newlib (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/icu52/
Patch Set: Created 6 years, 8 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 side-by-side diff with in-line comments
Download patch
« README.chromium ('K') | « patches/putil.patch ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: source/common/putilimp.h
===================================================================
--- source/common/putilimp.h (revision 267150)
+++ source/common/putilimp.h (working copy)
@@ -116,9 +116,14 @@
#elif U_PLATFORM == U_PF_ANDROID
# define U_TIMEZONE timezone
#elif U_PLATFORM_IS_LINUX_BASED
+ /* uClibc does not have __timezone nor _timezone. */
Mark Mentovai 2014/04/30 14:06:27 or, not nor.
+ /* gLibc has __timezone while newlib has _timezone. */
# if !defined(__UCLIBC__)
- /* __timezone is only available in glibc */
-# define U_TIMEZONE __timezone
+# if defined(__GLIBC__)
+# define U_TIMEZONE __timezone
+# else
Mark Mentovai 2014/04/30 14:06:27 https://codereview.chromium.org/162913002/ uses _N
+# define U_TIMEZONE _timezone
+# endif
# endif
#elif U_PLATFORM_USES_ONLY_WIN32_API
# define U_TIMEZONE _timezone
« README.chromium ('K') | « patches/putil.patch ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698