7fd76d35cd
Changes since 13-1.0.7: - A de-serialized GregorianCalendar did not correctly handle the Calendar.set(int field, int value) method. - Java Plug-in Security Warning dialog did not show buttons. - java.beans.Introspector returned results depending on the order that classes were loaded by the Virtual Machine. - A help viewer search would sometimes yield NullPointerExceptions, and search hit highlighting was unstable. - The "~" character was not properly displayed in an HTML file using the SJIS character set. - There was a system crash generating a Fatal: unhandled ci exception. - Plugin regional locale parameters were incorrectly displayed. - The VM crashed while running a large application. - An application ignored the nohup(1) command, caught and processed the SIGHUP signal, resulting in application exit with a return code of 129. - In some cases, the text field caret did not return when window focus was moved and then restored. - SIGSEGV during C2 compilation of a method. - System crashed with hotspot errors. - Plug-in crashed when the ethernet cable was unplugged. - Signed applet failed only on JRE 1.3.1_06. - System crashed when attempting to widen the range check of an IF node during compilation. - The background color of a Menu was different from that of the MenuBar for classic style. - Application crashed due to problems in JVM/plug-in/Mozilla. - Serviceability is improved by exposing VM version and flags to Serviceability Agent. - Double primitive lost value when using -client. - White background persisted when applet exited to a different web page. - An applet could access a local resource without permission on IE60+JRE1.3.1_06.
42 lines
1.2 KiB
Makefile
42 lines
1.2 KiB
Makefile
# $NetBSD: Makefile,v 1.22 2003/05/02 08:42:05 abs Exp $
|
|
|
|
DISTNAME= j2sdk-1_3_1_08-linux-i586
|
|
PKGNAME= sun-jdk13-1.0.8
|
|
PKGREVISION= 1
|
|
WRKSRC= ${WRKDIR}/jdk1.3.1_08
|
|
MASTER_SITES= # empty
|
|
|
|
COMMENT= Sun's Java(tm) Development Kit 1.3.1
|
|
|
|
DEPENDS= sun-jre13>=1.0.8nb1:../../lang/sun-jre13
|
|
|
|
# Remove parts that are in common with the JRE.
|
|
#
|
|
post-extract:
|
|
common=`${AWK} '/^#.*/ { next } /^$$/ { next } { print }' ${FILESDIR}/common`; \
|
|
cd ${WRKSRC}; for i in $$common; do \
|
|
if [ -d $$i ]; then \
|
|
${RM} -rf $$i; \
|
|
else \
|
|
${RM} -f $$i; \
|
|
fi; \
|
|
done
|
|
${LN} -sf . ${WRKSRC}/jre
|
|
|
|
_FETCH_MESSAGE= \
|
|
${ECHO} "======================================================================"; \
|
|
${ECHO} ; \
|
|
${ECHO} " The file ${DISTNAME}${EXTRACT_SUFX} containing the"; \
|
|
${ECHO} " Java(tm) 2 SDK, Standard Edition must be fetched"; \
|
|
${ECHO} " into:"; \
|
|
${ECHO} " ${DISTDIR}"; \
|
|
${ECHO} " from:"; \
|
|
${ECHO} " ${DOWNLOAD}"; \
|
|
${ECHO} ; \
|
|
${ECHO} " Choose 'Linux self-extracting file' from the 'SDK' column."; \
|
|
${ECHO} ; \
|
|
${ECHO} "======================================================================"
|
|
|
|
.include "../../lang/sun-jre13/Makefile.common"
|
|
|
|
PREFIX= ${JVM_HOME}
|