Changeset 266


Ignore:
Timestamp:
Feb 21, 2011, 2:23:40 PM (14 years ago)
Author:
dmik
Message:

Readme/changes update for RC.

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/doc/CHANGES.OS2

    r263 r266  
    66
    77
    8 1.6.0 Build 19 XXX (2011-xx-xx)
     81.6.0 Build 19 RC (2011-02-21)
     9
     10  - Ported and enabled the JPDA (Java Platform Debugger Architecture) component
     11    which provides a framework for debugging Java applications.
     12
     13  - Added sound (audio and MIDI) support to Java applications using DART.
     14
     15  - Added a free implementation of the com.sun.image.codec.jpeg package (taken
     16    from the IcedTea project) used by some old Java applications like Jeti/2.
     17
     18  - Renamed all Java DLLs by adding a 'j' prefix to the names to avoid possible
     19    conflicts with system DLLs.
    920
    1021  - Fixed: Accessing the network from Java applications would crash on some
    1122    machines (Odin bug).
    1223
    13   - Fixed: spontaneous 100% CPU load in many Java applications (e.g. GenealogyJ
     24  - Fixed: Spontaneous 100% CPU load in many Java applications (e.g. GenealogyJ
    1425    Jeti/2) when throwing NullPointerException as a result of accessing null
    1526    objects of some application classes (Odin bug).
     27
     28  - Fixed: java.util.prefs.Preferences: Use the Open32 registry on OS/2 instead
     29    of throwing an exception.
     30
     31  - Fixed: JVM used PATH instead of LIBPATH to comprise java.library.path
     32    resulting in inability to find JNI DLLs in some applications.
     33
     34  - Fixed: Crash in java.io.WinNTFileSystem.getSpace() (Odin bug).
     35
     36  - Fixed: Exception java.awt.image.ImagingOpException in many applications due
     37    to wrong exports from in jmlibimg.dll.
    1638
    1739
  • trunk/doc/README.OS2

    r263 r266  
    11OpenJDK 6 for OS/2 and eCS
    22
    3 Version 1.6.0 Build 19 RC (2011-xx-yy)
     3Version 1.6.0 Build 19 RC (2011-02-21)
    44
    55This is a release candidate build intended for testing purposes.
     
    2828  - A OS/2 Warp 4 Fixpack 16+, OS/2 Warp 4.5 or eComStation operating system.
    2929
    30   - Odin32 library version 0.6.21558 (2011-01-12) or above:
    31 
    32     ftp://ftp.netlabs.org/pub/odin/odin32bin-20110112-release.wpi
     30  - Odin32 library version 0.6.21577 (2011-02-21) or above:
     31
     32    ftp://ftp.netlabs.org/pub/odin/odin32bin-20110221-release.wpi
    3333
    3434
     
    221221
    222222  Besides adding the 'j' prefix, some DLLs were also renamed further to fit the
    223   8 character length limit forced by the OS/2 kernel loader.
    224 
    225 
    226   On OS/2, the directory containing JDK DLLs
    227   In order to avoid conflicts...
    228   the following dlls were renamed...
    229 
    230   hprof.dll -> jhprof.dll in -agentlib: cmd line option
    231   debug dlls as well
     223  8 character DLL name length limit forced by the OS/2 kernel loader.
     224
     225  This rename operation is transparent to all Java applications except a few
     226  cases which involve custom agent libraries used to enhance the functionality
     227  of JDK or JVM. These libraries in particular include:
     228
     229  Original Name            New Name
     230  --------------------------------------------
     231  hprof.dll                jhprof.dll
     232  dt_shmem.dll             jdtshmem.dll
     233  dt_socket.dll            jdtsock.dll
     234
     235  In order to use the renamed libraries, you need to substitute the old name
     236  with the new name wherever the old name is used in Java documentation,
     237  configuration files or command line options. For example, to use the profiler
     238  library, you will have to write "-agentlib:jhprof.dll" on the command line
     239  instead of "-agentlib:hprof.dll" and so on.
    232240
    233241
     
    240248     Warp4 kernel instead.
    241249
    242   2. The JPDA (Java Platform Debugger Architecture) component is missing.
    243 
    244   3. The com.sun.tools.attach package (API to attach to a Java virtual machine)
     250  2. The com.sun.tools.attach package (API to attach to a Java virtual machine)
    245251     is missing.
    246 
    247   4. Some other rarely used Java system classes may also be missing in this
    248      release.
    249252
    250253  See the project roadmap for more information on the current progress and
  • trunk/tools/CreateImageZIPs.cmd

    r242 r266  
    33ver_id = 'openjdk6_b19'
    44
    5 build_id = 'beta2-20110112'
     5build_id = 'rc-20110221'
    66
    77src_path = '..'
Note: See TracChangeset for help on using the changeset viewer.