summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Wielaard <mark@klomp.org>2002-02-09 00:42:42 +0000
committerMark Wielaard <mark@klomp.org>2002-02-09 00:42:42 +0000
commit76a61329a2fbb27f12a46f585092d661521522cb (patch)
tree4f44ae809947ff3a931f36e630fa796c3cad03b9
parent3b70d2c0150b6490f883df6c02ecb54b723c1546 (diff)
downloadclasspath-76a61329a2fbb27f12a46f585092d661521522cb.tar.gz
* java/security/BasicPermission.java: extends with fully qualified
classname as workaround for gcj 3.0.4. * doc/www.gnu.org/announce/20020208.wml: grammar fix.
-rw-r--r--ChangeLog7
-rw-r--r--doc/www.gnu.org/announce/20020208.wml2
-rw-r--r--java/security/BasicPermission.java5
3 files changed, 11 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 531679586..968f27f8c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2002-02-07 Mark Wielaard <mark@klomp.org>
+
+ * java/security/BasicPermission.java: extends with fully qualified
+ classname as workaround for gcj 3.0.4.
+
+ * doc/www.gnu.org/announce/20020208.wml: grammar fix.
+
2002-02-07 C. Brian Jones <cbj@gnu.org>
* configure.in: fixed broken make dist by moving some of the checks
diff --git a/doc/www.gnu.org/announce/20020208.wml b/doc/www.gnu.org/announce/20020208.wml
index f1aef6d21..0c9c912ea 100644
--- a/doc/www.gnu.org/announce/20020208.wml
+++ b/doc/www.gnu.org/announce/20020208.wml
@@ -99,7 +99,7 @@ More information on the current status of each package can be found at
<en>
GNU Classpath requires a working GNU build environment and a byte code
compiler such as jikes, gcj or kjc. When creating native code you will
-also need a working C compiler and a recent Gnome development libraries
+also need a working C compiler and up to date Gnome development libraries
(gtk+, libart and gdk-pixbuf). More information on the precise version
numbers for the tools and libraries can be found in the INSTALL file.
</en>
diff --git a/java/security/BasicPermission.java b/java/security/BasicPermission.java
index 20f12734a..7e7d09db8 100644
--- a/java/security/BasicPermission.java
+++ b/java/security/BasicPermission.java
@@ -61,8 +61,9 @@ import java.util.Enumeration;
*
* @author Aaron M. Renn (arenn@urbanophile.com)
*/
-public abstract class BasicPermission extends Permission implements
- Serializable
+public abstract class BasicPermission extends java.security.Permission
+ implements Serializable
+ // FIXME extends with fully qualified classname as workaround for gcj 3.0.4
{
/**
* This method initializes a new instance of <code>BasicPermission</code>