summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2018-10-17 19:46:30 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2018-10-17 19:46:30 +0900
commit69d87202cb139ffe9e4b3ce92e434523b7b09b64 (patch)
tree7b133311a4d5e5394f2612dced305f815c04847b /configure
parente07baa10b7b8e7105e02a621efadac67216c61ed (diff)
downloadtqt3-69d87202cb139ffe9e4b3ce92e434523b7b09b64.tar.gz
tqt3-69d87202cb139ffe9e4b3ce92e434523b7b09b64.zip
QT_NO_* -> TQT_NO_* renaming.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure20
1 files changed, 10 insertions, 10 deletions
diff --git a/configure b/configure
index 3f89314b..86b92f94 100755
--- a/configure
+++ b/configure
@@ -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