Changeset 769 for trunk/configure
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
/branches/vendor/nokia/qt/4.6.3 (added) merged: 768 /branches/vendor/nokia/qt/current merged: 767 /branches/vendor/nokia/qt/4.6.2 removed
- Property svn:mergeinfo changed
-
trunk/configure
r651 r769 174 174 UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown 175 175 176 # detect the "echo without newline" style. usage: echo $ECHO_N "<string>$ECHO_C" 177 if echo '\c' | grep '\c' >/dev/null; then 178 ECHO_N=-n 179 else 180 ECHO_C='\c' 181 fi 176 182 177 183 #------------------------------------------------------------------------------- … … 400 406 if [ -z "$LicenseKeyExt" ]; then 401 407 echo 402 if echo '\c' | grep '\c' >/dev/null; then 403 echo -n "Please enter your license key: " 404 else 405 echo "Please enter your license key: \c" 406 fi 408 echo $ECHO_N "Please enter your license key: $ECHO_C" 407 409 read LicenseKeyExt 408 410 Licensee="Unknown user" … … 3370 3372 debugging turned on (Mac only). 3371 3373 3372 -developer-build .... Compile and link Qt with Qt developer options (including auto-tests exporting)3373 3374 -opensource ......... Compile and link the Open-Source Edition of Qt.3375 -commercial ......... Compile and link the Commercial Edition of Qt.3374 -developer-build ... Compile and link Qt with Qt developer options (including auto-tests exporting) 3375 3376 -opensource ........ Compile and link the Open-Source Edition of Qt. 3377 -commercial ........ Compile and link the Commercial Edition of Qt. 3376 3378 3377 3379 … … 3766 3768 freetype.h and libfreetype. 3767 3769 3768 $XIN -no-xinput .......... Do not compile Xinput support.3770 $XIN -no-xinput ......... Do not compile Xinput support. 3769 3771 $XIY -xinput ............ Compile Xinput support. This also enabled tablet support 3770 3772 which requires IRIX with wacom.h and libXi or … … 3967 3969 echo "Type 'no' to decline this license offer." 3968 3970 echo 3969 if echo '\c' | grep '\c' >/dev/null; then 3970 echo -n "Do you accept the terms of $affix license? " 3971 else 3972 echo "Do you accept the terms of $affix license? \c" 3973 fi 3971 echo $ECHO_N "Do you accept the terms of $affix license? $ECHO_C" 3974 3972 read acceptance 3975 3973 fi … … 4002 4000 echo "Type 'no' to decline this license offer." 4003 4001 echo 4004 if echo '\c' | grep '\c' >/dev/null; then 4005 echo -n "Do you accept the terms of the license? " 4006 else 4007 echo "Do you accept the terms of the license? \c" 4008 fi 4002 echo $ECHO_N "Do you accept the terms of the license? $ECHO_C" 4009 4003 read acceptance 4010 4004 fi … … 4092 4086 echo "Type 'no' to decline this license offer." 4093 4087 echo 4094 if echo '\c' | grep '\c' >/dev/null; then 4095 echo -n "Do you accept the terms of the $TheLicense? " 4096 else 4097 echo "Do you accept the terms of the $TheLicense? \c" 4098 fi 4088 echo $ECHO_N "Do you accept the terms of the $TheLicense? $ECHO_C" 4099 4089 read acceptance 4100 4090 fi … … 7391 7381 7392 7382 if [ "$OPT_VERBOSE" = "yes" ]; then 7393 if echo '\c' | grep '\c' >/dev/null; then 7394 echo -n "qmake vars .......... " 7395 else 7396 echo "qmake vars .......... \c" 7397 fi 7383 echo $ECHO_N "qmake vars .......... $ECHO_C" 7398 7384 cat "$QMAKE_VARS_FILE" | tr '\n' ' ' 7399 7385 echo "qmake switches ...... $QMAKE_SWITCHES" … … 7558 7544 fi 7559 7545 echo "OpenSSL support ..... $CFG_OPENSSL $OPENSSL_LINKAGE" 7546 echo "Alsa support ........ $CFG_ALSA" 7547 echo 7560 7548 7561 7549 [ "$CFG_PTMALLOC" != "no" ] && echo "Use ptmalloc ........ $CFG_PTMALLOC" … … 7582 7570 echo 7583 7571 fi 7584 echo "alsa support ........ $CFG_ALSA"7585 echo7586 7572 7587 7573 sepath=`echo "$relpath" | sed -e 's/\\./\\\\./g'` … … 7772 7758 fi 7773 7759 QMAKE_SPEC_ARGS="-spec $SPEC" 7774 if echo '\c' | grep '\c' >/dev/null; then 7775 echo -n " for $a" 7776 else 7777 echo " for $a\c" 7778 fi 7760 echo $ECHO_N " for $a$ECHO_C" 7779 7761 7780 7762 QMAKE="$outpath/bin/qmake" 7781 7763 QMAKE_ARGS="$QMAKE_SWITCHES $QMAKE_SPEC_ARGS" 7782 7764 if [ "$file" = ".projects.3" ]; then 7783 if echo '\c' | grep '\c' >/dev/null; then 7784 echo -n " (fast)" 7785 else 7786 echo " (fast)\c" 7787 fi 7788 echo 7765 echo " (fast)" 7789 7766 7790 7767 cat >"${OUTDIR}/Makefile" <<EOF
Note:
See TracChangeset
for help on using the changeset viewer.