Changeset 399


Ignore:
Timestamp:
Jul 21, 2012, 4:31:00 AM (13 years ago)
Author:
dmik
Message:

Release b25 GA3.

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/doc/CHANGES.OS2

    r344 r399  
    44
    55CHANGES
     6
     71.6.0 Build 25 GA3 (2012-07-21)
     8
     9  - Updated OpenJDK sources to b25 (release May, 07, 2012). The main changes in
     10    b25 are the latest round of security updates (in jdk and corba repositories)
     11    and a number of other fixes. The full list of changes is located here:
     12
     13    https://blogs.oracle.com/openjdk6releases/entry/openjdk_6_b25_available
     14
     15  - Fix a hang in the TCP/IP Configuration application when saving the changes.
     16
     17  - Fix warnings about stack guard pages that could eventually lead crash the
     18    Java application.
     19
     20  - Add related changes to make the IcedTea-Web (Java) browser plugin work.
     21
     22  - Fix a possible secondary crash when generating the Java crash report.
     23
     24  - Change the version numbering scheme to 1.6.0_BB-bNN-name where BB is the
     25    upstream Build number, NN is the OS/2 sequential build number and name is
     26    a symbolic name of the release. This release's version is 1.6.0_25-b01-GA3.
     27
     28  - Make sure the BEGINLIBPATH setting is not necessary for JAVA.EXE and
     29    JAVAW.EXE binaries (and for creating a JVM by loading JVM.DLL directly).
     30    It is only necessary for JAVAC.EXE and other SDK tools.
     31
     32
    633
    7341.6.0 Build 24 GA2 (2012-03-19)
  • trunk/doc/README.OS2

    r344 r399  
    11OpenJDK 6 for OS/2 and eCS
    22
    3 Version 1.6.0 Build 24 GA2 (2012-03-19)
    4 
    5 This is an official release of Build 22 intended for general use.
     3Version 1.6.0 Build 25 GA3 (2012-07-21)
     4
     5This is an official release of Build 25 intended for general use.
    66
    77
     
    2828  - A OS/2 Warp 4 Fixpack 16+, OS/2 Warp 4.5 or eComStation operating system.
    2929
    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
     30  - LIBC runtime version 0.6.5 (you probably have it already installed):
     31
     32    ftp://ftp.netlabs.org/pub/libc/libc-0_6_5-csd5.wpi
    3333
    3434  - GCC 4 runtime libraries:
     
    3636    ftp://ftp.netlabs.org/pub/gcc/gcc4core-1_2_1.wpi
    3737
    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
     38  - Odin runtime version 0.8.5 or above:
     39
     40    ftp://ftp.netlabs.org/pub/odin/0.8.5/odin-0.8.5.zip
    4141
    4242  - Extended system tray widget for XCenter version 0.1.1 or above (optional,
     
    4545    ftp://ftp.netlabs.org/pub/qt4/xsystray/xsystray-0_1_1.wpi
    4646
     47If you use the YUM/RPM package manager, you may install all the requirements
     48with a single command from the command line (except the system tray widget):
     49
     50    yum install libc libgcc446 libodin
     51
    4752
    4853
     
    5055
    5156  The OpenJDK product is distributed in two packages: the JRE and the SDK
    52   (which includes a copy of JRE). Simply take a necessary package and unzip it
    53   to a directory of your choice. You will need to add the \bin subdirectory
    54   inside this directory to PATH and BEGINLIBPATH to allow for starting Java
    55   executables from an arbitrary location:
     57  (which includes a copy of JRE). Simply take the necessary package and unzip it
     58  to a directory of your choice. You will need to add the "bin" subdirectory
     59  inside this directory to the PATH environment variable to allow for starting
     60  Java programs from an arbitrary location (using JAVA.EXE and JAVAW.EXE):
    5661
    5762    set PATH=<directory>\bin;%PATH%
     63
     64  Note that if you use the SDK package, you will also need to add this "bin"
     65  subdirectory to the BEGINLIBPATH environment variable (in order to run
     66  JAVAC.EXE, JAR.EXE and other development tools):
     67
    5868    set BEGINLIBPATH=<directory>\bin;%BEGINLIBPATH%
    5969
    6070  Also make sure there are no traces of other Java installations in the
    61   environment because this is known to make problems (in particular, this means
    62   that the CLASSPATH/JAVA_HOME/SWING_HOME environment variables should not be
    63   set).
    64 
    65   Alternatively, you may add this subdirectory to PATH and LIBPATH statements
    66   of your CONFIG.SYS (and reboot) to make the given Java installation the
    67   default one.
    68 
    69   Please read the further sections (especially the "CURRENT LIMITATIONS" section
     71  environment because this is known to make problems. In particular, you should
     72  check that the CLASSPATH/JAVA_HOME/SWING_HOME environment variables are not
     73  set.
     74
     75  Alternatively, you may add the "bin" subdirectory to PATH and LIBPATH
     76  statements of your CONFIG.SYS (and reboot) to make the given Java installation
     77  the default one.
     78
     79  Please read further sections (especially the "CURRENT LIMITATIONS" section
    7080  below) to make sure that you are aware of possible problems you may run into
    7181  while running Java applications using this product.
  • trunk/tools/CreateImageZIPs.cmd

    r344 r399  
    11/*REXX*/
    22
    3 ver_id = 'openjdk6_b24'
     3ver_id = 'openjdk6_b25'
    44
    5 build_id = 'ga2-20120319'
     5build_id = 'ga3-20120721'
    66
    77src_path = '..'
Note: See TracChangeset for help on using the changeset viewer.