View | Details | Raw Unified | Return to bug 88562
Collapse All | Expand All

(-)gnu/classpath/Configuration.java.in (-6 / +6 lines)
Lines 49-62 Link Here
49
   * the argument for --prefix given to configure and used to set the
49
   * the argument for --prefix given to configure and used to set the
50
   * System property gnu.classpath.home.
50
   * System property gnu.classpath.home.
51
   */
51
   */
52
  String CLASSPATH_HOME = "@prefix@";
52
  String CLASSPATH_HOME = "/usr/local/classpath";
53
53
54
  /**
54
  /**
55
   * The release version number of GNU Classpath.
55
   * The release version number of GNU Classpath.
56
   * It is set according to the value of 'version' in the configure[.in] file
56
   * It is set according to the value of 'version' in the configure[.in] file
57
   * and used to set the System property gnu.classpath.version.
57
   * and used to set the System property gnu.classpath.version.
58
   */
58
   */
59
  String CLASSPATH_VERSION = "@VERSION@";
59
  String CLASSPATH_VERSION = "0.14";
60
60
61
  /**
61
  /**
62
   * The value of DEBUG is substituted according to whether the
62
   * The value of DEBUG is substituted according to whether the
Lines 65-71 Link Here
65
   * code that generates debugging output - will be removed by the optimizer 
65
   * code that generates debugging output - will be removed by the optimizer 
66
   * in a non-debug build.
66
   * in a non-debug build.
67
   */
67
   */
68
  boolean DEBUG = @LIBDEBUG@;
68
  boolean DEBUG = false;
69
69
70
  /**
70
  /**
71
   * The value of LOAD_LIBRARY is substituted according to whether the
71
   * The value of LOAD_LIBRARY is substituted according to whether the
Lines 77-83 Link Here
77
   * runtimes which pre-link their native function implementations and do
77
   * runtimes which pre-link their native function implementations and do
78
   * not require additional shared libraries to be loaded.
78
   * not require additional shared libraries to be loaded.
79
   */
79
   */
80
  boolean INIT_LOAD_LIBRARY = @INIT_LOAD_LIBRARY@;
80
  boolean INIT_LOAD_LIBRARY = true;
81
81
82
  /**
82
  /**
83
   * Set to true if the VM provides a native method to implement
83
   * Set to true if the VM provides a native method to implement
Lines 121-131 Link Here
121
   * 
121
   * 
122
   */
122
   */
123
  boolean JAVA_LANG_SYSTEM_EXPLICIT_INITIALIZATION = 
123
  boolean JAVA_LANG_SYSTEM_EXPLICIT_INITIALIZATION = 
124
	  @JAVA_LANG_SYSTEM_EXPLICIT_INITIALIZATION@;
124
	  false;
125
125
126
  /**
126
  /**
127
   * Set to true if Cairo was found and enabled during configure,
127
   * Set to true if Cairo was found and enabled during configure,
128
   * false otherwise.
128
   * false otherwise.
129
   */
129
   */
130
  boolean GTK_CAIRO_ENABLED = @GTK_CAIRO_ENABLED@;
130
  boolean GTK_CAIRO_ENABLED = false;
131
}
131
}

Return to bug 88562