diff options
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 20 |
1 files changed, 10 insertions, 10 deletions
@@ -2489,19 +2489,19 @@ if [ -n "$CFG_QWS_DEPTHS" -a "$PLATFORM_QWS" = "yes" ]; then esac done if [ -z "$D4" ]; then - QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_QWS_DEPTH_4" + QCONFIG_FLAGS="$QCONFIG_FLAGS TQT_NO_QWS_DEPTH_4" fi if [ -z "$D8" ]; then - QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_QWS_DEPTH_8" + QCONFIG_FLAGS="$QCONFIG_FLAGS TQT_NO_QWS_DEPTH_8" fi if [ -z "$D16" ]; then - QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_QWS_DEPTH_16" + QCONFIG_FLAGS="$QCONFIG_FLAGS TQT_NO_QWS_DEPTH_16" fi if [ -z "$D24" ]; then - QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_QWS_DEPTH_24" + QCONFIG_FLAGS="$QCONFIG_FLAGS TQT_NO_QWS_DEPTH_24" fi if [ -z "$D32" ]; then - QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_QWS_DEPTH_32" + QCONFIG_FLAGS="$QCONFIG_FLAGS TQT_NO_QWS_DEPTH_32" fi fi @@ -2592,7 +2592,7 @@ else fi [ "$CFG_PRECOMPILE" = "yes" ] && QMAKE_CONFIG="$QMAKE_CONFIG precompile_header" if [ "$CFG_IPV6" = "no" ]; then - QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_IPV6" + QCONFIG_FLAGS="$QCONFIG_FLAGS TQT_NO_IPV6" else QMAKE_CONFIG="$QMAKE_CONFIG ipv6" fi @@ -2657,7 +2657,7 @@ if [ "x$PLATFORM_MAC" = "xyes" ]; then fi if [ "$CFG_ZLIB" = "no" ]; then QMAKE_CONFIG="$QMAKE_CONFIG no-zlib" - QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_COMPRESS" + QCONFIG_FLAGS="$QCONFIG_FLAGS TQT_NO_COMPRESS" elif [ "$CFG_ZLIB" = "yes" ]; then QMAKE_CONFIG="$QMAKE_CONFIG zlib" elif [ "$CFG_ZLIB" = "system" ]; then @@ -2708,12 +2708,12 @@ if [ "$PLATFORM_X11" = "yes" ]; then if [ "$CFG_IM" = "yes" ]; then QMAKE_CONFIG="$QMAKE_CONFIG inputmethod" elif [ "$CFG_IM" = "no" ]; then - QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_IM" + QCONFIG_FLAGS="$QCONFIG_FLAGS TQT_NO_IM" fi if [ "$CFG_IM_EXT" = "yes" ]; then QMAKE_CONFIG="$QMAKE_CONFIG inputmethod-ext" elif [ "$CFG_IM_EXT" = "no" ]; then - QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_IM_EXTENSIONS" + QCONFIG_FLAGS="$QCONFIG_FLAGS TQT_NO_IM_EXTENSIONS" fi elif [ "$PLATFORM_MAC" = "yes" ]; then if [ "$CFG_TABLET" = "yes" ]; then @@ -3033,7 +3033,7 @@ STRIPPED=`echo $QMVAR | sed 's,^",,' | sed 's,"$,,'` if [ "$VSTYLE" = "yes" ]; then if [ "$VNO" = "yes" ]; then NOSTYLE=`echo $STRIPPED | tr '[:lower:]' '[:upper:]'` - QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_STYLE_$NOSTYLE" + QCONFIG_FLAGS="$QCONFIG_FLAGS TQT_NO_STYLE_$NOSTYLE" VSTYLE=no VNO=no else |