Hello,
I have begun with downloading all in Wiki recommended *.jar files. Have installed a new json.jar as well and it is ok.
Now I run
with following results:
Any ideas what went wrong?
I have begun with downloading all in Wiki recommended *.jar files. Have installed a new json.jar as well and it is ok.
Now I run
cvs -d server:anonymous@www.open-xchange.com:/var/lib/cvs co open-xchange
cd /tmp/open-xchange
ant -Dlib.dir=/opt/open-xchange/lib install
cd /tmp/open-xchange
ant -Dlib.dir=/opt/open-xchange/lib install
compile:
[javac] Compiling 983 source files to /tmp/open-xchange/build
[javac] /tmp/open-xchange/src/com/openexchange/groupware/container/mail/parser/MessageDumper.java:80: cannot find symbol
[javac] symbol : class ContactHandler
[javac] location: package net.freeutils.tnef.mime
[javac] import net.freeutils.tnef.mime.ContactHandler;
[javac] ^
[javac] /tmp/open-xchange/src/com/openexchange/groupware/container/mail/parser/MessageDumper.java:82: cannot find symbol
[javac] symbol : class ReadReceiptHandler
[javac] location: package net.freeutils.tnef.mime
[javac] import net.freeutils.tnef.mime.ReadReceiptHandler;
[javac] ^
[javac] /tmp/open-xchange/src/com/openexchange/groupware/container/mail/parser/MessageDumper.java:354: cannot find symbol
[javac] symbol : variable ContactHandler
[javac] location: class com.openexchange.groupware.container.mail.parser.M essageDumper
[javac] final Multipart mp = ContactHandler.convert(message);
[javac] ^
[javac] /tmp/open-xchange/src/com/openexchange/groupware/container/mail/parser/MessageDumper.java:370: cannot find symbol
[javac] symbol : variable ReadReceiptHandler
[javac] location: class com.openexchange.groupware.container.mail.parser.M essageDumper
[javac] final Multipart mp = ReadReceiptHandler.convert(message);
[javac] ^
[javac] Note: Some input files use or override a deprecated API.
[javac] Note: Recompile with -Xlint:deprecation for details.
[javac] Note: Some input files use unchecked or unsafe operations.
[javac] Note: Recompile with -Xlint:unchecked for details.
[javac] 4 errors
[javac] Compiling 983 source files to /tmp/open-xchange/build
[javac] /tmp/open-xchange/src/com/openexchange/groupware/container/mail/parser/MessageDumper.java:80: cannot find symbol
[javac] symbol : class ContactHandler
[javac] location: package net.freeutils.tnef.mime
[javac] import net.freeutils.tnef.mime.ContactHandler;
[javac] ^
[javac] /tmp/open-xchange/src/com/openexchange/groupware/container/mail/parser/MessageDumper.java:82: cannot find symbol
[javac] symbol : class ReadReceiptHandler
[javac] location: package net.freeutils.tnef.mime
[javac] import net.freeutils.tnef.mime.ReadReceiptHandler;
[javac] ^
[javac] /tmp/open-xchange/src/com/openexchange/groupware/container/mail/parser/MessageDumper.java:354: cannot find symbol
[javac] symbol : variable ContactHandler
[javac] location: class com.openexchange.groupware.container.mail.parser.M essageDumper
[javac] final Multipart mp = ContactHandler.convert(message);
[javac] ^
[javac] /tmp/open-xchange/src/com/openexchange/groupware/container/mail/parser/MessageDumper.java:370: cannot find symbol
[javac] symbol : variable ReadReceiptHandler
[javac] location: class com.openexchange.groupware.container.mail.parser.M essageDumper
[javac] final Multipart mp = ReadReceiptHandler.convert(message);
[javac] ^
[javac] Note: Some input files use or override a deprecated API.
[javac] Note: Recompile with -Xlint:deprecation for details.
[javac] Note: Some input files use unchecked or unsafe operations.
[javac] Note: Recompile with -Xlint:unchecked for details.
[javac] 4 errors
Comment