--- gnu/classpath/Configuration.java.in 2005-02-25 13:45:39.000000000 +0100 +++ gnu/classpath/Configuration.java 2005-03-19 01:32:51.794393272 +0100 @@ -49,14 +49,14 @@ * the argument for --prefix given to configure and used to set the * System property gnu.classpath.home. */ - String CLASSPATH_HOME = "@prefix@"; + String CLASSPATH_HOME = "/usr/local/classpath"; /** * The release version number of GNU Classpath. * It is set according to the value of 'version' in the configure[.in] file * and used to set the System property gnu.classpath.version. */ - String CLASSPATH_VERSION = "@VERSION@"; + String CLASSPATH_VERSION = "0.14"; /** * The value of DEBUG is substituted according to whether the @@ -65,7 +65,7 @@ * code that generates debugging output - will be removed by the optimizer * in a non-debug build. */ - boolean DEBUG = @LIBDEBUG@; + boolean DEBUG = false; /** * The value of LOAD_LIBRARY is substituted according to whether the @@ -77,7 +77,7 @@ * runtimes which pre-link their native function implementations and do * not require additional shared libraries to be loaded. */ - boolean INIT_LOAD_LIBRARY = @INIT_LOAD_LIBRARY@; + boolean INIT_LOAD_LIBRARY = true; /** * Set to true if the VM provides a native method to implement @@ -121,11 +121,11 @@ * */ boolean JAVA_LANG_SYSTEM_EXPLICIT_INITIALIZATION = - @JAVA_LANG_SYSTEM_EXPLICIT_INITIALIZATION@; + false; /** * Set to true if Cairo was found and enabled during configure, * false otherwise. */ - boolean GTK_CAIRO_ENABLED = @GTK_CAIRO_ENABLED@; + boolean GTK_CAIRO_ENABLED = false; }