summaryrefslogtreecommitdiff
path: root/lang/jikes
diff options
context:
space:
mode:
authormjl <mjl@pkgsrc.org>2002-02-12 19:56:51 +0000
committermjl <mjl@pkgsrc.org>2002-02-12 19:56:51 +0000
commit4d4dcca909944849344a37ec656d55ba35e68699 (patch)
tree4e6586c86c76e071f065928f634f6a002f124944 /lang/jikes
parenta0db7319fcf6ec5d439f7fa50d671dba41d67ef6 (diff)
downloadpkgsrc-4d4dcca909944849344a37ec656d55ba35e68699.tar.gz
Update jikes to 1.15
The primary objective of this release was bug fixes, not new features. Highlights of the release follow, see the ChangeLog for more detail and the code for even finer detail. Build - --enable-debug now works and provides correct CXXFLAGS - firend class issues brought into compliance with lang spec - VC++ enablement of __int64 for long long - tolerate non-ISO conformant encoding names when searching - correct namespace generation in java.g (so the parser won't regress every time we update the grammer again) - include jikesapi.h in the distribution (Note that this is at best a very early alpha preview) - prevent bad code generation by VC++ in IEEEfloat - finished removal of dead EBCDIC code - to be replaced by use of JikesAPI class latter Parser - remove some parenthesized expressions not allowed by JLS - synchronized(null){} isn't valid, don't allow it - prevent core dump when local class method omits return type - inner classes and static members error handling cleanup - fix assertion `this_type -> HeaderProcessed()' failures - don't allow invalid combinations of abstract, native and strictfp - don't allow qualified explicit this constructor - make sure string constants are compiled inline - fix assertion from NULL in SemanticError::Report - be more compliant with JLS 14.4.2 and scope of duplication of token - fix regression in 1.14 when ?: mixed primitive and reference types Emitter - reverse the logic of large branches to use goto_w and jsr_w for branch offsets requiring more than two bytes - never set ACC_STATIC bit on local classes - make sure private methods and anonymous classes are always final, and anonymous classes are never static. - second round of JPDA pampering; believed to make it happy now - prevent LocalVariableTable_attribute::AddLocalVariable assertion - fix VerifyErrors caused by reuse of local vars in try/catch and synchronized blocks User Interface - correct classpath handling issues on cygwin - treat @files as one argument per line, regardless of whitespace
Diffstat (limited to 'lang/jikes')
-rw-r--r--lang/jikes/Makefile4
-rw-r--r--lang/jikes/PLIST3
-rw-r--r--lang/jikes/distinfo9
-rw-r--r--lang/jikes/patches/patch-aa12
-rw-r--r--lang/jikes/patches/patch-ac10
5 files changed, 12 insertions, 26 deletions
diff --git a/lang/jikes/Makefile b/lang/jikes/Makefile
index 7c5af3883d7..0bf3a252240 100644
--- a/lang/jikes/Makefile
+++ b/lang/jikes/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.6 2001/05/16 10:05:35 agc Exp $
+# $NetBSD: Makefile,v 1.7 2002/02/12 19:56:51 mjl Exp $
#
-DISTNAME= jikes-1.14
+DISTNAME= jikes-1.15
CATEGORIES= lang
MASTER_SITES= http://oss.software.ibm.com/pub/jikes/
diff --git a/lang/jikes/PLIST b/lang/jikes/PLIST
index ee998c3b77c..ea7c2aa1f33 100644
--- a/lang/jikes/PLIST
+++ b/lang/jikes/PLIST
@@ -1,5 +1,6 @@
-@comment $NetBSD: PLIST,v 1.1 2001/11/01 00:23:54 zuntum Exp $
+@comment $NetBSD: PLIST,v 1.2 2002/02/12 19:56:51 mjl Exp $
bin/jikes
+include/jikesapi.h
man/man1/jikes.1
share/doc/html/jikes/license.htm
@dirrm share/doc/html/jikes
diff --git a/lang/jikes/distinfo b/lang/jikes/distinfo
index 524c5ab37a9..2b9830c3961 100644
--- a/lang/jikes/distinfo
+++ b/lang/jikes/distinfo
@@ -1,7 +1,6 @@
-$NetBSD: distinfo,v 1.2 2001/05/16 10:05:35 agc Exp $
+$NetBSD: distinfo,v 1.3 2002/02/12 19:56:51 mjl Exp $
-SHA1 (jikes-1.14.tar.gz) = 8bd8dfe9fc429952c653906ddafe1100ed75ea17
-Size (jikes-1.14.tar.gz) = 609326 bytes
-SHA1 (patch-aa) = 138e70dac39f5559edfa790ff334b8b738354b87
+SHA1 (jikes-1.15.tar.gz) = afa3be14c4d4c5ea4fbf004ad77814eff1cc1065
+Size (jikes-1.15.tar.gz) = 631246 bytes
SHA1 (patch-ab) = d83db5618d457decb04c1cfa2989ec50e7a84a3b
-SHA1 (patch-ac) = 8298cdce338dc40c3f063b8a8d4690f8a103b78a
+SHA1 (patch-ac) = 4b6cfaa1670c2b7adf250877608829c042d88468
diff --git a/lang/jikes/patches/patch-aa b/lang/jikes/patches/patch-aa
deleted file mode 100644
index 09480b08c25..00000000000
--- a/lang/jikes/patches/patch-aa
+++ /dev/null
@@ -1,12 +0,0 @@
-$NetBSD: patch-aa,v 1.2 2001/05/16 10:05:36 agc Exp $
-
---- configure.orig Fri May 11 07:28:30 2001
-+++ configure Wed May 16 09:51:31 2001
-@@ -3732,6 +3732,7 @@
- #line 3732 "configure"
- #include "confdefs.h"
- $ac_includes_default
-+#include <wchar.h>
- int
- main ()
- {
diff --git a/lang/jikes/patches/patch-ac b/lang/jikes/patches/patch-ac
index e4e970e008e..7b72e158c2a 100644
--- a/lang/jikes/patches/patch-ac
+++ b/lang/jikes/patches/patch-ac
@@ -1,10 +1,8 @@
-$NetBSD: patch-ac,v 1.1 2001/05/16 10:05:36 agc Exp $
-
---- src/double.h 2001/05/16 08:56:03 1.1
-+++ src/double.h 2001/05/16 08:56:55
+--- src/double.h.orig Sat Sep 29 03:12:19 2001
++++ src/double.h Tue Feb 12 20:28:29 2002
@@ -61,6 +61,8 @@
- #ifndef Double_INCLUDED
- #define Double_INCLUDED
+ #ifndef double_INCLUDED
+ #define double_INCLUDED
+#include <sys/param.h>
+