diff options
author | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-11-08 21:58:43 +0000 |
---|---|---|
committer | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-11-08 21:58:43 +0000 |
commit | 92eadcf1421d372d00f29abf58900aac1fd046c2 (patch) | |
tree | 8bc0f2b3a1278581c38b5a26c927ec1a06a57c30 /libjava | |
parent | b6ea71e9d82fb7aab049d02cdd3a302fa302c601 (diff) | |
download | gcc-92eadcf1421d372d00f29abf58900aac1fd046c2.tar.gz |
PR libgcj/24587:
* gnu/classpath/SystemProperties.java: Set gnu.classpath.version.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@106659 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava')
-rw-r--r-- | libjava/ChangeLog | 5 | ||||
-rw-r--r-- | libjava/gnu/classpath/SystemProperties.java | 3 |
2 files changed, 8 insertions, 0 deletions
diff --git a/libjava/ChangeLog b/libjava/ChangeLog index cceea20f5ca..4c54034980c 100644 --- a/libjava/ChangeLog +++ b/libjava/ChangeLog @@ -1,5 +1,10 @@ 2005-11-08 Tom Tromey <tromey@redhat.com> + PR libgcj/24587: + * gnu/classpath/SystemProperties.java: Set gnu.classpath.version. + +2005-11-08 Tom Tromey <tromey@redhat.com> + PR libgcj/23763. From aeby@graeff.com. * java/lang/natPosixProcess.cc (nativeSpawn): Unblock SIGCHLD before exec. diff --git a/libjava/gnu/classpath/SystemProperties.java b/libjava/gnu/classpath/SystemProperties.java index 46a9e6b5d9a..001663f0b71 100644 --- a/libjava/gnu/classpath/SystemProperties.java +++ b/libjava/gnu/classpath/SystemProperties.java @@ -70,6 +70,9 @@ public class SystemProperties { insertSystemProperties(defaultProperties); + defaultProperties.put("gnu.classpath.version", + Configuration.CLASSPATH_VERSION); + // Set base URL if not already set. if (defaultProperties.get("gnu.classpath.home.url") == null) defaultProperties.put("gnu.classpath.home.url", |