From 246b053811f4b2fc3187f593fc12b47187f2bad9 Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Tue, 8 Nov 2005 21:58:43 +0000 Subject: re PR libgcj/24587 (libgcj should set gnu.classpath.version system property) PR libgcj/24587: * gnu/classpath/SystemProperties.java: Set gnu.classpath.version. From-SVN: r106659 --- libjava/ChangeLog | 5 +++++ libjava/gnu/classpath/SystemProperties.java | 3 +++ 2 files changed, 8 insertions(+) (limited to 'libjava') diff --git a/libjava/ChangeLog b/libjava/ChangeLog index cceea20..4c54034 100644 --- a/libjava/ChangeLog +++ b/libjava/ChangeLog @@ -1,5 +1,10 @@ 2005-11-08 Tom Tromey + PR libgcj/24587: + * gnu/classpath/SystemProperties.java: Set gnu.classpath.version. + +2005-11-08 Tom Tromey + 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 46a9e6b..001663f 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", -- cgit v1.1