jar.c
Nathan Lutchansky
Nathan_Lutchansky at legis.state.ak.us
Thu Jul 2 15:33:28 PDT 1998
Cygnus does that pain-in-the-neck translation with text/binary files.
Most UNIX systems don't support the O_BINARY flag, so this is probably
something that should go into the config script. If this is patched into
the source distribution, the rest of the code needs to be checked for any
open()s that need to be changed also. Of course, this may screw up any
classes/functions that expect only a newline at the end of each line. Is
this an issue in the java.io.* classes? -Nathan
On Thu, 2 Jul 1998, Charlie McDowell wrote:
>
> On Tue, 30 Jun 1998, Charlie McDowell wrote:
>
> > I'm trying to debug 10.1 on NT. Where can I find out the format of the
> > classes.zip file? There appears to be some problem reading it. The
> > ...
>
> I found the problem. In openJarFile in jar.c, change the open
>
> file->fp = open(name, O_RDONLY , 0)
>
> to
>
> file->fp = open(name, O_RDONLY | O_BINARY, 0)
>
> Can the appropriate person please integrate this fix into the next
> release? I've not submitted a patch before and am not familiar with the
> procedure.
>
> Charlie McDowell, Professor (408) 459-4772 (w)
> Computer Science Department (408) 427-2076 (h)
> 239 Applied Sciences (408) 459-4829 (fax)
> Univ. of Calif., Santa Cruz, CA 95064 http://www.cse.ucsc.edu/~charlie
>
>
>
More information about the kaffe
mailing list