embedded updates
From-SVN: r49562
This commit is contained in:
parent
383aa2ef49
commit
b5ee195f1e
12 changed files with 532 additions and 318 deletions
|
@ -271,7 +271,9 @@ java::lang::System::getSystemTimeZone (void)
|
|||
tz1 = tzname[0];
|
||||
tz2 = strcmp (tzname[0], tzname[1]) ? tzname[1] : "";
|
||||
#else
|
||||
#error Neither tm_zone nor tzname defined
|
||||
// Some targets have no concept of timezones.
|
||||
tz1 = "???";
|
||||
tz2 = tz1;
|
||||
#endif
|
||||
|
||||
if ((tzoffset % 3600) == 0)
|
||||
|
@ -464,6 +466,7 @@ java::lang::System::init_properties (void)
|
|||
}
|
||||
|
||||
// Set the system properties from the user's environment.
|
||||
#ifndef DISABLE_GETENV_PROPERTIES
|
||||
if (_Jv_Environment_Properties)
|
||||
{
|
||||
size_t i = 0;
|
||||
|
@ -475,6 +478,7 @@ java::lang::System::init_properties (void)
|
|||
i++;
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
if (_Jv_Jar_Class_Path)
|
||||
newprops->put(JvNewStringLatin1 ("java.class.path"),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue