--- configure.orig 2007-10-24 14:29:21.000000000 +0200 +++ configure 2007-10-24 14:29:29.000000000 +0200 @@ -64,7 +64,6 @@ LIBZ="-lz" INCPNG="" LIBPNG="-lpng" -QTDIR="/usr/qt/3 /usr/lib/qt3 /usr/lib/qt-3.3 /usr/share/qt3 /usr/lib64/qt-3.3 /usr/X11R6" KBUILDDIR="`cd \`dirname $0\`; pwd`/kBuild" DEVDIR="`cd \`dirname $0\`; pwd`/tools" if [ -d "/lib/modules/`uname -r`/build" ]; then @@ -189,8 +188,8 @@ echo "compiling the following source file:" >> $LOG cat .tmp_src.cc >> $LOG echo "using the following command line:" >> $LOG - echo "$CXX -O -Wall -o .tmp_out .tmp_src.cc \"$1\"" >> $LOG - $CXX -O -Wall -o .tmp_out .tmp_src.cc $1 >> $LOG 2>&1 + echo "$CXX -O -Wall -o .tmp_out .tmp_src.cc -L/usr/X11R6/lib \"$1\"" >> $LOG + $CXX -O -Wall -o .tmp_out .tmp_src.cc -L/usr/X11R6/lib $1 >> $LOG 2>&1 if [ $? -ne 0 ]; then if [ -z "$4" ]; then echo @@ -978,37 +977,26 @@ } EOF found_qt=0 - libs="lib" - [ "$LIB" = "lib64" ] && libs="$libs lib64" - for q in $QTDIR; do - for l in $libs; do - echo "compiling the following source file:" >> $LOG - cat .tmp_src.cc >> $LOG - echo "using the following command line:" >> $LOG - echo "$CXX -O -Wall -o .tmp_out .tmp_src.cc -I$q/include -L$q/$l -lqt-mt $LIBPTHREAD" >> $LOG - $CXX -O -Wall -o .tmp_out .tmp_src.cc -I$q/include -L$q/$l -lqt-mt $LIBPTHREAD >> $LOG 2>&1 - if [ $? -eq 0 ]; then - if test_execute; then - cnf_append "QTDIR" "`cd $q ; pwd`" - found_qt=1 - break - fi - fi - done - if [ $found_qt -eq 1 ]; then - break + echo "compiling the following source file:" >> $LOG + cat .tmp_src.cc >> $LOG + echo "using the following command line:" >> $LOG + echo "$CXX -O -Wall -o .tmp_out .tmp_src.cc -I/usr/include/qt -L/usr/lib -lqt-mt $LIBPTHREAD" >> $LOG + $CXX -O -Wall -o .tmp_out .tmp_src.cc -I/usr/include/qt -L/usr/lib -lqt-mt $LIBPTHREAD >> $LOG 2>&1 + if [ $? -eq 0 ]; then + if test_execute; then + found_qt=1 fi - done + fi if [ $found_qt -ne 1 ]; then echo - echo " Qt not found at \"$QTDIR\" or Qt headers not found" + echo " Qt not found or Qt headers not found" echo " Check the file $LOG for detailed error information." fail return 1 fi test_header "Qt devtools" - if check_avail "$q/bin/moc" QTDIR/bin; then - moc_ver=`$q/bin/moc 2>&1 -v|sed 's+^.*(Qt \(.*\))+\1+'` + if check_avail "/usr/bin/moc"; then + moc_ver=`/usr/bin/moc 2>&1 -v|sed 's+^.*(Qt \(.*\))+\1+'` if [ $? -ne 0 ]; then log_failure "not found" fail @@ -1226,7 +1214,6 @@ --with-iasl=PATH location of the iasl compiler [$IASL] --with-linux=DIR Linux kernel source directory [$LINUX] --with-mkisofs=PATH location of mkisofs [$MKISOFS] - --with-qt-dir=DIR directory for QT headers/libraries [$QTDIR] --with-xalan=LIB location of the xalan library [$LIBXALAN] --with-xalan-incdir=DIR location of the xalan headers [/usr/include /usr/local/include] --with-xalan-libdir=DIR location of the xalan library [/usr/lib /usr/local/lib] @@ -1268,9 +1255,6 @@ exit 1 fi ;; - --with-qt-dir=*) - QTDIR=`echo $option | cut -d'=' -f2` - ;; --with-iasl=*) IASL=`echo $option | cut -d'=' -f2` ;;