[EMAIL PROTECTED] wrote:
> 
> How to edit the makefile in the vnet package so that it will work 
> under MS window?  Thanks!

the makefile was designed for Unix, however, with some modifications
it will work if you use the make that comes with the Cygnus-Win32 
tools.  see:

        http://sourceware.cygnus.com/cygwin/

you will have to change the -classpath line to point to the correct
java files (see below).  the other alternative is to build the 
distribution "by hand".  create a batch file that does basically 
the following (for the client):

        javac -classpath <blah> EAISceneInterface.java 

where <blah> points to the netscape and cosmo java classes.  i'm
not in front of a windows machine right now, but it was something
like (on one line)

C:\<netscape install dir>\java\classes\java40.jar;
C:\<cosmo install dir>\npcosmop.zip

similarly, for the other versions of the client, use:

        javac -classpath <blah> JSAISceneInterface.java
        javac -classpath <blah> TextSceneInterface.java

for the server, simply "javac VSystem.java" should work (it doesn't
need any other files).

i do *not* recommend setting the CLASSPATH environment variable,
since, although this will work for compilation, it may confuse 
VRML browser at runtime, especially if you have more than one
installed.

if you can't get it working with these instructions, let me know
and i'll get the Makefile i used under Windows.

stephen

-- 
                                                       stephen f. white
                                                    [EMAIL PROTECTED]
                              http://www.csclub.uwaterloo.ca/u/sfwhite/
                      i'm not a complete idiot; some parts are missing.

Reply via email to