|
I downloaded the cvs version of JSci and fixed the ^Z characters
in the java files but am getting a large number of compiler errors
such as a missing Double2Vector class. Should the cvs version be
buildable? I have much better luck with the latest release verson
source code after excluding the telescope (no javax.comm package) and
doclet packages.
thanks,
rob
by the way, I removed the ^Z characters on linux with
find -name "*.java" -exec rmctrlZ {} \;
----- rmctrlZ ------
#! /bin/bash
#
# remove the ctrl-Z from a file
#
perl -ne 'exit(1) if (/\x1a/)' $1
if [ $? -eq 1 ]
then
echo $1
perl -i -pe 's/\x1a//g' $1
fi
|