summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorPasi Pentikainen <pasi.a.pentikainen@nokia.com>2011-11-29 17:45:27 +0200
committerPasi Pentikainen <pasi.a.pentikainen@nokia.com>2011-11-29 17:46:45 +0200
commit20a154ffc3afacdbc22d00a3c4dd0a2916a14e33 (patch)
tree998fe2f427bebe5d7cad02f51bf0ef02c8131e0e /configure
parentacaffe068f75161f6dd14ecbb0408cdf4c8fc287 (diff)
Symbian-linux crosscompilation configuration align
Change the configure-sh on Symbian linux crosscompilation to set rtti. Reviewed-by: Oswald Buddenhagen Task-number: QTBUG-14361
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure5
1 files changed, 3 insertions, 2 deletions
diff --git a/configure b/configure
index 37c306d73f..5a5ef1d683 100755
--- a/configure
+++ b/configure
@@ -7443,9 +7443,10 @@ if [ "$CFG_EXCEPTIONS" != "no" ]; then
QTCONFIG_CONFIG="$QTCONFIG_CONFIG exceptions"
fi
-if [ "$XPLATFORM_MINGW" = "yes" ]; then
+if [ "$XPLATFORM_MINGW" = "yes" ] || [ "$XPLATFORM_SYMBIAN" = "yes" ]; then
# mkspecs/features/win32/default_pre.prf sets "no-rtti".
- # Follow default behavior of configure.exe by overriding with "rtti".
+ # Follow default behavior of configure.exe by overriding with "rtti"
+ # (also on Symbian).
QTCONFIG_CONFIG="$QTCONFIG_CONFIG rtti"
fi