At 12:32 PM 12/14/98 PST, Ernest Friedman-Hill wrote:
>Hi Dan,
>
>Thanks, this is interesting. I looked at the source to see what could
>possibly cause this message, and I came up wioth a likely candidate:
>the file jess/Tokenizer.java has an explicit "import jess.*" in it -
>perhaps this class started life outside the jess package, I don't
>recall. See if fixing that makes the messages go away!
>
>I think Dan Larner wrote:
>> 
>> Just an FYI:
>> Jess 5.0a1 builds/runs fine using Microsoft's SDK for Java 3.1
>> (Visual J++ 6 compatible), although a lot of  
>>   "warning J5005: Package 'jess' was already implicitly imported"
>> occur during the compile.
>...

Yes, I commented out the line in jess/Tokenizer.java, and it now
builds without any warnings from that.  

In rebuilding and looking more closely, I also noticed that I also 
get a similar warning for jess/view/Graph.java
jess/view/Graph.java contains the following line twice:

        import java.awt.event.*;


BTW: for Microsoft, the compiler is called jvc, and a /O is
needed instead of a -O.
In the Makefile might want to try something like:

# Use these lines for Win32, using Javasoft tools nmake
#DS=\\
#RM=del
#JAVAC = javac
#JAVAFLAGS= -O -deprecation 

# Use these lines for Win32, using Microsoft tools nmake
DS=\\
RM=del
JAVAC = jvc
JAVAFLAGS= /O 

# Use these line for UNIX 
#DS=/
#RM=rm -rf
#JAVAC = javac
#JAVAFLAGS= -O -deprecation 

.java.class :
    $(JAVAC)  $(JAVAFLAGS)  $<


-- Dan


Dan Larner, [EMAIL PROTECTED]
Xerox PARC, 3333 Coyote Hill Rd., Palo Alto, CA, USA 94304

---------------------------------------------------------------------
To unsubscribe, send the words 'unsubscribe jess-users [EMAIL PROTECTED]'
in the BODY of a message to [EMAIL PROTECTED], NOT to the
list. List problems? Notify [EMAIL PROTECTED]
---------------------------------------------------------------------

Reply via email to