summaryrefslogtreecommitdiffstats
path: root/tools/configure/configureapp.cpp
diff options
context:
space:
mode:
authorKai Koehne <kai.koehne@nokia.com>2012-01-03 16:01:40 +0100
committerQt by Nokia <qt-info@nokia.com>2012-01-04 09:58:59 +0100
commit52fc6694b87e93fe0828424bb26d9279785de3e7 (patch)
tree83a2dbcc87be8879ae057ea1e2a7f173ecaa5a0e /tools/configure/configureapp.cpp
parent7929a910c49736bd8fd74763a5765bec078a3142 (diff)
configure: Remove -nokia-developer option
There's no good reason to still differentiate between 'Nokia' developers, and Qt developers outside of Nokia, inside configure. Just use -developer-build -opensource -confirm-license. Change-Id: I8726947dae0c70412eb52bf9d88eda4aa061ef26 Reviewed-by: Lars Knoll <lars.knoll@nokia.com> Reviewed-by: Robin Burchell <robin+qt@viroteck.net>
Diffstat (limited to 'tools/configure/configureapp.cpp')
-rw-r--r--tools/configure/configureapp.cpp13
1 files changed, 2 insertions, 11 deletions
diff --git a/tools/configure/configureapp.cpp b/tools/configure/configureapp.cpp
index 3251abc421..92cc2af843 100644
--- a/tools/configure/configureapp.cpp
+++ b/tools/configure/configureapp.cpp
@@ -300,7 +300,6 @@ Configure::Configure(int& argc, char** argv)
dictionary[ "BUILDTYPE" ] = "none";
dictionary[ "BUILDDEV" ] = "no";
- dictionary[ "BUILDNOKIA" ] = "no";
dictionary[ "SHARED" ] = "yes";
@@ -481,14 +480,6 @@ void Configure::parseCmdLine()
dictionary[ "SHARED" ] = "no";
else if (configCmdLine.at(i) == "-developer-build")
dictionary[ "BUILDDEV" ] = "yes";
- else if (configCmdLine.at(i) == "-nokia-developer") {
- cout << "Detected -nokia-developer option" << endl;
- cout << "Nokia employees and agents are allowed to use this software under" << endl;
- cout << "the authority of Nokia Corporation and/or its subsidiary(-ies)" << endl;
- dictionary[ "BUILDNOKIA" ] = "yes";
- dictionary[ "BUILDDEV" ] = "yes";
- dictionary["LICENSE_CONFIRMED"] = "yes";
- }
else if (configCmdLine.at(i) == "-opensource") {
dictionary[ "BUILDTYPE" ] = "opensource";
}
@@ -3788,7 +3779,7 @@ void Configure::readLicense()
bool openSource = false;
bool hasOpenSource = QFile::exists(dictionary["LICENSE FILE"] + "/LICENSE.GPL3") || QFile::exists(dictionary["LICENSE FILE"] + "/LICENSE.LGPL");
- if (dictionary["BUILDNOKIA"] == "yes" || dictionary["BUILDTYPE"] == "commercial") {
+ if (dictionary["BUILDTYPE"] == "commercial") {
openSource = false;
} else if (dictionary["BUILDTYPE"] == "opensource") {
openSource = true;
@@ -3828,7 +3819,7 @@ void Configure::readLicense()
#ifdef COMMERCIAL_VERSION
else {
Tools::checkLicense(dictionary, licenseInfo, firstLicensePath());
- if (dictionary["DONE"] != "error" && dictionary["BUILDNOKIA"] != "yes") {
+ if (dictionary["DONE"] != "error") {
// give the user some feedback, and prompt for license acceptance
cout << endl << "This is the " << dictionary["PLATFORM NAME"] << " " << dictionary["EDITION"] << " Edition."<< endl << endl;
if (!showLicense(dictionary["LICENSE FILE"])) {