You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@xalan.apache.org by bu...@apache.org on 2002/04/18 20:46:38 UTC

DO NOT REPLY [Bug 8272] New: - Visual Age reports compile error in org.apache.xalan.xsltc.compiler.XSLTC.outputToJar()

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=8272>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=8272

Visual Age reports compile error in org.apache.xalan.xsltc.compiler.XSLTC.outputToJar()

           Summary: Visual Age reports compile error in
                    org.apache.xalan.xsltc.compiler.XSLTC.outputToJar()
           Product: XalanJ2
           Version: CurrentCVS
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: Minor
          Priority: Other
         Component: org.apache.xalan.xsltc
        AssignedTo: xalan-dev@xml.apache.org
        ReportedBy: ms53@inf.tu-dresden.de


IBM's Visual Age (or more specifically the jikes compiler) does not compile 
line 688 in org.apache.xalan.xsltc.compiler.XSLTC.outputToJar().

Changing the line from

atrs.put(java.util.jar.Attributes.Name.MANIFEST_VERSION,"1.0");

to

atrs.put(java.util.jar.Attributes$Name.MANIFEST_VERSION,"1.0");

works with both the Sun JDK Compiler and Visual Age. So I suggest to change it.