- Timestamp:
- Mar 19, 2012, 1:13:40 AM (13 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/doc/CHANGES.OS2
r305 r344 4 4 5 5 CHANGES 6 7 1.6.0 Build 24 GA2 (2012-03-19) 8 9 - Updated OpenJDK sources to b24 (release November 2011). The main changes in 10 b24 are the latest round of security updates (e.g. the security changes in 11 jdk repo) and a few other fixes. For more information see the detailed list 12 of all the changes in OpenJDK 6 B24 here: 13 14 http://blogs.oracle.com/openjdk6releases/resource/OpenJDK6-B24-Changes.html 15 16 - Make the JNI interface calling convention compatible with IBM Java. This 17 allows old OS/2 JNI DLLs to be loaded by OpenJDK and makes standard 18 programs like LVMGUI and TCP/IP Configuration work properly under it. 19 20 - Fix hangs at crashes when the Java process is killed by Ctrl-C or by a kill 21 signal. 22 23 - Fix crashes following the "Attempt to protect stack guard pages failed" 24 warning message (Odin bug). 25 26 - Fix spontaneous NoClassDefFoundError exceptions thrown by some applicatinos 27 at startup (Odin/b22 bug). 6 28 7 29 -
trunk/doc/README.OS2
r305 r344 1 1 OpenJDK 6 for OS/2 and eCS 2 2 3 Version 1.6.0 Build 2 2 GA (2011-06-27)3 Version 1.6.0 Build 24 GA2 (2012-03-19) 4 4 5 5 This is an official release of Build 22 intended for general use. … … 28 28 - A OS/2 Warp 4 Fixpack 16+, OS/2 Warp 4.5 or eComStation operating system. 29 29 30 - LIBC library version 0.6.3(you probably have it already installed):31 32 ftp://ftp.netlabs.org/pub/libc/libc-0_6_ 3-csd3.wpi33 34 - GCC core libraries version 4.5.2:35 36 http://download.smedley.info/gcc452.zip37 38 - Odin 32 library version 0.6.21659 (2011-06-27)or above:39 40 ftp://ftp.netlabs.org/pub/odin/ odin32bin-20110627-release.wpi30 - LIBC runtime version 0.6.4 (you probably have it already installed): 31 32 ftp://ftp.netlabs.org/pub/libc/libc-0_6_4-csd4.wpi 33 34 - GCC 4 runtime libraries: 35 36 ftp://ftp.netlabs.org/pub/gcc/gcc4core-1_2_1.wpi 37 38 - Odin runtime version 0.8.4 or above: 39 40 ftp://ftp.netlabs.org/pub/odin/0.8.4/odin-0.8.4.zip 41 41 42 42 - Extended system tray widget for XCenter version 0.1.1 or above (optional, -
trunk/tools/CreateImageZIPs.cmd
r309 r344 1 1 /*REXX*/ 2 2 3 say 'Don''t pack ct.sym!' 4 exit 3 ver_id = 'openjdk6_b24' 5 4 6 ver_id = 'openjdk6_b22' 7 8 build_id = 'ga-20110627' 5 build_id = 'ga2-20120319' 9 6 10 7 src_path = '..' … … 115 112 ncwd = directory(filespec('D', found.i)||, 116 113 strip(filespec('P', found.i), 'T', '\')) 117 ' mapsym' filespec('N', found.i)114 'call wmapsym.cmd' filespec('N', found.i) 118 115 rc2 = rc 119 116 call directory cwd … … 132 129 return rc 133 130 131 /* remove the mistakenly copied ct.sym file and its directory */ 134 132 if (\is_jre) then do 135 /* remove the mistakenly copied file and its directory */136 133 'del' aOut'_sym\lib\ct.sym' 137 134 if (rc == 0) then
Note:
See TracChangeset
for help on using the changeset viewer.