65,104c65,68
< if test x = "x$ASPELL"; then
<     ASPELL=aspell;
< fi
< 
< nok=false
< echo $ECHO_N "Finding aspell program ... $ECHO_C"
< if test -x "$ASPELL"; then
<     if "$ASPELL" --version 1> /dev/null 2>&1; then
< 	echo "$ASPELL"
<     else
< 	echo "not found"
< 	nok=true
<     fi
< else
<     echo "not found"
<     nok=true
< fi
< 
< if test x = "x$WORD_LIST_COMPRESS"; then
<     WORD_LIST_COMPRESS=word-list-compress;
< fi
< 
< 
< echo $ECHO_N "Finding word-list-compress program ... $ECHO_C"
< if test -x "$WORD_LIST_COMPRESS"; then
<     if "$WORD_LIST_COMPRESS" 1> /dev/null --version 2>&1; then
<         echo "$WORD_LIST_COMPRESS"
<     else
< 	# some word list compress have 1 return status on --version !!
< 	if test $? -eq 1; then
<             echo "$WORD_LIST_COMPRESS"
< 	else
<             echo "not found"
<             nok=true
< 	fi
<     fi
< else	    
<     echo "not found"
<     nok=true
< fi
---
> if test x = "x$ASPELL"
>   then ASPELL=aspell; fi
> if test x = "x$WORD_LIST_COMPRESS"
>   then WORD_LIST_COMPRESS=word-list-compress; fi
122,125d85
< 
< if $nok; then
<     echo "Some problem have been found, solve them and run again configure before running make" > /dev/stderr
< fi
