Okey, thx a lot.. this helped
Now I get A LOT of error about unresolved symbols
compile:
[javac] Compiling 436 source files to U:\DEVEL\JAVA\guess.tmp
\build
[javac] U:\DEVEL\JAVA\guess.tmp\src\com\hp\hpl\guess\piccolo
\JpegImagesToMov
ie.java:7: package javax.media does not exist
[javac] import javax.media.*;
[javac] ^
[javac] U:\DEVEL\JAVA\guess.tmp\src\com\hp\hpl\guess\piccolo
\JpegImagesToMov
ie.java:8: package javax.media.control does not exist
[javac] import javax.media.control.*;
[javac] ^
[javac] U:\DEVEL\JAVA\guess.tmp\src\com\hp\hpl\guess\piccolo
\JpegImagesToMov
ie.java:9: package javax.media.protocol does not exist
[javac] import javax.media.protocol.*;
[javac] ^
I have jdk-1.5 at my disposal, also I downloaded
jmf-2_1_1e-alljava.zip and added some of *.jar into lib/
What else I need?
On Jun 6, 6:04 pm, Eytan Adar <
eytana...@gmail.com> wrote:
> You will need to do this regardless of whether you use ant, eclipse,
> makefiles, or manually compile every file, and I'm really not sure what the
> hard part is.
>
> step 1) download JavaCC (
https://javacc.dev.java.net/files/documents/17/117794/javacc-4.2.zip) or
> whatever the newest version is on (
https://javacc.dev.java.net/)
>
> step 2) extract the stuff from the zip, put it wherever you want
>
> step 3) take note of where the "bin" directory of JavaCC ends up. Mine is
> c:\java\javacc\bin yours might be c:\java\javacc\javacc4.2\bin or
> c:\java\magical\directory\bin
>
> step 4) modify build.xml, find the _two_ places that set the avacchome
> variable and set those to the directory that _contains_ the bin directory
> (just look for c:\\java\\javac), so yours might be:
>
> c:\\java\\javacc or c:\\java\\javacc\\javacc4.2 or
> c:\\java\\magical\\directory
>
> (note the double slashes)
>
> step 5) enjoy
>