summaryrefslogtreecommitdiffstats
path: root/bin/syncqt
diff options
context:
space:
mode:
authorGunnar Sletta <gunnar.sletta@nokia.com>2012-01-09 08:53:17 +0100
committerQt by Nokia <qt-info@nokia.com>2012-01-25 10:19:44 +0100
commit4ecf82795de54fba530ac9c386f3afff2174edbd (patch)
tree7e453145b49364176c3e4a881464e16fe6049e5b /bin/syncqt
parent00c8984b4e48b2a7eadfee6c3cd0cbb19f586118 (diff)
Remove use of QT_MODULE from library
These defines were there to aid in the commercial licensing scheme we used long ago, and are no longer needed. Keep a QT_MODULE(x) define so other modules continue compiling. Change-Id: I8fd76cd5270df8f14aee746b6cf32ebf7c23fec7 Reviewed-by: Lars Knoll <lars.knoll@nokia.com>
Diffstat (limited to 'bin/syncqt')
-rwxr-xr-xbin/syncqt8
1 files changed, 0 insertions, 8 deletions
diff --git a/bin/syncqt b/bin/syncqt
index 194996e3f8..2120c39a2a 100755
--- a/bin/syncqt
+++ b/bin/syncqt
@@ -1341,7 +1341,6 @@ if($check_includes) {
my $iheader = $subdir . "/" . $header;
if($public_header) {
if(open(F, "<$iheader")) {
- my $qt_module_found = 0;
my $qt_begin_header_found = 0;
my $qt_end_header_found = 0;
my $qt_begin_namespace_found = 0;
@@ -1376,8 +1375,6 @@ if($check_includes) {
$qt_begin_namespace_found = 1;
} elsif ($header_skip_qt_begin_namespace_test == 0 and $line =~ /^QT_END_NAMESPACE\s*$/) {
$qt_end_namespace_found = 1;
- } elsif ($header_skip_qt_module_test == 0 and $line =~ /^QT_MODULE\(.*\)\s*$/) {
- $qt_module_found = 1;
}
}
if ($header_skip_qt_begin_header_test == 0) {
@@ -1400,11 +1397,6 @@ if($check_includes) {
}
}
- if ($header_skip_qt_module_test == 0) {
- if ($qt_module_found == 0) {
- print "$lib: WARNING: $iheader does not include QT_MODULE\n";
- }
- }
close(F);
}
}