diff options
-rw-r--r-- | Tools/qmake/mkspecs/features/features.prf | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Tools/qmake/mkspecs/features/features.prf b/Tools/qmake/mkspecs/features/features.prf index d8bbfd2b6..8d1054159 100644 --- a/Tools/qmake/mkspecs/features/features.prf +++ b/Tools/qmake/mkspecs/features/features.prf @@ -48,10 +48,10 @@ defineTest(detectFeatures) { # We can't use Qt's 3rdparty sources for libjpeg and libpng outside of qtbase, but if Qt # is using the system libraries, use them to take advantage of the WebCore image decoders as well. contains(QT_CONFIG, system-jpeg): WEBKIT_CONFIG += use_libjpeg - else: CONFIGURE_WARNINGS += "JPEG library not found, QImageDecoder will decode JPEG images" + else: CONFIGURE_WARNINGS += "Qt not configured to use system libjpeg, QImageDecoder will decode JPEG images" contains(QT_CONFIG, system-png): WEBKIT_CONFIG += use_libpng - else: CONFIGURE_WARNINGS += "PNG library not found, QImageDecoder will decode PNG images" + else: CONFIGURE_WARNINGS += "Qt not configured to use system libpng, QImageDecoder will decode PNG images" linux-* { config_libXcomposite: WEBKIT_CONFIG += have_xcomposite @@ -113,7 +113,7 @@ defineTest(detectFeatures) { } !enable?(video) { - CONFIGURE_WARNINGS += "Missing GStreamer, QTKit or QtMultimedia, disabling media element support" + CONFIGURE_WARNINGS += "Missing GStreamer or QtMultimedia, disabling HTML5 media element support" } # Try to use an system wide SQlite installation |