Hello, david@capac:/usr/local/src/kawa/svn 14 $ svn update Updating '.': At revision 8603. The configure step seems ok [see config.log attach for full details], but reports some minor problems: david@capac:/usr/local/src/kawa/svn 16 $ ./configure --prefix=/opt checking whether to enable maintainer-specific portions of Makefiles... no ... config.status: creating Makefile chmod: cannot access 'bin/qexo': No such file or directory config.status: creating gnu/bytecode/Makefile chmod: cannot access 'bin/qexo': No such file or directory config.status: creating gnu/math/Makefile chmod: cannot access 'bin/qexo': No such file or directory config.status: creating gnu/Makefile chmod: cannot access 'bin/qexo': No such file or directory config.status: creating bin/kawa.sh chmod: cannot access 'bin/qexo': No such file or directory config.status: creating bin/qexo config.status: creating gnu/kawa/servlet/Makefile config.status: creating gnu/brl/Makefile ... The make fails, see below Cheers, David david@capac:/usr/local/src/kawa/svn 2 $ make test -f ./.svn/entries \ && SVN_REVISION=`cd . && svnversion 2>/dev/null` \ && test -n "$SVN_REVISION" \ && SVN_REVISION=" (revision ${SVN_REVISION})"; \ sed -e 's|VERSION|2.0.1'"$SVN_REVISION|" <./kawa/Version.java.in >kawa/Version.java current java-source is ok Making all in doc make[1]: Entering directory '/usr/local/src/kawa/svn/doc' nroff -man ./kawa.man > tpm-kawa.1 mv tpm-kawa.1 kawa.1 nroff -man ./qexo.man > tpm-qexo1 mv tpm-qexo1 qexo.1 make[1]: Leaving directory '/usr/local/src/kawa/svn/doc' Making all in testsuite make[1]: Entering directory '/usr/local/src/kawa/svn/testsuite' make[1]: Nothing to be done for 'all'. make[1]: Leaving directory '/usr/local/src/kawa/svn/testsuite' Making all in gnu/bytecode make[1]: Entering directory '/usr/local/src/kawa/svn/gnu/bytecode' javac -d ../.. -classpath "../..:./../..:$CLASSPATH" -g Access.java AnnotationDefaultAttr.java AnnotationEntry.java Attribute.java AttrContainer.java ObjectType.java ArrayType.java ClassType.java ConstantPool.java CpoolClass.java CpoolEntry.java CpoolInvokeDynamic.java CpoolValue1.java CpoolValue2.java CpoolNameAndType.java CpoolMethodHandle.java CpoolMethodType.java CpoolRef.java CpoolString.java CpoolUtf8.java EnclosingMethodAttr.java ExitableBlock.java Filter.java Location.java Field.java Label.java IfState.java TryState.java SwitchState.java Member.java Method.java CodeAttr.java ConstantValueAttr.java LineNumbersAttr.java LocalVarsAttr.java InnerClassesAttr.java MiscAttr.java ParameterizedType.java PrimType.java RuntimeAnnotationsAttr.java Scope.java SignatureAttr.java SourceDebugExtAttr.java SourceFileAttr.java SpecialObjectType.java StackMapTableAttr.java Type.java UninitializedType.java Variable.java VarEnumerator.java TypeVariable.java ZipArchive.java ZipLoader.java ArrayClassLoader.java ClassFileInput.java ClassTypeWriter.java ExceptionsAttr.java dump.java ListCodeSize.java /usr/local/src/kawa/svn/gnu/bytecode/AnnotationEntry.java:10: error: The import javax.lang cannot be resolved import javax.lang.model.element.*; ^^^^^^^^^^ /usr/local/src/kawa/svn/gnu/bytecode/AnnotationEntry.java:29: warning: Type safety: The method getAnnotation(Class) belongs to the raw type Class. References to generic type Class should be parameterized Annotation retention = getAnnotationType().getReflectClass() .getAnnotation(Retention.class); ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ /usr/local/src/kawa/svn/gnu/bytecode/AnnotationEntry.java:43: warning: Type safety: The method getAnnotation(Class) belongs to the raw type Class. References to generic type Class should be parameterized Annotation target = getAnnotationType().getReflectClass() .getAnnotation(Target.class); ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ /usr/local/src/kawa/svn/gnu/bytecode/AnnotationEntry.java:49: warning: Unnecessary cast from ElementType[] to ElementType[] ElementType[] etypes = (ElementType[]) ((Target) target).value(); ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ /usr/local/src/kawa/svn/gnu/bytecode/AnnotationEntry.java:97: warning: Unnecessary cast from Object to String val = (String) val; ^^^^^^^^^^^^ /usr/local/src/kawa/svn/gnu/bytecode/AnnotationEntry.java:103: warning: Unnecessary cast from Object to Type val = (Type) val; ^^^^^^^^^^ /usr/local/src/kawa/svn/gnu/bytecode/AnnotationEntry.java:105: warning: Class is a raw type. References to generic type Class should be parameterized val = Type.make((Class) val); ^^^^^ /usr/local/src/kawa/svn/gnu/bytecode/AnnotationEntry.java:114: warning: Unnecessary cast from InvocationHandler to AnnotationEntry val = (AnnotationEntry) Proxy.getInvocationHandler(val); ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ /usr/local/src/kawa/svn/gnu/bytecode/AnnotationEntry.java:145: warning: Unnecessary cast from Class to Class return (Class) annotationType.getReflectClass(); ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ /usr/local/src/kawa/svn/gnu/bytecode/AnnotationEntry.java:258: error: AnnotationValue cannot be resolved to a type implements AnnotationValue ^^^^^^^^^^^^^^^ /usr/local/src/kawa/svn/gnu/bytecode/AnnotationEntry.java:303: warning: Type safety: Unchecked cast from Object to List (List) value; ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ /usr/local/src/kawa/svn/gnu/bytecode/AnnotationEntry.java:305: warning: Class is a raw type. References to generic type Class should be parameterized Class eltype = type.getReflectClass().getComponentType(); ^^^^^ /usr/local/src/kawa/svn/gnu/bytecode/AnnotationEntry.java:331: warning: Enum is a raw type. References to generic type Enum should be parameterized Class eclas = clas.asSubclass(Enum.class); ^^^^ /usr/local/src/kawa/svn/gnu/bytecode/AnnotationEntry.java:332: warning: Enum is a raw type. References to generic type Enum should be parameterized Enum val = Enum.valueOf(eclas, name); ^^^^ /usr/local/src/kawa/svn/gnu/bytecode/AnnotationEntry.java:332: warning: Type safety: Unchecked invocation valueOf(Class, String) of the generic method valueOf(Class, String) of type Enum Enum val = Enum.valueOf(eclas, name); ^^^^^^^^^^^^^^^^^^^^^^^^^ /usr/local/src/kawa/svn/gnu/bytecode/AnnotationEntry.java:345: error: AnnotationValueVisitor cannot be resolved to a type public R accept(AnnotationValueVisitor v, P p) ^^^^^^^^^^^^^^^^^^^^^^ /usr/local/src/kawa/svn/gnu/bytecode/AnnotationEntry.java:359: warning: Type safety: Unchecked cast from Object to List return v.visitArray((List) value, p); ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ /usr/local/src/kawa/svn/gnu/bytecode/AnnotationEntry.java:359: error: AnnotationValue cannot be resolved to a type return v.visitArray((List) value, p); ^^^^^^^^^^^^^^^ /usr/local/src/kawa/svn/gnu/bytecode/AnnotationEntry.java:424: warning: Type safety: Unchecked cast from Object to List List vals = (List) value; ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ /usr/local/src/kawa/svn/gnu/bytecode/AnnotationEntry.java:450: warning: Enum is a raw type. References to generic type Enum should be parameterized Enum evalue = (Enum) value; ^^^^ /usr/local/src/kawa/svn/gnu/bytecode/AnnotationEntry.java:450: warning: Enum is a raw type. References to generic type Enum should be parameterized Enum evalue = (Enum) value; ^^^^ /usr/local/src/kawa/svn/gnu/bytecode/ObjectType.java:85: warning: Class is a raw type. References to generic type Class should be parameterized public static Class getContextClass (String cname) ^^^^^ /usr/local/src/kawa/svn/gnu/bytecode/ObjectType.java:110: warning: Class is a raw type. References to generic type Class should be parameterized public Class getReflectClass() ^^^^^ /usr/local/src/kawa/svn/gnu/bytecode/ObjectType.java:135: warning: The value of the parameter name is not used public Field getField(String name, int mask) ^^^^ /usr/local/src/kawa/svn/gnu/bytecode/ObjectType.java:135: warning: The value of the parameter mask is not used public Field getField(String name, int mask) ^^^^ /usr/local/src/kawa/svn/gnu/bytecode/ObjectType.java:147: warning: Vector is a raw type. References to generic type Vector should be parameterized Vector result, String context) ^^^^^^ /usr/local/src/kawa/svn/gnu/bytecode/ObjectType.java:147: warning: The value of the parameter context is not used Vector result, String context) ^^^^^^^ /usr/local/src/kawa/svn/gnu/bytecode/ObjectType.java:149: warning: Type safety: The expression of type Vector needs unchecked conversion to conform to List return getMethods(filter, searchSupers, result); ^^^^^^ /usr/local/src/kawa/svn/gnu/bytecode/ObjectType.java:177: warning: Class is a raw type. References to generic type Class should be parameterized Class clas = getReflectClass(); ^^^^^ /usr/local/src/kawa/svn/gnu/bytecode/ObjectType.java:178: warning: Class is a raw type. References to generic type Class should be parameterized Class objClass = obj.getClass(); ^^^^^ /usr/local/src/kawa/svn/gnu/bytecode/ArrayType.java:64: warning: Class is a raw type. References to generic type Class should be parameterized public Class getReflectClass() { ^^^^^ /usr/local/src/kawa/svn/gnu/bytecode/ArrayType.java:68: warning: Class is a raw type. References to generic type Class should be parameterized Class elClass = elements.getReflectClass(); ^^^^^ /usr/local/src/kawa/svn/gnu/bytecode/ArrayType.java:133: warning: The declared exception ObjectStreamException is not actually thrown by the method readResolve() from type ArrayType public Object readResolve() throws ObjectStreamException { ^^^^^^^^^^^^^^^^^^^^^ /usr/local/src/kawa/svn/gnu/bytecode/ClassType.java:205: warning: Class is a raw type. References to generic type Class should be parameterized Class clas = getReflectClass(); ^^^^^ /usr/local/src/kawa/svn/gnu/bytecode/ClassType.java:208: warning: Class is a raw type. References to generic type Class should be parameterized Class dclas; ^^^^^ /usr/local/src/kawa/svn/gnu/bytecode/ClassType.java:221: warning: Constructor is a raw type. References to generic type Constructor should be parameterized java.lang.reflect.Constructor rcons = clas.getEnclosingConstructor(); ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ /usr/local/src/kawa/svn/gnu/bytecode/ClassType.java:240: warning: Class is a raw type. References to generic type Class should be parameterized Class clas = getReflectClass(); ^^^^^ /usr/local/src/kawa/svn/gnu/bytecode/ClassType.java:242: warning: Class is a raw type. References to generic type Class should be parameterized Class[] memberClasses = clas.getClasses(); ^^^^^ /usr/local/src/kawa/svn/gnu/bytecode/ClassType.java:398: warning: TypeVariable is a raw type. References to generic type TypeVariable should be parameterized java.lang.reflect.TypeVariable[] rparams ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ /usr/local/src/kawa/svn/gnu/bytecode/ClassType.java:416: warning: The field Type.pointer_type is deprecated setSuper(name == null ? Type.pointer_type : ClassType.make(name)); ^^^^^^^^^^^^ /usr/local/src/kawa/svn/gnu/bytecode/ClassType.java:452: warning: Class is a raw type. References to generic type Class should be parameterized Class[] reflectInterfaces = reflectClass.getInterfaces(); ^^^^^ /usr/local/src/kawa/svn/gnu/bytecode/ClassType.java:659: warning: Class is a raw type. References to generic type Class should be parameterized Class clas = getReflectClass(); ^^^^^ /usr/local/src/kawa/svn/gnu/bytecode/ClassType.java:755: warning: Class is a raw type. References to generic type Class should be parameterized Class[] paramTypes = method.getParameterTypes(); ^^^^^ /usr/local/src/kawa/svn/gnu/bytecode/ClassType.java:767: warning: Constructor is a raw type. References to generic type Constructor should be parameterized public Method addMethod (java.lang.reflect.Constructor method) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ /usr/local/src/kawa/svn/gnu/bytecode/ClassType.java:769: warning: Class is a raw type. References to generic type Class should be parameterized Class[] paramTypes = method.getParameterTypes(); ^^^^^ /usr/local/src/kawa/svn/gnu/bytecode/ClassType.java:793: warning: Class is a raw type. References to generic type Class should be parameterized Class[] parameterClasses = method.getParameterTypes(); ^^^^^ /usr/local/src/kawa/svn/gnu/bytecode/ClassType.java:817: warning: Vector is a raw type. References to generic type Vector should be parameterized Vector vec = new Vector(); ^^^^^^ /usr/local/src/kawa/svn/gnu/bytecode/ClassType.java:817: warning: Vector is a raw type. References to generic type Vector should be parameterized Vector vec = new Vector(); ^^^^^^ /usr/local/src/kawa/svn/gnu/bytecode/ClassType.java:818: warning: Type safety: The expression of type Vector needs unchecked conversion to conform to List getMethods(filter, searchSupers, vec); ^^^ /usr/local/src/kawa/svn/gnu/bytecode/ClassType.java:836: warning: Type safety: The expression of type Vector needs unchecked conversion to conform to Vector Vector vec = new Vector(); ^^^^^^^^^^^^ /usr/local/src/kawa/svn/gnu/bytecode/ClassType.java:836: warning: Vector is a raw type. References to generic type Vector should be parameterized Vector vec = new Vector(); ^^^^^^ /usr/local/src/kawa/svn/gnu/bytecode/ClassType.java:1063: warning: Class is a raw type. References to generic type Class should be parameterized public synchronized void addMethods(Class clas) ^^^^^ /usr/local/src/kawa/svn/gnu/bytecode/ClassType.java:1089: warning: Constructor is a raw type. References to generic type Constructor should be parameterized java.lang.reflect.Constructor[] cmethods; ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ /usr/local/src/kawa/svn/gnu/bytecode/ClassType.java:1101: warning: Constructor is a raw type. References to generic type Constructor should be parameterized java.lang.reflect.Constructor method = cmethods[i]; ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ /usr/local/src/kawa/svn/gnu/bytecode/ClassType.java:1111: warning: Vector is a raw type. References to generic type Vector should be parameterized java.util.Vector matches = new java.util.Vector(10); ^^^^^^^^^^^^^^^^ /usr/local/src/kawa/svn/gnu/bytecode/ClassType.java:1111: warning: Vector is a raw type. References to generic type Vector should be parameterized java.util.Vector matches = new java.util.Vector(10); ^^^^^^^^^^^^^^^^ /usr/local/src/kawa/svn/gnu/bytecode/ClassType.java:1124: warning: Type safety: The method addElement(Object) belongs to the raw type Vector. References to generic type Vector should be parameterized matches.addElement(method); ^^^^^^^^^^^^^^^^^^^^^^^^^^ /usr/local/src/kawa/svn/gnu/bytecode/ClassType.java:1460: warning: The static field ObjectType.EXISTING_CLASS should be accessed directly flags |= ClassType.EXISTING_CLASS; ^^^^^^^^^^^^^^ /usr/local/src/kawa/svn/gnu/bytecode/ClassType.java:1463: warning: The declared exception ObjectStreamException is not actually thrown by the method readResolve() from type ClassType public Object readResolve() throws ObjectStreamException ^^^^^^^^^^^^^^^^^^^^^ /usr/local/src/kawa/svn/gnu/bytecode/ClassType.java:1473: warning: Unnecessary cast from Type to Type Type found = (Type) map.get(name); ^^^^^^^^^^^^^^^^^^^^ /usr/local/src/kawa/svn/gnu/bytecode/Field.java:82: warning: The value of the parameter classfile is not used void write(DataOutputStream dstr, ClassType classfile) ^^^^^^^^^ /usr/local/src/kawa/svn/gnu/bytecode/Label.java:37: warning: The value of the parameter code is not used public Label (CodeAttr code) ^^^^ /usr/local/src/kawa/svn/gnu/bytecode/Label.java:145: warning: Type safety: Unchecked cast from Object to ArrayList