Changeset 2665 in vbox
- Timestamp:
- May 16, 2007 1:11:42 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/configure
r2572 r2665 54 54 INCPNG="" 55 55 LIBPNG="-lpng" 56 QTDIR="/usr/qt/3 /usr/lib/qt3 /usr/lib/qt-3.3 /usr/share/qt3 "56 QTDIR="/usr/qt/3 /usr/lib/qt3 /usr/lib/qt-3.3 /usr/share/qt3 /usr/lib64/qt-3.3" 57 57 KBUILDDIR="`cd $(dirname $0); pwd`/kBuild" 58 58 DEVDIR="`cd $(dirname $0); pwd`/tools" … … 856 856 ' > .tmp_src.cc 857 857 found_qt=0 858 libs="lib" 859 [ "$LIB" = "lib64" ] && libs="$libs lib64" 858 860 for q in $QTDIR; do 859 echo "compiling the following source file:" >> $LOG 860 cat .tmp_src.cc >> $LOG 861 echo "using the following command line:" >> $LOG 862 echo "$CXX -O -Wall -o .tmp_out .tmp_src.cc -I$q/include -L$q/$LIB -lqt-mt" >> $LOG 861 for l in $libs; do 862 echo "compiling the following source file:" >> $LOG 863 cat .tmp_src.cc >> $LOG 864 echo "using the following command line:" >> $LOG 865 echo "$CXX -O -Wall -o .tmp_out .tmp_src.cc -I$q/include -L$q/$l -lqt-mt" >> $LOG 863 866 864 $CXX -O -Wall -o .tmp_out .tmp_src.cc -I$q/include -L$q/$LIB -lqt-mt >> $LOG 2>&1 865 if (($?==0)); then 866 if test_execute; then 867 cnf_append "QTDIR" `cd $q ; pwd` 868 found_qt=1 869 break 867 $CXX -O -Wall -o .tmp_out .tmp_src.cc -I$q/include -L$q/$l -lqt-mt >> $LOG 2>&1 868 if (($?==0)); then 869 if test_execute; then 870 cnf_append "QTDIR" `cd $q ; pwd` 871 found_qt=1 872 break 873 fi 870 874 fi 871 fi875 done 872 876 done 873 877 if (($found_qt!=1)); then
Note:
See TracChangeset
for help on using the changeset viewer.