15 lines
470 B
Java
15 lines
470 B
Java
|
// 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@;
|
||
|
}
|