From be9a52f844dca45090fbcc660efeb26b2afb4a5a Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Fri, 9 Jun 2006 00:15:35 +0000 Subject: gcj.texi (libgcj Runtime Properties): Document gnu.gcj.user.realname. gcc/java * gcj.texi (libgcj Runtime Properties): Document gnu.gcj.user.realname. libjava * gnu/classpath/natSystemProperties.cc (insertSystemProperties): Set gnu.gcj.user.realname. From-SVN: r114500 --- libjava/ChangeLog | 5 +++++ libjava/gnu/classpath/natSystemProperties.cc | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) (limited to 'libjava') diff --git a/libjava/ChangeLog b/libjava/ChangeLog index b9b30da..b08cf78 100644 --- a/libjava/ChangeLog +++ b/libjava/ChangeLog @@ -1,3 +1,8 @@ +2006-06-08 Tom Tromey + + * gnu/classpath/natSystemProperties.cc (insertSystemProperties): + Set gnu.gcj.user.realname. + 2006-06-09 Andreas Tobler * scripts/jar.in: Replace hardcoded /bin/sh with @SHELL@. diff --git a/libjava/gnu/classpath/natSystemProperties.cc b/libjava/gnu/classpath/natSystemProperties.cc index 2a39e07..9f77a17 100644 --- a/libjava/gnu/classpath/natSystemProperties.cc +++ b/libjava/gnu/classpath/natSystemProperties.cc @@ -1,7 +1,7 @@ // natSystemProperties.cc - Implementation of native side of // SystemProperties class. -/* Copyright (C) 2005 Free Software Foundation +/* Copyright (C) 2005, 2006 Free Software Foundation This file is part of libgcj. @@ -250,6 +250,7 @@ gnu::classpath::SystemProperties::insertSystemProperties (java::util::Properties { SET ("user.name", pwd_entry->pw_name); SET ("user.home", pwd_entry->pw_dir); + SET ("gnu.gcj.user.realname", pwd_entry->pw_gecos); } #endif /* HAVE_PWD_H */ #endif /* NO_GETUID */ -- cgit v1.1