The X11 buffer pool was using outdated APIs, and as the 'qpa' configuration value is being removed, it caused the X11 code to be pulled in, and therefore cause compilation failures. Change-Id: I5fdaed854c6525716fccca44b5fbd0b850880cb9 Reviewed-by: Michael Goddard <michael.goddard@nokia.com>
55 lines
1.5 KiB
Plaintext
55 lines
1.5 KiB
Plaintext
%modules = ( # path to module name map
|
|
"QtMultimedia" => "$basedir/src/multimedia",
|
|
"QtMultimediaWidgets" => "$basedir/src/multimediawidgets",
|
|
);
|
|
|
|
%moduleheaders = ( # restrict the module headers to those found in relative path
|
|
);
|
|
|
|
%classnames = (
|
|
"qtmultimediaversion.h" => "QtMultimediaVersion",
|
|
"qtmultimediawidgetsversion.h" => "QtMultimediaWidgetsVersion",
|
|
);
|
|
|
|
%mastercontent = (
|
|
"gui" => "#include <QtGui/QtGui>\n",
|
|
"network" => "#include <QtNetwork/QtNetwork>\n",
|
|
"core" => "#include <QtCore/QtCore>\n",
|
|
);
|
|
|
|
%modulepris = (
|
|
"QtMultimedia" => "$basedir/modules/qt_multimedia.pri",
|
|
"QtMultimediaWidgets" => "$basedir/modules/qt_multimediawidgets.pri",
|
|
);
|
|
|
|
# Module dependencies.
|
|
# Every module that is required to build this module should have one entry.
|
|
# Each of the module version specifiers can take one of the following values:
|
|
# - A specific Git revision.
|
|
# - any git symbolic ref resolvable from the module's repository (e.g. "refs/heads/master" to track master branch)
|
|
#
|
|
%dependencies = (
|
|
"qtbase" => "refs/heads/master",
|
|
"qtsvg" => "refs/heads/master",
|
|
"qtxmlpatterns" => "refs/heads/master",
|
|
"qtdeclarative" => "refs/heads/master",
|
|
);
|
|
# Compile tests
|
|
%configtests = (
|
|
# Windows tests
|
|
"directshow" => {},
|
|
"wmsdk" => {},
|
|
"wmp" => {},
|
|
"wmf" => {},
|
|
"evr" => {},
|
|
|
|
# Linux tests
|
|
"alsa" => {},
|
|
"gstreamer" => {},
|
|
"gstreamer_photography" => {},
|
|
"gstreamer_appsrc" => {},
|
|
"pulseaudio" => {},
|
|
"resourcepolicy" => {},
|
|
"xvideo" => {},
|
|
);
|