remove vestiges of QT_MODULE() checking code
authorOswald Buddenhagen <oswald.buddenhagen@digia.com>
Mon, 3 Dec 2012 19:31:04 +0000 (20:31 +0100)
committerThe Qt Project <gerrit-noreply@qt-project.org>
Tue, 4 Dec 2012 12:57:45 +0000 (13:57 +0100)
Change-Id: Icf863c3ca7218af54cb5698d848db786d49481cc
Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
bin/syncqt
sync.profile

index 896ee74..21ddff4 100755 (executable)
@@ -1148,12 +1148,6 @@ if($check_includes) {
             my @subdirs = listSubdirs($modules{$lib});
 
             foreach my $subdir (@subdirs) {
-                my $header_skip_qt_module_test = 0;
-                foreach(@ignore_for_qt_module_check) {
-                    foreach (split(/;/, $_)) {
-                        $header_skip_qt_module_test = 1 if ($subdir =~ /^$_/);
-                    }
-                }
                 my @headers = findFiles($subdir, "^[-a-z0-9_]*\\.h\$" , 0);
                 foreach my $header (@headers) {
                     my $header_skip_qt_begin_header_test = 0;
index 0e1608a..2d7e054 100644 (file)
@@ -78,7 +78,6 @@ my @zlib_headers = ( "zconf.h", "zlib.h" );
 @ignore_for_include_check = ( "qsystemdetection.h", "qcompilerdetection.h", "qprocessordetection.h", @zlib_headers, @angle_headers);
 @ignore_for_qt_begin_header_check = ( "qiconset.h", "qconfig.h", "qconfig-dist.h", "qconfig-large.h", "qconfig-medium.h", "qconfig-minimal.h", "qconfig-small.h", "qfeatures.h", "qt_windows.h", @zlib_headers, @angle_headers);
 @ignore_for_qt_begin_namespace_check = ( "qconfig.h", "qconfig-dist.h", "qconfig-large.h", "qconfig-medium.h", "qconfig-minimal.h", "qconfig-small.h", "qfeatures.h", "qatomic_arch.h", "qatomic_windowsce.h", "qt_windows.h", "qatomic_macosx.h", @zlib_headers, @angle_headers);
-@ignore_for_qt_module_check = ( "$modules{QtCore}/arch", "$modules{QtCore}/global", "$modules{QtTest}", "$modules{QtDBus}" );
 %inject_headers = ( "$basedir/src/corelib/global" => [ "qconfig.h" ] );
 # Module dependencies.
 # Every module that is required to build this module should have one entry.