Re: javac (jdk1.1.5) exiting without compiling

1998-08-22 Thread Zhichao Hong

Vanga:

I think you need to include the classes.zip in your class path as (if you
are not using csh):
"export CLASSPATH=/usr/local/jdk1.1.5/lib/classes.zip".  You need to do
this because
the class files of JDK is archieved or zipped in the classes.zip file.
You can NOT unzip
this file but include that zip file in the CLASSPATH.  I am pretty sure of
this.  Try it may help you.

Zhichao
Vanga Reddy wrote:

> I am trying to use jdk1.1.5 (jdk1.1.5-v5-libc5) on redhat 5.0.
> Compiler is exiting with error
> "Cannot find essential class 'java/lang/Object' in class library...
> aborting"
> I defined the CLASSPATH - /usr/local/jdk1.1.5/lib
> JAVA_HOME - /usr/local/jdk1.1.5 (jdk is unpacked here)
> LD_LIBRARY_PATH - /usr/lib:/usr/local/jdk1.1.5/lib/Linux/green_threads
> How can I get around this problem?
> Thanks
> --vpreddy
>
> __
> Get Your Private, Free Email at http://www.hotmail.com



--
=
Zhichao Hong   Tel: (507) 389-6704
Computer Science Departmente-mail: [EMAIL PROTECTED]
Mankato State University   http://krypton.mankato.msus.edu/~hongz
=




javac (jdk1.1.5) exiting without compiling

1998-08-22 Thread Vanga Reddy

I am trying to use jdk1.1.5 (jdk1.1.5-v5-libc5) on redhat 5.0.
Compiler is exiting with error
"Cannot find essential class 'java/lang/Object' in class library...
aborting"
I defined the CLASSPATH - /usr/local/jdk1.1.5/lib
JAVA_HOME - /usr/local/jdk1.1.5 (jdk is unpacked here)
LD_LIBRARY_PATH - /usr/lib:/usr/local/jdk1.1.5/lib/Linux/green_threads
How can I get around this problem?
Thanks
--vpreddy

__
Get Your Private, Free Email at http://www.hotmail.com



My reply to Bug 112 (now in known bugs)

1998-08-22 Thread Kevin B. Hendricks

Hi,
Did you receive my reply to Bug 112 (now in known bugs)?  Is this the same
error that caused you earlier error message?

Thanks,

Kevin

--
Kevin B. Hendricks
Associate Professor, Operations & Information Technology
School of Business, College of William & Mary
Williamsburg, VA 23187, [EMAIL PROTECTED]
http://business.tyler.wm.edu




ServerSocket Bug

1998-08-22 Thread Scott Jappinen

On your site you said,

ServerSockets may still have problems on occasion. If you can help by
providing an environment where the bug is reproduceable, please contact
me.

I am having this problem exactly...ie...sometimes it works, sometimes it
doesn't. All I know is that the code I'm working with works in Windows
NT, but does not work in Linux. And I hate working with NT, so I would
like it if this bug is zapped.

I am delighted to provide an "environment" where I can reproduce this
bug. I know the code that I'm dealing with, so if I can be of
assistance.

Sorry to post this if this problem is already being dealt with. I have
not been keeping up with the mailing list. Please tell me what is going
on with regard to this problem anyway.

Thank you,
Scott Jappinen

[EMAIL PROTECTED]

P.S. Because I am already trying to read so many mailing lists, please
make the subject noticable...or whatever.



Re: Survey: does this crash your compiler?

1998-08-22 Thread Paul Ho

Well using JDK1.1.6v3 on Linux it doesn't crash, just an error:
sun.tools.java.CompilerError: stackSize null

gjc 0.6g compile the code with no error.

pizza 0.39g give the following error:
DieNow.java:5: class 'null not found in class DieNow.$anonymous_class0
Panel death = new Panel (null){
  ^
1 error


At 6:26 PM -0700 8/21/98, Dustin Lang wrote:
>Hi,
>
>I've found the miracle handful of lines of code that crash two out of
>three compilers I could find *grin*

>import java.awt.*;
>
>public class DieNow {
>public DieNow () {
>Panel death = new Panel (null){
>public Insets getInsets () {
>return new Insets (6,6,6,6);
>}
>};
>}
>}