summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorSimon Hausmann <simon.hausmann@nokia.com>2010-06-23 07:56:42 (GMT)
committerSimon Hausmann <simon.hausmann@nokia.com>2010-06-23 07:57:58 (GMT)
commit4221d629e2cf37ee8c5ba7cb595b05ab8c82f113 (patch)
treed5ff265350a3b48e124bff4a1d384c97e427fbd9 /configure
parent6cef89c6442d06934c3545919e6b8283b3d8d1a4 (diff)
downloadQt-4221d629e2cf37ee8c5ba7cb595b05ab8c82f113.zip
Qt-4221d629e2cf37ee8c5ba7cb595b05ab8c82f113.tar.gz
Qt-4221d629e2cf37ee8c5ba7cb595b05ab8c82f113.tar.bz2
Removed support for static linking of QtWebKit.
Static linking of WebKit is not going to be supported anymore in Qt 4.7, so this commit makes sure it's mentioned in the documentation and that configure disables WebKit if static linking of Qt is requested. Reviewed-by: Andy Shaw <qt-info@nokia.com>
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure6
1 files changed, 6 insertions, 0 deletions
diff --git a/configure b/configure
index f61ac6c..5d97405 100755
--- a/configure
+++ b/configure
@@ -6937,6 +6937,12 @@ if [ "$CFG_GUI" = "no" ]; then
canBuildWebKit="no"
fi
+if [ "$CFG_SHARED" = "no" ]; then
+ echo
+ echo "WARNING: Using static linking will disable the WebKit module."
+ echo
+ canBuildWebKit="no"
+fi
CFG_CONCURRENT="yes"
if [ "$canBuildQtConcurrent" = "no" ]; then