summaryrefslogtreecommitdiff
path: root/gnu/classpath
diff options
context:
space:
mode:
authorBryce McKinlay <mckinlay@redhat.com>2001-09-05 07:20:43 +0000
committerBryce McKinlay <mckinlay@redhat.com>2001-09-05 07:20:43 +0000
commit3862ca0bce01e502c183fd9449ae1b5c03ed3f2e (patch)
tree1a406bad5a8319aaf7c0302194c3dbe3237a3074 /gnu/classpath
parent51e40506c309b128b3a760c36b713fdfa9f082fe (diff)
downloadclasspath-3862ca0bce01e502c183fd9449ae1b5c03ed3f2e.tar.gz
java/text/MessageFormat.java (setLocale): Don't catch ParseException here,
DecimalFormat.applyPattern() does not throw it. java/awt/Component.java (setLocation(Point)): Implemented. gnu/classpath/Configuration.java.in: Clarify comments.
Diffstat (limited to 'gnu/classpath')
-rw-r--r--gnu/classpath/Configuration.java.in19
1 files changed, 10 insertions, 9 deletions
diff --git a/gnu/classpath/Configuration.java.in b/gnu/classpath/Configuration.java.in
index 09aed1feb..0b8a6da38 100644
--- a/gnu/classpath/Configuration.java.in
+++ b/gnu/classpath/Configuration.java.in
@@ -35,20 +35,21 @@ public interface Configuration
/**
* The value of DEBUG is substituted according to whether the
* "--enable-debug" argument was passed to configure. Code
- * which is made conditional based on the value of this flag will
- * be removed by the optimizer in a non-debug build.
+ * which is made conditional based on the value of this flag - typically
+ * code that generates debugging output - will be removed by the optimizer
+ * in a non-debug build.
*/
boolean DEBUG = @LIBDEBUG@;
/**
* The value of LOAD_LIBRARY is substituted according to whether the
- * "--enable-load-library" argument was passed to configure. By
- * default, configure should define this is as true and typically a
- * user would use "--disable-load-library" to avert loading
- * libraries static initializers of all classes. Code which is made
- * conditional based on the value of this flag will be removed by
- * the optimizer in a non-debug build.
+ * "--enable-load-library" or "--disable-load-library" argument was passed
+ * to configure. By default, configure should define this is as true.
+ * If set to false, loadLibrary() calls to load native function
+ * implementations, typically found in static initializers of classes
+ * which contain native functions, will be omitted. This is useful for
+ * 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@;
-
}