Index: patches/putil.patch |
=================================================================== |
--- patches/putil.patch (revision 267150) |
+++ patches/putil.patch (working copy) |
@@ -11,3 +11,20 @@ |
# define U_HAVE_NL_LANGINFO_CODESET 0 |
#else |
# define U_HAVE_NL_LANGINFO_CODESET 1 |
+@@ -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. */ |
++ /* 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 |
++# define U_TIMEZONE _timezone |
++# endif |
+ # endif |
+ #elif U_PLATFORM_USES_ONLY_WIN32_API |
+ # define U_TIMEZONE _timezone |