Hi, the configure test is broken to automatically detect Qt. Please apply the patch. Dirk
Index: acinclude.m4 =================================================================== RCS file: /cvsroot/avifile/avifile-0.6/acinclude.m4,v retrieving revision 1.14 diff -u -3 -r1.14 acinclude.m4 --- acinclude.m4 2001/09/05 18:33:01 1.14 +++ acinclude.m4 2001/09/12 23:32:09 @@ -383,7 +383,7 @@ qt_libdir=NONE for dir in $qt_libdirs; do try="ls -1 $dir/libqt.* $dir/libqt-mt.*" - if test=`eval $try 2> /dev/null`; then qt_libdir=$dir; break; else echo "tried $dir" >&AC_FD_CC ; fi + if test -n "`$try 2> /dev/null`"; then qt_libdir=$dir; break; else echo "tried +$dir" >&AC_FD_CC ; fi done dnl AC_FIND_FILE(libqt.so libqt.so.1.40 libqt.so.1.41 libqt.so.1 libqt.a libqt.sl, $qt_libdirs, qt_libdir)
