Changeset 399
- Timestamp:
- Jul 21, 2012, 4:31:00 AM (13 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/doc/CHANGES.OS2
r344 r399 4 4 5 5 CHANGES 6 7 1.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 6 33 7 34 1.6.0 Build 24 GA2 (2012-03-19) -
trunk/doc/README.OS2
r344 r399 1 1 OpenJDK 6 for OS/2 and eCS 2 2 3 Version 1.6.0 Build 2 4 GA2 (2012-03-19)4 5 This is an official release of Build 2 2intended for general use.3 Version 1.6.0 Build 25 GA3 (2012-07-21) 4 5 This is an official release of Build 25 intended for general use. 6 6 7 7 … … 28 28 - A OS/2 Warp 4 Fixpack 16+, OS/2 Warp 4.5 or eComStation operating system. 29 29 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.wpi30 - 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 33 33 34 34 - GCC 4 runtime libraries: … … 36 36 ftp://ftp.netlabs.org/pub/gcc/gcc4core-1_2_1.wpi 37 37 38 - Odin runtime version 0.8. 4or above:39 40 ftp://ftp.netlabs.org/pub/odin/0.8. 4/odin-0.8.4.zip38 - Odin runtime version 0.8.5 or above: 39 40 ftp://ftp.netlabs.org/pub/odin/0.8.5/odin-0.8.5.zip 41 41 42 42 - Extended system tray widget for XCenter version 0.1.1 or above (optional, … … 45 45 ftp://ftp.netlabs.org/pub/qt4/xsystray/xsystray-0_1_1.wpi 46 46 47 If you use the YUM/RPM package manager, you may install all the requirements 48 with a single command from the command line (except the system tray widget): 49 50 yum install libc libgcc446 libodin 51 47 52 48 53 … … 50 55 51 56 The OpenJDK product is distributed in two packages: the JRE and the SDK 52 (which includes a copy of JRE). Simply take anecessary package and unzip it53 to a directory of your choice. You will need to add the \binsubdirectory54 inside this directory to PATH and BEGINLIBPATH to allow for starting Java55 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): 56 61 57 62 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 58 68 set BEGINLIBPATH=<directory>\bin;%BEGINLIBPATH% 59 69 60 70 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 means62 that the CLASSPATH/JAVA_HOME/SWING_HOME environment variables should not be63 set ).64 65 Alternatively, you may add th is subdirectory to PATH and LIBPATH statements66 of your CONFIG.SYS (and reboot) to make the given Java installation the67 default one.68 69 Please read thefurther sections (especially the "CURRENT LIMITATIONS" section71 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 70 80 below) to make sure that you are aware of possible problems you may run into 71 81 while running Java applications using this product. -
trunk/tools/CreateImageZIPs.cmd
r344 r399 1 1 /*REXX*/ 2 2 3 ver_id = 'openjdk6_b2 4'3 ver_id = 'openjdk6_b25' 4 4 5 build_id = 'ga 2-20120319'5 build_id = 'ga3-20120721' 6 6 7 7 src_path = '..'
Note:
See TracChangeset
for help on using the changeset viewer.