diff options
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -3124,7 +3124,7 @@ EOF for MODULE in $MODULES; do if [ -d "$relpath/src/$MODULE" ]; then M=`echo $MODULE | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'` - echo "#define QT_MODULE_$M" >>$outpath/include/ntqmodules.h.new + echo "#define TQT_MODULE_$M" >>$outpath/include/ntqmodules.h.new fi done @@ -3138,7 +3138,7 @@ else fi #------------------------------------------------------------------------------- -# generate QT_BUILD_KEY +# generate TQT_BUILD_KEY #------------------------------------------------------------------------------- # some compilers generate binary incompatible code between different versions, @@ -3275,7 +3275,7 @@ for build_option in $D_FLAGS; do done # sort the compile time defines (helps ensure that changes in this configure -# script don't affect the QT_BUILD_KEY generation) +# script don't affect the TQT_BUILD_KEY generation) if [ -f .options ]; then for opt in `sort -f .options | uniq`; do BUILD_OPTIONS="$BUILD_OPTIONS $opt" @@ -3284,9 +3284,9 @@ fi rm -f .options BUILD_OPTIONS="$BUILD_CONFIG $BUILD_OPTIONS" -QT_BUILD_KEY="$CFG_USER_BUILD_KEY $UNAME_MACHINE $UNAME_SYSTEM $COMPILER $BUILD_OPTIONS" +TQT_BUILD_KEY="$CFG_USER_BUILD_KEY $UNAME_MACHINE $UNAME_SYSTEM $COMPILER $BUILD_OPTIONS" # strip out leading/trailing/extra whitespace -QT_BUILD_KEY=`echo $QT_BUILD_KEY | sed -e "s, *, ,g" -e "s,^ *,," -e "s, *$,,"` +TQT_BUILD_KEY=`echo $TQT_BUILD_KEY | sed -e "s, *, ,g" -e "s,^ *,," -e "s, *$,,"` #------------------------------------------------------------------------------- # part of configuration information goes into ntqconfig.h @@ -3309,7 +3309,7 @@ cat >> $outpath/include/ntqconfig.h.new <<EOF #define QT_PRODUCT_LICENSE "$Products" /* Build key */ -#define QT_BUILD_KEY "$QT_BUILD_KEY" +#define TQT_BUILD_KEY "$TQT_BUILD_KEY" /* Machine byte-order */ #define Q_BIG_ENDIAN 4321 |