You will have to be more precise in description of your problem. From
what I understand from your description is that you are using Ant tool
to build Java files. And the errror that is occurring is within some
header file which I suppose is a C/C++ header file, and not a .java
file. Ant is a generic tool to build almost anything. You can think it
of as a replacement of make tool. It accepts a .xml file as input which
contains the description of the build task. As far as I know the code
that is being built is somehow related to Java Native Interface (which
is basically an API which allows Java code to access operate with
code/library written in other languages like C,C++ or assembly. To know
more about it just visit the link below and that will clear you of any
doubt that if you are using JNI or not.
http://java.sun.com/docs/books/tutor...tep/index.html
It would be more easy to tell what's the problem if you tell what is
that you are trying to build. you can also try posting to mailing list
of the system that you are trying to build.
hope that helps,
Divick