aboutsummaryrefslogtreecommitdiff
path: root/libjava/gnu/classpath/Configuration.java.in
blob: 7f4a90e6aa7b203dcfdef7992615b6f63c6e47f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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@;
}