Added the function isFinite(), and replaced the calls to finite() with it.
This was necessary because finite() is not a standard function. Neither can
we use its standard counterpart isfinite(), because it was introduced only
in C99, and therefore it is not supplied by all C++ implementations.
4 export PATH=/usr/local/bin:$PATH
5 REPOSITORY=https://lemon.cs.elte.hu/svn/lemon/trunk
9 LASTREV_FILE=$ROOT/last-rev
10 LASTREV=`cat $LASTREV_FILE`
14 REV=`svn info $WORKINGCOPY|grep 'Revision:'|cut -f 2 -d ' '`
15 LOGFILE=${ROOT}/logs/${REV}.log
17 function make-dir () {
26 if [ $LASTREV -lt $REV ]; then
33 cp -r $WORKINGCOPY/doc/html latest-doc
34 echo $REV >$LASTREV_FILE
37 elif [ $1 = '--help' ]; then
39 echo ' doxymake --init'
40 echo ' doxymake --help'
43 elif [ $1 = '--init' ]; then
46 svn co $REPOSITORY $WORKINGCOPY
47 echo '0' >$LASTREV_FILE