changes for wheelmouse auto-detect, and incorporating video

This commit is contained in:
benfry
2003-04-29 15:52:30 +00:00
parent 4ddb6ae7a8
commit ff73b7bbad
10 changed files with 124 additions and 34 deletions

View File

@@ -4,6 +4,18 @@ for older releases will be super crusty. caution: the beverage you're
about to enjoy is extremely hot.
ABOUT REV 0055 -
- sort functions for arrays of ints, floats, doubles or Strings
here's how it works for floats:
float a[] = { 3.4, 3.6, 2, 0, 7.1 };
sort(a);
for (int i = 0; i < a.length; i++) {
println(a[i]);
}
ABOUT REV 0054 - 11 april 2003
[ ok, so 53 was a bit of a dog ]

Binary file not shown.

View File

@@ -3,4 +3,4 @@
REM --- if you need more ram, change the 64m (which means
REM --- 64 megabytes) to something higher.
java -ms64m -mx64m -cp lib;lib\build;lib\pde.jar;lib\kjc.jar;lib\oro.jar;lib\comm.jar PdeBase
java -ms64m -mx64m -cp lib;lib\build;lib\pde.jar;lib\kjc.jar;lib\oro.jar;lib\comm.jar;c:\winnt\system32\qtjava.zip;c:\windows\system32\qtjava.zip PdeBase

View File

@@ -119,14 +119,16 @@ BOOL CLauncherApp::InitInstance()
*/
sprintf(cp,
"-cp \""
"%s\\lib;"
"%s\\lib\\build;"
"%s\\lib\\pde.jar;"
"-cp \""
"%s\\lib;"
"%s\\lib\\build;"
"%s\\lib\\pde.jar;"
"%s\\lib\\kjc.jar;"
"%s\\lib\\oro.jar;"
"%s\\lib\\comm.jar;"
"\" ",
"C:\\WINNT\\system32\\QTJava.zip;"
"C:\\WINDOWS\\system32\\QTJava.zip;"
"\" ",
loaddir, loaddir, loaddir, loaddir, loaddir, loaddir);
//sprintf(cp, "-cp ");

View File

@@ -58,11 +58,23 @@ fi
cd bagel
CLASSPATH=../build/windows/work/java/lib/rt.jar:../build/windows/work/java/lib/ext/comm.jar
if test -d /cygdrive/c/WINNT
then
# windows 2000 or nt
QT_JAVA_PATH=/cygdrive/c/WINNT/system32/QTJava.zip
else
# other versions of windows, including xp
QT_JAVA_PATH=/cygdrive/c/WINDOWS/system32/QTJava.zip
fi
# another alternative
#QT_JAVA_PATH=../build/shared/lib/qtjava.zip
CLASSPATH=../build/windows/work/java/lib/rt.jar:../build/windows/work/java/lib/ext/comm.jar:${QT_JAVA_PATH}
### --- make version with serial for the application
echo Building bagel with serial support
perl make.pl SERIAL
echo Building bagel with serial and video support
perl make.pl SERIAL VIDEO
cp classes/*.class ../build/windows/work/classes/
### --- make version without serial for applet exporting

View File

@@ -1,2 +1,14 @@
#!/bin/sh
cd work && ./java/bin/java -cp lib\;lib\\build\;lib\\pde.jar\;lib\\kjc.jar\;lib\\oro.jar\;java\\lib\\ext\\comm.jar PdeBase
if test -d /cygdrive/c/WINNT
then
# windows 2000 or nt
QT_JAVA_PATH=\\cygdrive\\c\\WINNT\\system32\\QTJava.zip
else
# other versions of windows, including xp
QT_JAVA_PATH=\\cygdrive\\c\\WINDOWS\\system32\\QTJava.zip
fi
# another alternative
#QT_JAVA_PATH=..\\build\\shared\\lib\\qtjava.zip
cd work && ./java/bin/java -cp lib\;lib\\build\;lib\\pde.jar\;lib\\kjc.jar\;lib\\oro.jar\;java\\lib\\ext\\comm.jar\;${QT_JAVA_PATH} PdeBase