Stephan Kulow wrote: > > The problem is line 532 of configure which breaks on my system: > > > > if eval "test \"`echo '$''{'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then > > > > appearantly because ${ac_make} expands to make.3.71 which contains dots. > > > > No idea how to fix this.... > Copy and paste out of kdegraphics/configure :) Which leads to the following patch: Cheers, Waldo --- kpathsea/configure.old Mon Jul 26 17:55:59 1999 +++ kpathsea/configure Mon Jul 26 18:37:37 1999 @@ -517,7 +517,7 @@ echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6 -set dummy ${MAKE-make}; ac_make=$2 +set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else