Do you have a PowerPC mac? That one is not included in the bluecove
library. It can be built from the source code see:
http://code.google.com/p/bluecove.
Contact me if you need more help.
Regards, Tom
- Tom
Just spoke with Robert. He has the same configuration (intel + OSX
10.5.2). He doesn't have problems.I don't have a clear reason why it
won't run. Here is what you can do:
1. LOCATING THE JNILIB
check that the native library is in the jar: "jar -tf
bluecove-2.0.2.jar". It should list something like libbluecove.jnilib.
This is the actual file it tries to load. If it is not there the
message is correct.
2. ANOTHER WAY OF LOADING JNILIB
if it's there it should be found by default by the bluecove library.
If not, you can try to extract this file. Add the directory it's in,
to your java library path.
extract: "jar -xf bluecove-2.0.2.jar libbluecove.jnilib"
add to path: "export JAVA_LIBRARY_PATH=$JAVA_LIBRARY_PATH:<dir where
the libbluecove.jnilib lives>"
if you extracted in the "lib" directory of the roomware dir then you should say:
"export JAVA_LIBRARY_PATH=$JAVA_LIBRARY_PATH:lib"
note: some java virtual machine versions inconsistantly (as I
understand...) the JAVA_LIBRARY_PATH variable. In this case you should
edit the run file and add to the java line:
"java -cp $CLASSPATH -Djava.library.path=<dir where the
libbluecove.jnilib lives> -DRoomWareConfig="conf/roomware.conf"
org.roomwareproject.server.impl.RoomWareServerImpl"
3. NO GOOD
if this doesn't work, there is a problem with bluecove I don't
understand. You can get help at code.google.com/p/bluecove .
Please tell me what happened. Regards, Tom