configure: Show only LGPLv3 for WinRT & WinCE

With Qt 5.5 we are changing the license of the Qt for the WinRT &
WinCE ports to LGPLv3 / GPLv2+ / commercial.

Change-Id: I221559c5c42b1dcda172eb85e6bfa53c91976b23
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@theqtcompany.com>
This commit is contained in:
Kai Koehne 2015-05-29 10:26:03 +02:00 committed by Maurice Kalinowski
parent 218e6cc6c9
commit 2d7004c587

View File

@ -4388,7 +4388,9 @@ bool Configure::showLicense(QString orgLicenseFile)
QString licenseFile = orgLicenseFile;
QString theLicense;
if (dictionary["EDITION"] == "OpenSource") {
if (platform() != ANDROID || dictionary["ANDROID_STYLE_ASSETS"] == "no") {
if (platform() != WINDOWS_RT
&& platform() != WINDOWS_CE
&& (platform() != ANDROID || dictionary["ANDROID_STYLE_ASSETS"] == "no")) {
theLicense = "GNU Lesser General Public License (LGPL) version 2.1"
"\nor the GNU Lesser General Public License (LGPL) version 3";
} else {