Joel E. Denny wrote:
> Now I get this from configure:
>
> checking for Java virtual machine... gij
> configure: WARNING: unknown target-version , please update gt_JAVACOMP macro
> checking for Java compiler... no
> checking for Java virtual machine... (cached) (cached) gij
Might be an installation problem with your gij or gcj. What does the
following Java program print if you compile it with gcj -C and run it with
gij?
============================= conftestver.java =============================
public class conftestver {
public static void main (String[] args) {
System.out.println(System.getProperty("java.specification.version"));
}
}
============================================================================