diff options
author | Thiago Macieira <thiago.macieira@nokia.com> | 2010-01-06 12:33:37 (GMT) |
---|---|---|
committer | Thiago Macieira <thiago.macieira@nokia.com> | 2010-01-06 15:22:24 (GMT) |
commit | 0fb15111a04c5a70ebc8e1f0c7e15508291b2818 (patch) | |
tree | 235c20d629b064e0ed211b5129614d9ab45e5160 /bin | |
parent | 72adb8f5710fea385e94f9726546397cfbb1e4ad (diff) | |
download | Qt-0fb15111a04c5a70ebc8e1f0c7e15508291b2818.zip Qt-0fb15111a04c5a70ebc8e1f0c7e15508291b2818.tar.gz Qt-0fb15111a04c5a70ebc8e1f0c7e15508291b2818.tar.bz2 |
Attempt at readding the capital P headers for Phonon
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/syncqt | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -807,6 +807,11 @@ foreach (@modules_to_sync) { # } $class_lib_map_contents .= "QT_CLASS_LIB($_, $lib, $header_base)\n"; $header_copies++ if(syncHeader("$out_basedir/include/$lib/$class", "$out_basedir/include/$lib/$header", 0)); + + # KDE-Compat headers for Phonon + if ($lib eq "phonon") { + $header_copies++ if (syncHeader("$out_basedir/include/phonon_compat/Phonon/$class", "$out_basedir/include/$lib/$header", 0)); + } } } else { @headers = ( "$out_basedir/include/$lib/private/$header" ); @@ -856,6 +861,7 @@ foreach (@modules_to_sync) { unless($showonly) { my @master_includes; push @master_includes, "$out_basedir/include/$lib/$lib"; + push @master_includes, "$out_basedir/include/phonon_compat/Phonon/Phonon" if ($lib eq "phonon"); foreach my $master_include (@master_includes) { #generate the "master" include file $pri_install_files .= fixPaths($master_include, "$modules{$lib}") . " "; #get the master file installed too |