Changeset 344 for trunk


Ignore:
Timestamp:
Mar 19, 2012, 1:13:40 AM (13 years ago)
Author:
dmik
Message:

Release b24 GA2.

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/doc/CHANGES.OS2

    r305 r344  
    44
    55CHANGES
     6
     71.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).
    628
    729
  • trunk/doc/README.OS2

    r305 r344  
    11OpenJDK 6 for OS/2 and eCS
    22
    3 Version 1.6.0 Build 22 GA (2011-06-27)
     3Version 1.6.0 Build 24 GA2 (2012-03-19)
    44
    55This is an official release of Build 22 intended for general use.
     
    2828  - A OS/2 Warp 4 Fixpack 16+, OS/2 Warp 4.5 or eComStation operating system.
    2929
    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.wpi
    33 
    34   - GCC core libraries version 4.5.2:
    35 
    36     http://download.smedley.info/gcc452.zip
    37 
    38   - Odin32 library version 0.6.21659 (2011-06-27) or above:
    39 
    40     ftp://ftp.netlabs.org/pub/odin/odin32bin-20110627-release.wpi
     30  - 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
    4141
    4242  - Extended system tray widget for XCenter version 0.1.1 or above (optional,
  • trunk/tools/CreateImageZIPs.cmd

    r309 r344  
    11/*REXX*/
    22
    3 say 'Don''t pack ct.sym!'
    4 exit
     3ver_id = 'openjdk6_b24'
    54
    6 ver_id = 'openjdk6_b22'
    7 
    8 build_id = 'ga-20110627'
     5build_id = 'ga2-20120319'
    96
    107src_path = '..'
     
    115112        ncwd = directory(filespec('D', found.i)||,
    116113                         strip(filespec('P', found.i), 'T', '\'))
    117         'mapsym' filespec('N', found.i)
     114        'call wmapsym.cmd' filespec('N', found.i)
    118115        rc2 = rc
    119116        call directory cwd
     
    132129        return rc
    133130
     131    /* remove the mistakenly copied ct.sym file and its directory */
    134132    if (\is_jre) then do
    135         /* remove the mistakenly copied file and its directory */
    136133        'del' aOut'_sym\lib\ct.sym'
    137134        if (rc == 0) then
Note: See TracChangeset for help on using the changeset viewer.