Re: required packages

2001-01-29 Thread Tom Tromey
> "Andy" == Andrew D Dixon <[EMAIL PROTECTED]> writes: Andy> I've been trying to compile some old programs that I wrote in Andy> college and when I invoke gcj: Andy> gcj myfirst.java Andy> I get the following errors: You don't mention what version of gcj you are using. Andy> myfirst.java:2:

Re: required packages

2001-01-29 Thread Benjamin Black
Andrew D Dixon wrote: myfirst.java:2: Class or interface `java.awt.Label' not found in import. import java.awt.Label; ^ myfirst.java:5: Superclass `Applet' of class `myfirst' not found. public class myfirst extends Applet{ ^ myfirst.java:6: Type `Label' not found

Re: required packages

2001-01-29 Thread Tom Tromey
> "Andy" == Andrew D Dixon <[EMAIL PROTECTED]> writes: Andy> I've been trying to compile some old programs that I wrote in Andy> college and when I invoke gcj: Andy> gcj myfirst.java Andy> I get the following errors: You don't mention what version of gcj you are using. Andy> myfirst.java:2:

Re: required packages

2001-01-29 Thread Benjamin Black
Andrew D Dixon wrote: > myfirst.java:2: Class or interface `java.awt.Label' not found in import. > > import java.awt.Label; >^ > myfirst.java:5: Superclass `Applet' of class `myfirst' not found. > public class myfirst extends Applet{ > ^ > myfirst.java:6: Typ