aboutsummaryrefslogtreecommitdiff
path: root/libjava/gnu/classpath/Configuration.java.in
diff options
context:
space:
mode:
Diffstat (limited to 'libjava/gnu/classpath/Configuration.java.in')
-rw-r--r--libjava/gnu/classpath/Configuration.java.in14
1 files changed, 14 insertions, 0 deletions
diff --git a/libjava/gnu/classpath/Configuration.java.in b/libjava/gnu/classpath/Configuration.java.in
new file mode 100644
index 0000000..7f4a90e
--- /dev/null
+++ b/libjava/gnu/classpath/Configuration.java.in
@@ -0,0 +1,14 @@
+// This file defines compile-time constants that can be accessed by java code.
+// It is pre-processed by configure.
+
+package gnu.classpath;
+
+public interface Configuration
+{
+ // The value of DEBUG is substituted according to whether the
+ // "--enable-libgcj-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.
+
+ boolean DEBUG = @LIBGCJDEBUG@;
+}