libtool-version: Catch up by incrementing current.
* libtool-version: Catch up by incrementing current. * configure.host: Disable use of GCJ_PROPERTIES for mips-tx39. * configure, include/config.h.in: Rebuilt. * acconfig.h (DISABLE_GETENV_PROPERTIES): Undefine. * configure.in: Added --disable-getenv-properties and new define `DISABLE_GETENV_PROPERTIES'. * prims.cc (PROCESS_GCJ_PROPERTIES): Define. (next_property_key): New function. (next_property_value): New function. (process_gcj_properties): New function. (JvRunMain): Call process_gcj_properties. (_JvRunMain): Ditto. * java/lang/natSystem.cc (init_properties): Set properties defined in GCJ_PROPERTIES. Also add 1.2 style versioning properties. * include/java-props.h: New file. * java/lang/natSystem.cc (init_properties): Add new properties to conform with Java Product Versioning Specification. From-SVN: r30007
This commit is contained in:
parent
7901f53f77
commit
ffccc6bee2
10 changed files with 494 additions and 213 deletions
15
libjava/include/java-props.h
Normal file
15
libjava/include/java-props.h
Normal file
|
@ -0,0 +1,15 @@
|
|||
// java-props.h - Properties -*- c++ -*-
|
||||
|
||||
#ifndef __JAVA_PROPS_H__
|
||||
#define __JAVA_PROPS_H__
|
||||
|
||||
typedef struct
|
||||
{
|
||||
char *key;
|
||||
size_t key_length;
|
||||
char *value;
|
||||
size_t value_length;
|
||||
} property_pair;
|
||||
|
||||
#endif
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue