-
Bug
-
Resolution: Fixed
-
P4
-
11.0.6
-
b05
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-8239175 | openjdk8u252 | Martin Doerr | P4 | Resolved | Fixed | b03 |
JDK-8236060 | openjdk8u242 | Martin Doerr | P4 | Resolved | Fixed | b05 |
Old C compilers don't allow declarations in for loops:
TimeZone_md.c:139:9: error: ‘for’ loop initial declarations are only allowed in C99 mode
for (unsigned int i = 0; i < sizeof (popularZones) / sizeof (popularZones[0]); i++) {
Such old compilers may be no longer officially supported, but it can be fixed very easily.
TimeZone_md.c:139:9: error: ‘for’ loop initial declarations are only allowed in C99 mode
for (unsigned int i = 0; i < sizeof (popularZones) / sizeof (popularZones[0]); i++) {
Such old compilers may be no longer officially supported, but it can be fixed very easily.
- backported by
-
JDK-8236060 [11u] Build with old C compiler broken by 8223490
-
- Resolved
-
-
JDK-8239175 [11u] Build with old C compiler broken by 8223490
-
- Resolved
-
- relates to
-
JDK-8234556 Optimize search algorithm for determining default time zone
-
- Resolved
-
-
JDK-8223490 Optimize search algorithm for determining default time zone
-
- Closed
-