pkgsrc-WIP-changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
qt5-qtbase58: build on linux.
Module Name: pkgsrc-wip
Committed By: Mark Davies <mark%ecs.vuw.ac.nz@localhost>
Pushed By: markd
Date: Sun Feb 19 13:59:21 2017 +1300
Changeset: a41d92f197af866ac5f6ba9c0806e82fafdb0b00
Modified Files:
qt5-qtbase58/Makefile
qt5-qtbase58/Makefile.common
qt5-qtbase58/PLIST
qt5-qtbase58/buildlink3.mk
qt5-qtbase58/options.mk
Log Message:
qt5-qtbase58: build on linux.
To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=a41d92f197af866ac5f6ba9c0806e82fafdb0b00
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
diffstat:
qt5-qtbase58/Makefile | 38 ++-
qt5-qtbase58/Makefile.common | 4 +-
qt5-qtbase58/PLIST | 611 +++++++++++++++++++++++++++++--------------
qt5-qtbase58/buildlink3.mk | 6 +-
qt5-qtbase58/options.mk | 2 +-
5 files changed, 446 insertions(+), 215 deletions(-)
diffs:
diff --git a/qt5-qtbase58/Makefile b/qt5-qtbase58/Makefile
index 0fa2886765..696f796c12 100644
--- a/qt5-qtbase58/Makefile
+++ b/qt5-qtbase58/Makefile
@@ -37,6 +37,7 @@ CONFIGURE_ARGS+= -no-sql-sqlite
CONFIGURE_ARGS+= -no-sql-sqlite2
CONFIGURE_ARGS+= -no-sql-tds
CONFIGURE_ARGS+= -no-strip
+CONFIGURE_ARGS+= -no-use-gold-linker
CONFIGURE_ARGS+= -system-harfbuzz
CONFIGURE_ARGS+= -system-libjpeg
CONFIGURE_ARGS+= -system-libpng
@@ -102,7 +103,7 @@ LDFLAGS+= -lexecinfo
LDFLAGS+= -lkvm # see patch-src_corelib_io_qlockfile__unix.cpp
.endif
-REPLACE_PERL+= bin/syncqt.pl
+REPLACE_PERL+= bin/syncqt.pl bin/fixqt4headers.pl
PTHREAD_OPTS+= require
UNLIMIT_RESOURCES= datasize
@@ -121,7 +122,7 @@ CHECK_INTERPRETER_SKIP+=qt5/examples/widgets/tools/plugandpaintplugins/extrafilt
CHECK_INTERPRETER_SKIP+=qt5/examples/widgets/tools/styleplugin/plugin/plugin.pro
CHECK_INTERPRETER_SKIP+=qt5/mkspecs/macx-ios-clang/rename_main.sh
-SUBST_CLASSES+= opt path
+SUBST_CLASSES+= opt path static
SUBST_STAGE.opt= pre-configure
SUBST_MESSAGE.opt= Removing some Qt5 default compiler flags.
SUBST_FILES.opt= mkspecs/common/gcc-base.conf
@@ -133,11 +134,31 @@ SUBST_MESSAGE.path= Add to default XDG path.
SUBST_FILES.path= src/corelib/io/qstandardpaths_unix.cpp
SUBST_VARS.path= LOCALBASE
+SUBST_STAGE.static= post-patch
+SUBST_MESSAGE.static= Build shared libraries.
+SUBST_FILES.static= src/platformsupport/accessibility/accessibility.pro
+SUBST_FILES.static+= src/platformsupport/cglconvenience/cglconvenience.pro
+SUBST_FILES.static+= src/platformsupport/clipboard/clipboard.pro
+SUBST_FILES.static+= src/platformsupport/devicediscovery/devicediscovery.pro
+SUBST_FILES.static+= src/platformsupport/eglconvenience/eglconvenience.pro
+SUBST_FILES.static+= src/platformsupport/eventdispatchers/eventdispatchers.pro
+SUBST_FILES.static+= src/platformsupport/fbconvenience/fbconvenience.pro
+SUBST_FILES.static+= src/platformsupport/fontdatabases/fontdatabases.pro
+SUBST_FILES.static+= src/platformsupport/glxconvenience/glxconvenience.pro
+SUBST_FILES.static+= src/platformsupport/graphics/graphics.pro
+SUBST_FILES.static+= src/platformsupport/input/input.pro
+SUBST_FILES.static+= src/platformsupport/linuxaccessibility/linuxaccessibility.pro
+SUBST_FILES.static+= src/platformsupport/platformcompositor/platformcompositor.pro
+SUBST_FILES.static+= src/platformsupport/services/services.pro
+SUBST_FILES.static+= src/platformsupport/themes/themes.pro
+SUBST_SED.static= -e 's,static internal_module,internal_module,'
+
BROKEN_FILES= qt5/mkspecs/modules/qt_lib_bootstrap_private.pri
+BROKEN_FILES1= qt5/mkspecs/qmodule.pri
-PC_FILES= Qt5Bootstrap.pc Qt5Concurrent.pc Qt5Core.pc \
+PC_FILES= Qt5Concurrent.pc Qt5Core.pc Qt5DBus.pc \
Qt5Gui.pc Qt5Network.pc Qt5OpenGL.pc \
- Qt5OpenGLExtensions.pc Qt5PlatformSupport.pc \
+ Qt5OpenGLExtensions.pc \
Qt5PrintSupport.pc Qt5Sql.pc Qt5Test.pc \
Qt5Widgets.pc Qt5Xml.pc
@@ -168,8 +189,8 @@ pre-configure:
${RM} -f ${WRKSRC}/mkspecs/features/mac/default_pre.prf
${RM} -f ${WRKSRC}/mkspecs/features/mac/objective_c.prf.orig
-post-configure:
- cd ${WRKSRC} && ./bin/qmake -o Makefile
+#post-configure:
+# cd ${WRKSRC} && ./bin/qmake -o Makefile
post-install:
.for i in ${PC_FILES}
@@ -184,6 +205,11 @@ post-install:
> ${DESTDIR}${PREFIX}/${BROKEN_FILES}.1
${MV} -f ${DESTDIR}${PREFIX}/${BROKEN_FILES}.1 \
${DESTDIR}${PREFIX}/${BROKEN_FILES}
+ ${SED} -e 's,PKG_CONFIG_EXECUTABLE = .*,PKG_CONFIG_EXECUTABLE = ${TOOLS_PATH.pkg-config},' \
+ ${DESTDIR}${PREFIX}/${BROKEN_FILES1} \
+ > ${DESTDIR}${PREFIX}/${BROKEN_FILES1}.1
+ ${MV} -f ${DESTDIR}${PREFIX}/${BROKEN_FILES1}.1 \
+ ${DESTDIR}${PREFIX}/${BROKEN_FILES1}
.include "../../converters/libiconv/buildlink3.mk"
.include "../../devel/gettext-lib/buildlink3.mk"
diff --git a/qt5-qtbase58/Makefile.common b/qt5-qtbase58/Makefile.common
index cfdfc80c8d..f482121c3d 100644
--- a/qt5-qtbase58/Makefile.common
+++ b/qt5-qtbase58/Makefile.common
@@ -58,8 +58,8 @@ PLIST.unix= yes
SCRIPTS_ENV+= HOME=${WRKDIR}
.if empty(PKGPATH:Mwip/qt5-qtbase58) \
- && empty(PKGPATH:Mx11/qt5-odbc) && empty(PKGPATH:Mx11/qt5-mysql) \
- && empty(PKGPATH:Mx11/qt5-psql) && empty(PKGPATH:Mx11/qt5-sqlite3)
+ && empty(PKGPATH:Mwip/qt5-odbc58) && empty(PKGPATH:Mwip/qt5-mysql58) \
+ && empty(PKGPATH:Mwip/qt5-psql58) && empty(PKGPATH:Mwip/qt5-sqlite358)
do-configure:
cd ${WRKSRC} && ${QTPREFIX}/bin/qmake -o Makefile
.endif
diff --git a/qt5-qtbase58/PLIST b/qt5-qtbase58/PLIST
index 51ab75ba6d..34ac9d8f69 100644
--- a/qt5-qtbase58/PLIST
+++ b/qt5-qtbase58/PLIST
@@ -1,21 +1,20 @@
-@comment $NetBSD: PLIST,v 1.11 2016/01/18 20:52:43 nros Exp $
-lib/pkgconfig/Qt5Bootstrap.pc
+@comment $NetBSD$
lib/pkgconfig/Qt5Concurrent.pc
lib/pkgconfig/Qt5Core.pc
+lib/pkgconfig/Qt5DBus.pc
lib/pkgconfig/Qt5Gui.pc
lib/pkgconfig/Qt5Network.pc
lib/pkgconfig/Qt5OpenGL.pc
lib/pkgconfig/Qt5OpenGLExtensions.pc
-lib/pkgconfig/Qt5PlatformSupport.pc
lib/pkgconfig/Qt5PrintSupport.pc
lib/pkgconfig/Qt5Sql.pc
lib/pkgconfig/Qt5Test.pc
lib/pkgconfig/Qt5Widgets.pc
lib/pkgconfig/Qt5Xml.pc
+qt5/bin/fixqt4headers.pl
qt5/bin/moc
qt5/bin/qdbuscpp2xml
qt5/bin/qdbusxml2cpp
-qt5/bin/qdoc
qt5/bin/qlalr
qt5/bin/qmake
qt5/bin/rcc
@@ -39,6 +38,7 @@ qt5/doc/global/includes/examples-run.qdocinc
qt5/doc/global/macros.qdocconf
qt5/doc/global/manifest-meta.qdocconf
qt5/doc/global/qt-cpp-defines.qdocconf
+qt5/doc/global/qt-html-templates-offline-simple.qdocconf
qt5/doc/global/qt-html-templates-offline.qdocconf
qt5/doc/global/qt-html-templates-online.qdocconf
qt5/doc/global/qt-module-defaults-offline.qdocconf
@@ -91,9 +91,16 @@ qt5/doc/global/template/style/icomoon.svg
qt5/doc/global/template/style/icomoon.ttf
qt5/doc/global/template/style/icomoon.woff
qt5/doc/global/template/style/list_arrow.png
+qt5/doc/global/template/style/list_expand.png
+qt5/doc/global/template/style/offline-simple.css
qt5/doc/global/template/style/offline.css
qt5/doc/global/template/style/online.css
qt5/doc/global/template/style/theqtcompany.png
+qt5/include/QtAccessibilitySupport/${PKGVERSION}/QtAccessibilitySupport/private/qaccessiblebridgeutils_p.h
+qt5/include/QtAccessibilitySupport/QtAccessibilitySupport
+qt5/include/QtAccessibilitySupport/QtAccessibilitySupportDepends
+qt5/include/QtAccessibilitySupport/QtAccessibilitySupportVersion
+qt5/include/QtAccessibilitySupport/qtaccessibilitysupportversion.h
qt5/include/QtConcurrent/QtConcurrent
qt5/include/QtConcurrent/QtConcurrentDepends
qt5/include/QtConcurrent/QtConcurrentFilter
@@ -126,24 +133,28 @@ qt5/include/QtCore/${PKGVERSION}/QtCore/private/qabstractstate_p.h
qt5/include/QtCore/${PKGVERSION}/QtCore/private/qabstracttransition_p.h
qt5/include/QtCore/${PKGVERSION}/QtCore/private/qanimationgroup_p.h
qt5/include/QtCore/${PKGVERSION}/QtCore/private/qbig5codec_p.h
+qt5/include/QtCore/${PKGVERSION}/QtCore/private/qbytearray_p.h
qt5/include/QtCore/${PKGVERSION}/QtCore/private/qbytedata_p.h
+qt5/include/QtCore/${PKGVERSION}/QtCore/private/qcfsocketnotifier_p.h
qt5/include/QtCore/${PKGVERSION}/QtCore/private/qcollator_p.h
+qt5/include/QtCore/${PKGVERSION}/QtCore/private/qconfig_p.h
qt5/include/QtCore/${PKGVERSION}/QtCore/private/qcore_mac_p.h
qt5/include/QtCore/${PKGVERSION}/QtCore/private/qcore_unix_p.h
qt5/include/QtCore/${PKGVERSION}/QtCore/private/qcoreapplication_p.h
qt5/include/QtCore/${PKGVERSION}/QtCore/private/qcorecmdlineargs_p.h
qt5/include/QtCore/${PKGVERSION}/QtCore/private/qcoreglobaldata_p.h
-qt5/include/QtCore/${PKGVERSION}/QtCore/private/qcrashhandler_p.h
qt5/include/QtCore/${PKGVERSION}/QtCore/private/qdatastream_p.h
qt5/include/QtCore/${PKGVERSION}/QtCore/private/qdataurl_p.h
qt5/include/QtCore/${PKGVERSION}/QtCore/private/qdatetime_p.h
qt5/include/QtCore/${PKGVERSION}/QtCore/private/qdatetimeparser_p.h
+qt5/include/QtCore/${PKGVERSION}/QtCore/private/qdeadlinetimer_p.h
qt5/include/QtCore/${PKGVERSION}/QtCore/private/qdebug_p.h
qt5/include/QtCore/${PKGVERSION}/QtCore/private/qdir_p.h
+qt5/include/QtCore/${PKGVERSION}/QtCore/private/qdoublescanprint_p.h
qt5/include/QtCore/${PKGVERSION}/QtCore/private/qelfparser_p.h
qt5/include/QtCore/${PKGVERSION}/QtCore/private/qeucjpcodec_p.h
qt5/include/QtCore/${PKGVERSION}/QtCore/private/qeuckrcodec_p.h
-qt5/include/QtCore/${PKGVERSION}/QtCore/private/qeventdispatcher_blackberry_p.h
+qt5/include/QtCore/${PKGVERSION}/QtCore/private/qeventdispatcher_cf_p.h
qt5/include/QtCore/${PKGVERSION}/QtCore/private/qeventdispatcher_glib_p.h
qt5/include/QtCore/${PKGVERSION}/QtCore/private/qeventdispatcher_unix_p.h
qt5/include/QtCore/${PKGVERSION}/QtCore/private/qeventdispatcher_win_p.h
@@ -165,13 +176,16 @@ qt5/include/QtCore/${PKGVERSION}/QtCore/private/qfilesystemwatcher_kqueue_p.h
qt5/include/QtCore/${PKGVERSION}/QtCore/private/qfilesystemwatcher_p.h
qt5/include/QtCore/${PKGVERSION}/QtCore/private/qfilesystemwatcher_polling_p.h
qt5/include/QtCore/${PKGVERSION}/QtCore/private/qfilesystemwatcher_win_p.h
+qt5/include/QtCore/${PKGVERSION}/QtCore/private/qfinalstate_p.h
qt5/include/QtCore/${PKGVERSION}/QtCore/private/qfreelist_p.h
qt5/include/QtCore/${PKGVERSION}/QtCore/private/qfsfileengine_iterator_p.h
qt5/include/QtCore/${PKGVERSION}/QtCore/private/qfsfileengine_p.h
+qt5/include/QtCore/${PKGVERSION}/QtCore/private/qfunctions_fake_env_p.h
qt5/include/QtCore/${PKGVERSION}/QtCore/private/qfunctions_p.h
qt5/include/QtCore/${PKGVERSION}/QtCore/private/qfutureinterface_p.h
qt5/include/QtCore/${PKGVERSION}/QtCore/private/qfuturewatcher_p.h
qt5/include/QtCore/${PKGVERSION}/QtCore/private/qgb18030codec_p.h
+qt5/include/QtCore/${PKGVERSION}/QtCore/private/qglobal_p.h
qt5/include/QtCore/${PKGVERSION}/QtCore/private/qharfbuzz_p.h
qt5/include/QtCore/${PKGVERSION}/QtCore/private/qhistorystate_p.h
qt5/include/QtCore/${PKGVERSION}/QtCore/private/qhooks_p.h
@@ -216,6 +230,7 @@ qt5/include/QtCore/${PKGVERSION}/QtCore/private/qobject_p.h
qt5/include/QtCore/${PKGVERSION}/QtCore/private/qorderedmutexlocker_p.h
qt5/include/QtCore/${PKGVERSION}/QtCore/private/qparallelanimationgroup_p.h
qt5/include/QtCore/${PKGVERSION}/QtCore/private/qpodlist_p.h
+qt5/include/QtCore/${PKGVERSION}/QtCore/private/qpoll_p.h
qt5/include/QtCore/${PKGVERSION}/QtCore/private/qppsattribute_p.h
qt5/include/QtCore/${PKGVERSION}/QtCore/private/qppsattributeprivate_p.h
qt5/include/QtCore/${PKGVERSION}/QtCore/private/qppsobject_p.h
@@ -245,6 +260,7 @@ qt5/include/QtCore/${PKGVERSION}/QtCore/private/qsystemerror_p.h
qt5/include/QtCore/${PKGVERSION}/QtCore/private/qsystemlibrary_p.h
qt5/include/QtCore/${PKGVERSION}/QtCore/private/qsystemsemaphore_p.h
qt5/include/QtCore/${PKGVERSION}/QtCore/private/qt_pch.h
+qt5/include/QtCore/${PKGVERSION}/QtCore/private/qtcore-config_p.h
qt5/include/QtCore/${PKGVERSION}/QtCore/private/qtemporaryfile_p.h
qt5/include/QtCore/${PKGVERSION}/QtCore/private/qtextcodec_p.h
qt5/include/QtCore/${PKGVERSION}/QtCore/private/qtextstream_p.h
@@ -264,7 +280,6 @@ qt5/include/QtCore/${PKGVERSION}/QtCore/private/qurltlds_p.h
qt5/include/QtCore/${PKGVERSION}/QtCore/private/qutfcodec_p.h
qt5/include/QtCore/${PKGVERSION}/QtCore/private/qvariant_p.h
qt5/include/QtCore/${PKGVERSION}/QtCore/private/qvariantanimation_p.h
-qt5/include/QtCore/${PKGVERSION}/QtCore/private/qversionnumber_p.h
qt5/include/QtCore/${PKGVERSION}/QtCore/private/qwindowscodec_p.h
qt5/include/QtCore/${PKGVERSION}/QtCore/private/qwindowspipereader_p.h
qt5/include/QtCore/${PKGVERSION}/QtCore/private/qwindowspipewriter_p.h
@@ -290,7 +305,6 @@ qt5/include/QtCore/QAssociativeIterable
qt5/include/QtCore/QAtomicInt
qt5/include/QtCore/QAtomicInteger
qt5/include/QtCore/QAtomicPointer
-qt5/include/QtCore/QBBSystemLocaleData
qt5/include/QtCore/QBasicMutex
qt5/include/QtCore/QBasicTimer
qt5/include/QtCore/QBitArray
@@ -311,6 +325,7 @@ qt5/include/QtCore/QCollator
qt5/include/QtCore/QCollatorSortKey
qt5/include/QtCore/QCommandLineOption
qt5/include/QtCore/QCommandLineParser
+qt5/include/QtCore/QConstOverload
qt5/include/QtCore/QContiguousCache
qt5/include/QtCore/QContiguousCacheData
qt5/include/QtCore/QContiguousCacheTypedData
@@ -319,6 +334,7 @@ qt5/include/QtCore/QCryptographicHash
qt5/include/QtCore/QDataStream
qt5/include/QtCore/QDate
qt5/include/QtCore/QDateTime
+qt5/include/QtCore/QDeadlineTimer
qt5/include/QtCore/QDebug
qt5/include/QtCore/QDebugStateSaver
qt5/include/QtCore/QDeferredDeleteEvent
@@ -359,6 +375,7 @@ qt5/include/QtCore/QGlobalStatic
qt5/include/QtCore/QHash
qt5/include/QtCore/QHashData
qt5/include/QtCore/QHashDummyValue
+qt5/include/QtCore/QHashFunctions
qt5/include/QtCore/QHashIterator
qt5/include/QtCore/QHashNode
qt5/include/QtCore/QHistoryState
@@ -413,9 +430,6 @@ qt5/include/QtCore/QMetaMethod
qt5/include/QtCore/QMetaObject
qt5/include/QtCore/QMetaProperty
qt5/include/QtCore/QMetaType
-qt5/include/QtCore/QMetaTypeId
-qt5/include/QtCore/QMetaTypeId2
-qt5/include/QtCore/QMetaTypeIdQObject
qt5/include/QtCore/QMimeData
qt5/include/QtCore/QMimeDatabase
qt5/include/QtCore/QMimeType
@@ -435,6 +449,7 @@ qt5/include/QtCore/QMutableVectorIterator
qt5/include/QtCore/QMutex
qt5/include/QtCore/QMutexLocker
qt5/include/QtCore/QNoDebug
+qt5/include/QtCore/QNonConstOverload
qt5/include/QtCore/QObject
qt5/include/QtCore/QObjectCleanupHandler
qt5/include/QtCore/QObjectData
@@ -531,6 +546,7 @@ qt5/include/QtCore/QTimerEvent
qt5/include/QtCore/QTranslator
qt5/include/QtCore/QTypeInfo
qt5/include/QtCore/QTypeInfoMerger
+qt5/include/QtCore/QTypeInfoQuery
qt5/include/QtCore/QUnhandledException
qt5/include/QtCore/QUrl
qt5/include/QtCore/QUrlQuery
@@ -545,6 +561,7 @@ qt5/include/QtCore/QVariantList
qt5/include/QtCore/QVariantMap
qt5/include/QtCore/QVector
qt5/include/QtCore/QVectorIterator
+qt5/include/QtCore/QVersionNumber
qt5/include/QtCore/QWaitCondition
qt5/include/QtCore/QWeakPointer
qt5/include/QtCore/QWinEventNotifier
@@ -562,6 +579,8 @@ qt5/include/QtCore/QXmlStreamReader
qt5/include/QtCore/QXmlStreamStringRef
qt5/include/QtCore/QXmlStreamWriter
qt5/include/QtCore/Q_PID
+qt5/include/QtCore/Q_SECURITY_ATTRIBUTES
+qt5/include/QtCore/Q_STARTUPINFO
qt5/include/QtCore/Qt
qt5/include/QtCore/QtAlgorithms
qt5/include/QtCore/QtCleanUpFunction
@@ -593,17 +612,9 @@ qt5/include/QtCore/qarraydata.h
qt5/include/QtCore/qarraydataops.h
qt5/include/QtCore/qarraydatapointer.h
qt5/include/QtCore/qatomic.h
-qt5/include/QtCore/qatomic_armv5.h
-qt5/include/QtCore/qatomic_armv6.h
-qt5/include/QtCore/qatomic_armv7.h
qt5/include/QtCore/qatomic_bootstrap.h
qt5/include/QtCore/qatomic_cxx11.h
-qt5/include/QtCore/qatomic_gcc.h
-qt5/include/QtCore/qatomic_ia64.h
-qt5/include/QtCore/qatomic_mips.h
qt5/include/QtCore/qatomic_msvc.h
-qt5/include/QtCore/qatomic_unix.h
-qt5/include/QtCore/qatomic_x86.h
qt5/include/QtCore/qbasicatomic.h
qt5/include/QtCore/qbasictimer.h
qt5/include/QtCore/qbitarray.h
@@ -617,12 +628,7 @@ qt5/include/QtCore/qcollator.h
qt5/include/QtCore/qcommandlineoption.h
qt5/include/QtCore/qcommandlineparser.h
qt5/include/QtCore/qcompilerdetection.h
-qt5/include/QtCore/qconfig-dist.h
-qt5/include/QtCore/qconfig-large.h
-qt5/include/QtCore/qconfig-medium.h
-qt5/include/QtCore/qconfig-minimal.h
-qt5/include/QtCore/qconfig-nacl.h
-qt5/include/QtCore/qconfig-small.h
+qt5/include/QtCore/qconfig-bootstrapped.h
qt5/include/QtCore/qconfig.h
qt5/include/QtCore/qcontainerfwd.h
qt5/include/QtCore/qcontiguouscache.h
@@ -631,6 +637,7 @@ qt5/include/QtCore/qcoreevent.h
qt5/include/QtCore/qcryptographichash.h
qt5/include/QtCore/qdatastream.h
qt5/include/QtCore/qdatetime.h
+qt5/include/QtCore/qdeadlinetimer.h
qt5/include/QtCore/qdebug.h
qt5/include/QtCore/qdir.h
qt5/include/QtCore/qdiriterator.h
@@ -641,7 +648,6 @@ qt5/include/QtCore/qeventloop.h
qt5/include/QtCore/qeventtransition.h
qt5/include/QtCore/qexception.h
qt5/include/QtCore/qfactoryinterface.h
-qt5/include/QtCore/qfeatures.h
qt5/include/QtCore/qfile.h
qt5/include/QtCore/qfiledevice.h
qt5/include/QtCore/qfileinfo.h
@@ -651,7 +657,6 @@ qt5/include/QtCore/qfinalstate.h
qt5/include/QtCore/qflags.h
qt5/include/QtCore/qfunctions_nacl.h
qt5/include/QtCore/qfunctions_vxworks.h
-qt5/include/QtCore/qfunctions_wince.h
qt5/include/QtCore/qfunctions_winrt.h
qt5/include/QtCore/qfuture.h
qt5/include/QtCore/qfutureinterface.h
@@ -661,6 +666,7 @@ qt5/include/QtCore/qgenericatomic.h
qt5/include/QtCore/qglobal.h
qt5/include/QtCore/qglobalstatic.h
qt5/include/QtCore/qhash.h
+qt5/include/QtCore/qhashfunctions.h
qt5/include/QtCore/qhistorystate.h
qt5/include/QtCore/qidentityproxymodel.h
qt5/include/QtCore/qiodevice.h
@@ -677,7 +683,6 @@ qt5/include/QtCore/qline.h
qt5/include/QtCore/qlinkedlist.h
qt5/include/QtCore/qlist.h
qt5/include/QtCore/qlocale.h
-qt5/include/QtCore/qlocale_blackberry.h
qt5/include/QtCore/qlockfile.h
qt5/include/QtCore/qlogging.h
qt5/include/QtCore/qloggingcategory.h
@@ -747,6 +752,7 @@ qt5/include/QtCore/qsysinfo.h
qt5/include/QtCore/qsystemdetection.h
qt5/include/QtCore/qsystemsemaphore.h
qt5/include/QtCore/qt_windows.h
+qt5/include/QtCore/qtcore-config.h
qt5/include/QtCore/qtcoreversion.h
qt5/include/QtCore/qtemporarydir.h
qt5/include/QtCore/qtemporaryfile.h
@@ -769,6 +775,8 @@ qt5/include/QtCore/qvariant.h
qt5/include/QtCore/qvariantanimation.h
qt5/include/QtCore/qvarlengtharray.h
qt5/include/QtCore/qvector.h
+qt5/include/QtCore/qversionnumber.h
+qt5/include/QtCore/qversiontagging.h
qt5/include/QtCore/qwaitcondition.h
qt5/include/QtCore/qwineventnotifier.h
qt5/include/QtCore/qxmlstream.h
@@ -790,6 +798,7 @@ qt5/include/QtDBus/${PKGVERSION}/QtDBus/private/qdbuspendingcall_p.h
qt5/include/QtDBus/${PKGVERSION}/QtDBus/private/qdbusthreaddebug_p.h
qt5/include/QtDBus/${PKGVERSION}/QtDBus/private/qdbusutil_p.h
qt5/include/QtDBus/${PKGVERSION}/QtDBus/private/qdbusxmlparser_p.h
+qt5/include/QtDBus/${PKGVERSION}/QtDBus/private/qtdbusglobal_p.h
qt5/include/QtDBus/QDBusAbstractAdaptor
qt5/include/QtDBus/QDBusAbstractInterface
qt5/include/QtDBus/QDBusAbstractInterfaceBase
@@ -835,7 +844,77 @@ qt5/include/QtDBus/qdbusserver.h
qt5/include/QtDBus/qdbusservicewatcher.h
qt5/include/QtDBus/qdbusunixfiledescriptor.h
qt5/include/QtDBus/qdbusvirtualobject.h
+qt5/include/QtDBus/qtdbusglobal.h
qt5/include/QtDBus/qtdbusversion.h
+qt5/include/QtDeviceDiscoverySupport/${PKGVERSION}/QtDeviceDiscoverySupport/private/qdevicediscovery_dummy_p.h
+qt5/include/QtDeviceDiscoverySupport/${PKGVERSION}/QtDeviceDiscoverySupport/private/qdevicediscovery_p.h
+qt5/include/QtDeviceDiscoverySupport/${PKGVERSION}/QtDeviceDiscoverySupport/private/qdevicediscovery_static_p.h
+qt5/include/QtDeviceDiscoverySupport/${PKGVERSION}/QtDeviceDiscoverySupport/private/qdevicediscovery_udev_p.h
+qt5/include/QtDeviceDiscoverySupport/QtDeviceDiscoverySupport
+qt5/include/QtDeviceDiscoverySupport/QtDeviceDiscoverySupportDepends
+qt5/include/QtDeviceDiscoverySupport/QtDeviceDiscoverySupportVersion
+qt5/include/QtDeviceDiscoverySupport/qtdevicediscoverysupportversion.h
+qt5/include/QtEglFSDeviceIntegration/${PKGVERSION}/QtEglFSDeviceIntegration/private/qeglfscontext_p.h
+qt5/include/QtEglFSDeviceIntegration/${PKGVERSION}/QtEglFSDeviceIntegration/private/qeglfscursor_p.h
+qt5/include/QtEglFSDeviceIntegration/${PKGVERSION}/QtEglFSDeviceIntegration/private/qeglfsdeviceintegration_p.h
+qt5/include/QtEglFSDeviceIntegration/${PKGVERSION}/QtEglFSDeviceIntegration/private/qeglfsglobal_p.h
+qt5/include/QtEglFSDeviceIntegration/${PKGVERSION}/QtEglFSDeviceIntegration/private/qeglfshooks_p.h
+qt5/include/QtEglFSDeviceIntegration/${PKGVERSION}/QtEglFSDeviceIntegration/private/qeglfsintegration_p.h
+qt5/include/QtEglFSDeviceIntegration/${PKGVERSION}/QtEglFSDeviceIntegration/private/qeglfsoffscreenwindow_p.h
+qt5/include/QtEglFSDeviceIntegration/${PKGVERSION}/QtEglFSDeviceIntegration/private/qeglfsscreen_p.h
+qt5/include/QtEglFSDeviceIntegration/${PKGVERSION}/QtEglFSDeviceIntegration/private/qeglfswindow_p.h
+qt5/include/QtEglFSDeviceIntegration/QtEglFSDeviceIntegration
+qt5/include/QtEglFSDeviceIntegration/QtEglFSDeviceIntegrationDepends
+qt5/include/QtEglFSDeviceIntegration/QtEglFSDeviceIntegrationVersion
+qt5/include/QtEglFSDeviceIntegration/qteglfsdeviceintegrationversion.h
+qt5/include/QtEglSupport/${PKGVERSION}/QtEglSupport/private/qeglconvenience_p.h
+qt5/include/QtEglSupport/${PKGVERSION}/QtEglSupport/private/qeglpbuffer_p.h
+qt5/include/QtEglSupport/${PKGVERSION}/QtEglSupport/private/qeglplatformcontext_p.h
+qt5/include/QtEglSupport/${PKGVERSION}/QtEglSupport/private/qeglstreamconvenience_p.h
+qt5/include/QtEglSupport/${PKGVERSION}/QtEglSupport/private/qt_egl_p.h
+qt5/include/QtEglSupport/${PKGVERSION}/QtEglSupport/private/qxlibeglintegration_p.h
+qt5/include/QtEglSupport/QtEglSupport
+qt5/include/QtEglSupport/QtEglSupportDepends
+qt5/include/QtEglSupport/QtEglSupportVersion
+qt5/include/QtEglSupport/qteglsupportversion.h
+qt5/include/QtEventDispatcherSupport/${PKGVERSION}/QtEventDispatcherSupport/private/qeventdispatcher_glib_p.h
+qt5/include/QtEventDispatcherSupport/${PKGVERSION}/QtEventDispatcherSupport/private/qgenericunixeventdispatcher_p.h
+qt5/include/QtEventDispatcherSupport/${PKGVERSION}/QtEventDispatcherSupport/private/qunixeventdispatcher_qpa_p.h
+qt5/include/QtEventDispatcherSupport/${PKGVERSION}/QtEventDispatcherSupport/private/qwindowsguieventdispatcher_p.h
+qt5/include/QtEventDispatcherSupport/QtEventDispatcherSupport
+qt5/include/QtEventDispatcherSupport/QtEventDispatcherSupportDepends
+qt5/include/QtEventDispatcherSupport/QtEventDispatcherSupportVersion
+qt5/include/QtEventDispatcherSupport/qteventdispatchersupportversion.h
+qt5/include/QtFbSupport/${PKGVERSION}/QtFbSupport/private/qfbbackingstore_p.h
+qt5/include/QtFbSupport/${PKGVERSION}/QtFbSupport/private/qfbcursor_p.h
+qt5/include/QtFbSupport/${PKGVERSION}/QtFbSupport/private/qfbscreen_p.h
+qt5/include/QtFbSupport/${PKGVERSION}/QtFbSupport/private/qfbvthandler_p.h
+qt5/include/QtFbSupport/${PKGVERSION}/QtFbSupport/private/qfbwindow_p.h
+qt5/include/QtFbSupport/QtFbSupport
+qt5/include/QtFbSupport/QtFbSupportDepends
+qt5/include/QtFbSupport/QtFbSupportVersion
+qt5/include/QtFbSupport/qtfbsupportversion.h
+qt5/include/QtFontDatabaseSupport/${PKGVERSION}/QtFontDatabaseSupport/private/qbasicfontdatabase_p.h
+qt5/include/QtFontDatabaseSupport/${PKGVERSION}/QtFontDatabaseSupport/private/qcoretextfontdatabase_p.h
+qt5/include/QtFontDatabaseSupport/${PKGVERSION}/QtFontDatabaseSupport/private/qfontconfigdatabase_p.h
+qt5/include/QtFontDatabaseSupport/${PKGVERSION}/QtFontDatabaseSupport/private/qfontengine_coretext_p.h
+qt5/include/QtFontDatabaseSupport/${PKGVERSION}/QtFontDatabaseSupport/private/qfontenginemultifontconfig_p.h
+qt5/include/QtFontDatabaseSupport/${PKGVERSION}/QtFontDatabaseSupport/private/qgenericunixfontdatabase_p.h
+qt5/include/QtFontDatabaseSupport/${PKGVERSION}/QtFontDatabaseSupport/private/qwindowsfontdatabase_ft_p.h
+qt5/include/QtFontDatabaseSupport/${PKGVERSION}/QtFontDatabaseSupport/private/qwindowsfontdatabase_p.h
+qt5/include/QtFontDatabaseSupport/${PKGVERSION}/QtFontDatabaseSupport/private/qwindowsfontengine_p.h
+qt5/include/QtFontDatabaseSupport/${PKGVERSION}/QtFontDatabaseSupport/private/qwindowsfontenginedirectwrite_p.h
+qt5/include/QtFontDatabaseSupport/${PKGVERSION}/QtFontDatabaseSupport/private/qwindowsnativeimage_p.h
+qt5/include/QtFontDatabaseSupport/${PKGVERSION}/QtFontDatabaseSupport/private/qwinrtfontdatabase_p.h
+qt5/include/QtFontDatabaseSupport/QtFontDatabaseSupport
+qt5/include/QtFontDatabaseSupport/QtFontDatabaseSupportDepends
+qt5/include/QtFontDatabaseSupport/QtFontDatabaseSupportVersion
+qt5/include/QtFontDatabaseSupport/qtfontdatabasesupportversion.h
+qt5/include/QtGlxSupport/${PKGVERSION}/QtGlxSupport/private/qglxconvenience_p.h
+qt5/include/QtGlxSupport/QtGlxSupport
+qt5/include/QtGlxSupport/QtGlxSupportDepends
+qt5/include/QtGlxSupport/QtGlxSupportVersion
+qt5/include/QtGlxSupport/qtglxsupportversion.h
qt5/include/QtGui/${PKGVERSION}/QtGui/private/qabstractlayoutstyleinfo_p.h
qt5/include/QtGui/${PKGVERSION}/QtGui/private/qabstracttextdocumentlayout_p.h
qt5/include/QtGui/${PKGVERSION}/QtGui/private/qaccessiblecache_p.h
@@ -844,6 +923,7 @@ qt5/include/QtGui/${PKGVERSION}/QtGui/private/qblendfunctions_p.h
qt5/include/QtGui/${PKGVERSION}/QtGui/private/qblittable_p.h
qt5/include/QtGui/${PKGVERSION}/QtGui/private/qbmphandler_p.h
qt5/include/QtGui/${PKGVERSION}/QtGui/private/qcolor_p.h
+qt5/include/QtGui/${PKGVERSION}/QtGui/private/qcoregraphics_p.h
qt5/include/QtGui/${PKGVERSION}/QtGui/private/qcosmeticstroker_p.h
qt5/include/QtGui/${PKGVERSION}/QtGui/private/qcssparser_p.h
qt5/include/QtGui/${PKGVERSION}/QtGui/private/qcssutil_p.h
@@ -866,26 +946,26 @@ qt5/include/QtGui/${PKGVERSION}/QtGui/private/qfontengine_qpf2_p.h
qt5/include/QtGui/${PKGVERSION}/QtGui/private/qfontengineglyphcache_p.h
qt5/include/QtGui/${PKGVERSION}/QtGui/private/qfontsubset_p.h
qt5/include/QtGui/${PKGVERSION}/QtGui/private/qfragmentmap_p.h
-qt5/include/QtGui/${PKGVERSION}/QtGui/private/qgifhandler_p.h
qt5/include/QtGui/${PKGVERSION}/QtGui/private/qglyphrun_p.h
qt5/include/QtGui/${PKGVERSION}/QtGui/private/qgrayraster_p.h
qt5/include/QtGui/${PKGVERSION}/QtGui/private/qgridlayoutengine_p.h
qt5/include/QtGui/${PKGVERSION}/QtGui/private/qguiapplication_p.h
qt5/include/QtGui/${PKGVERSION}/QtGui/private/qharfbuzzng_p.h
qt5/include/QtGui/${PKGVERSION}/QtGui/private/qhexstring_p.h
+qt5/include/QtGui/${PKGVERSION}/QtGui/private/qhighdpiscaling_p.h
qt5/include/QtGui/${PKGVERSION}/QtGui/private/qicon_p.h
qt5/include/QtGui/${PKGVERSION}/QtGui/private/qiconloader_p.h
qt5/include/QtGui/${PKGVERSION}/QtGui/private/qimage_p.h
qt5/include/QtGui/${PKGVERSION}/QtGui/private/qimagepixmapcleanuphooks_p.h
qt5/include/QtGui/${PKGVERSION}/QtGui/private/qimagescale_p.h
+qt5/include/QtGui/${PKGVERSION}/QtGui/private/qinputdevicemanager_p.h
+qt5/include/QtGui/${PKGVERSION}/QtGui/private/qinputdevicemanager_p_p.h
qt5/include/QtGui/${PKGVERSION}/QtGui/private/qinputmethod_p.h
-qt5/include/QtGui/${PKGVERSION}/QtGui/private/qjpeghandler_p.h
qt5/include/QtGui/${PKGVERSION}/QtGui/private/qkeymapper_p.h
qt5/include/QtGui/${PKGVERSION}/QtGui/private/qkeysequence_p.h
qt5/include/QtGui/${PKGVERSION}/QtGui/private/qlayoutpolicy_p.h
qt5/include/QtGui/${PKGVERSION}/QtGui/private/qmath_p.h
qt5/include/QtGui/${PKGVERSION}/QtGui/private/qmemrotate_p.h
-qt5/include/QtGui/${PKGVERSION}/QtGui/private/qnativeimage_p.h
qt5/include/QtGui/${PKGVERSION}/QtGui/private/qopengl2pexvertexarray_p.h
qt5/include/QtGui/${PKGVERSION}/QtGui/private/qopengl_p.h
qt5/include/QtGui/${PKGVERSION}/QtGui/private/qopenglcontext_p.h
@@ -898,10 +978,8 @@ qt5/include/QtGui/${PKGVERSION}/QtGui/private/qopenglgradientcache_p.h
qt5/include/QtGui/${PKGVERSION}/QtGui/private/qopenglpaintdevice_p.h
qt5/include/QtGui/${PKGVERSION}/QtGui/private/qopenglpaintengine_p.h
qt5/include/QtGui/${PKGVERSION}/QtGui/private/qopenglqueryhelper_p.h
-qt5/include/QtGui/${PKGVERSION}/QtGui/private/qopenglshadercache_meego_p.h
qt5/include/QtGui/${PKGVERSION}/QtGui/private/qopenglshadercache_p.h
qt5/include/QtGui/${PKGVERSION}/QtGui/private/qopengltexture_p.h
-qt5/include/QtGui/${PKGVERSION}/QtGui/private/qopengltextureblitter_p.h
qt5/include/QtGui/${PKGVERSION}/QtGui/private/qopengltexturecache_p.h
qt5/include/QtGui/${PKGVERSION}/QtGui/private/qopengltextureglyphcache_p.h
qt5/include/QtGui/${PKGVERSION}/QtGui/private/qopengltexturehelper_p.h
@@ -932,6 +1010,7 @@ qt5/include/QtGui/${PKGVERSION}/QtGui/private/qrasterdefs_p.h
qt5/include/QtGui/${PKGVERSION}/QtGui/private/qrasterizer_p.h
qt5/include/QtGui/${PKGVERSION}/QtGui/private/qrawfont_p.h
qt5/include/QtGui/${PKGVERSION}/QtGui/private/qrbtree_p.h
+qt5/include/QtGui/${PKGVERSION}/QtGui/private/qrgba64_p.h
qt5/include/QtGui/${PKGVERSION}/QtGui/private/qscreen_p.h
qt5/include/QtGui/${PKGVERSION}/QtGui/private/qsessionmanager_p.h
qt5/include/QtGui/${PKGVERSION}/QtGui/private/qshapedpixmapdndwindow_p.h
@@ -954,6 +1033,8 @@ qt5/include/QtGui/${PKGVERSION}/QtGui/private/qtextobject_p.h
qt5/include/QtGui/${PKGVERSION}/QtGui/private/qtextodfwriter_p.h
qt5/include/QtGui/${PKGVERSION}/QtGui/private/qtexttable_p.h
qt5/include/QtGui/${PKGVERSION}/QtGui/private/qtextureglyphcache_p.h
+qt5/include/QtGui/${PKGVERSION}/QtGui/private/qtgui-config_p.h
+qt5/include/QtGui/${PKGVERSION}/QtGui/private/qtguiglobal_p.h
qt5/include/QtGui/${PKGVERSION}/QtGui/private/qtouchdevice_p.h
qt5/include/QtGui/${PKGVERSION}/QtGui/private/qtriangulatingstroker_p.h
qt5/include/QtGui/${PKGVERSION}/QtGui/private/qtriangulator_p.h
@@ -999,8 +1080,6 @@ qt5/include/QtGui/${PKGVERSION}/QtGui/qpa/qplatformwindow.h
qt5/include/QtGui/${PKGVERSION}/QtGui/qpa/qplatformwindow_p.h
qt5/include/QtGui/${PKGVERSION}/QtGui/qpa/qwindowsysteminterface.h
qt5/include/QtGui/${PKGVERSION}/QtGui/qpa/qwindowsysteminterface_p.h
-qt5/include/QtGui/${PKGVERSION}/QtGui/private/qinputdevicemanager_p.h
-qt5/include/QtGui/${PKGVERSION}/QtGui/private/qinputdevicemanager_p_p.h
qt5/include/QtGui/QAbstractTextDocumentLayout
qt5/include/QtGui/QAbstractUndoItem
qt5/include/QtGui/QAccessible
@@ -1085,6 +1164,7 @@ qt5/include/QtGui/QIntValidator
qt5/include/QtGui/QKeyEvent
qt5/include/QtGui/QKeySequence
qt5/include/QtGui/QLinearGradient
+qt5/include/QtGui/QList
qt5/include/QtGui/QMatrix
qt5/include/QtGui/QMatrix2x2
qt5/include/QtGui/QMatrix2x3
@@ -1105,6 +1185,8 @@ qt5/include/QtGui/QOpenGLContext
qt5/include/QtGui/QOpenGLContextGroup
qt5/include/QtGui/QOpenGLDebugLogger
qt5/include/QtGui/QOpenGLDebugMessage
+qt5/include/QtGui/QOpenGLExtraFunctions
+qt5/include/QtGui/QOpenGLExtraFunctionsPrivate
qt5/include/QtGui/QOpenGLFramebufferObject
qt5/include/QtGui/QOpenGLFramebufferObjectFormat
qt5/include/QtGui/QOpenGLFunctions
@@ -1141,6 +1223,7 @@ qt5/include/QtGui/QOpenGLPixelTransferOptions
qt5/include/QtGui/QOpenGLShader
qt5/include/QtGui/QOpenGLShaderProgram
qt5/include/QtGui/QOpenGLTexture
+qt5/include/QtGui/QOpenGLTextureBlitter
qt5/include/QtGui/QOpenGLTimeMonitor
qt5/include/QtGui/QOpenGLTimerQuery
qt5/include/QtGui/QOpenGLVersionFunctions
@@ -1168,6 +1251,7 @@ qt5/include/QtGui/QPixelFormat
qt5/include/QtGui/QPixmap
qt5/include/QtGui/QPixmapCache
qt5/include/QtGui/QPlatformSurfaceEvent
+qt5/include/QtGui/QPointingDeviceUniqueId
qt5/include/QtGui/QPolygon
qt5/include/QtGui/QPolygonF
qt5/include/QtGui/QQuaternion
@@ -1179,6 +1263,7 @@ qt5/include/QtGui/QRegion
qt5/include/QtGui/QRegularExpressionValidator
qt5/include/QtGui/QResizeEvent
qt5/include/QtGui/QRgb
+qt5/include/QtGui/QRgba64
qt5/include/QtGui/QScreen
qt5/include/QtGui/QScreenOrientationChangeEvent
qt5/include/QtGui/QScrollEvent
@@ -1286,6 +1371,7 @@ qt5/include/QtGui/qopenglcontext.h
qt5/include/QtGui/qopengldebug.h
qt5/include/QtGui/qopengles2ext.h
qt5/include/QtGui/qopenglext.h
+qt5/include/QtGui/qopenglextrafunctions.h
qt5/include/QtGui/qopenglframebufferobject.h
qt5/include/QtGui/qopenglfunctions.h
qt5/include/QtGui/qopenglfunctions_1_0.h
@@ -1319,6 +1405,7 @@ qt5/include/QtGui/qopenglpaintdevice.h
qt5/include/QtGui/qopenglpixeltransferoptions.h
qt5/include/QtGui/qopenglshaderprogram.h
qt5/include/QtGui/qopengltexture.h
+qt5/include/QtGui/qopengltextureblitter.h
qt5/include/QtGui/qopengltimerquery.h
qt5/include/QtGui/qopenglversionfunctions.h
qt5/include/QtGui/qopenglvertexarrayobject.h
@@ -1345,6 +1432,7 @@ qt5/include/QtGui/qrasterwindow.h
qt5/include/QtGui/qrawfont.h
qt5/include/QtGui/qregion.h
qt5/include/QtGui/qrgb.h
+qt5/include/QtGui/qrgba64.h
qt5/include/QtGui/qscreen.h
qt5/include/QtGui/qsessionmanager.h
qt5/include/QtGui/qstandarditemmodel.h
@@ -1363,6 +1451,8 @@ qt5/include/QtGui/qtextlist.h
qt5/include/QtGui/qtextobject.h
qt5/include/QtGui/qtextoption.h
qt5/include/QtGui/qtexttable.h
+qt5/include/QtGui/qtgui-config.h
+qt5/include/QtGui/qtguiglobal.h
qt5/include/QtGui/qtguiversion.h
qt5/include/QtGui/qtouchdevice.h
qt5/include/QtGui/qtransform.h
@@ -1373,6 +1463,43 @@ qt5/include/QtGui/qvector4d.h
qt5/include/QtGui/qwindow.h
qt5/include/QtGui/qwindowdefs.h
qt5/include/QtGui/qwindowdefs_win.h
+qt5/include/QtInputSupport/${PKGVERSION}/QtInputSupport/private/qevdevkeyboard_defaultmap_p.h
+qt5/include/QtInputSupport/${PKGVERSION}/QtInputSupport/private/qevdevkeyboardhandler_p.h
+qt5/include/QtInputSupport/${PKGVERSION}/QtInputSupport/private/qevdevkeyboardmanager_p.h
+qt5/include/QtInputSupport/${PKGVERSION}/QtInputSupport/private/qevdevmousehandler_p.h
+qt5/include/QtInputSupport/${PKGVERSION}/QtInputSupport/private/qevdevmousemanager_p.h
+qt5/include/QtInputSupport/${PKGVERSION}/QtInputSupport/private/qevdevtablethandler_p.h
+qt5/include/QtInputSupport/${PKGVERSION}/QtInputSupport/private/qevdevtabletmanager_p.h
+qt5/include/QtInputSupport/${PKGVERSION}/QtInputSupport/private/qevdevtouchhandler_p.h
+qt5/include/QtInputSupport/${PKGVERSION}/QtInputSupport/private/qevdevtouchmanager_p.h
+qt5/include/QtInputSupport/${PKGVERSION}/QtInputSupport/private/qlibinputhandler_p.h
+qt5/include/QtInputSupport/${PKGVERSION}/QtInputSupport/private/qlibinputkeyboard_p.h
+qt5/include/QtInputSupport/${PKGVERSION}/QtInputSupport/private/qlibinputpointer_p.h
+qt5/include/QtInputSupport/${PKGVERSION}/QtInputSupport/private/qlibinputtouch_p.h
+qt5/include/QtInputSupport/${PKGVERSION}/QtInputSupport/private/qtouchoutputmapping_p.h
+qt5/include/QtInputSupport/${PKGVERSION}/QtInputSupport/private/qtslib_p.h
+qt5/include/QtInputSupport/QtInputSupport
+qt5/include/QtInputSupport/QtInputSupportDepends
+qt5/include/QtInputSupport/QtInputSupportVersion
+qt5/include/QtInputSupport/qtinputsupportversion.h
+qt5/include/QtLinuxAccessibilitySupport/${PKGVERSION}/QtLinuxAccessibilitySupport/private/application_p.h
+qt5/include/QtLinuxAccessibilitySupport/${PKGVERSION}/QtLinuxAccessibilitySupport/private/atspiadaptor_p.h
+qt5/include/QtLinuxAccessibilitySupport/${PKGVERSION}/QtLinuxAccessibilitySupport/private/bridge_p.h
+qt5/include/QtLinuxAccessibilitySupport/${PKGVERSION}/QtLinuxAccessibilitySupport/private/cache_p.h
+qt5/include/QtLinuxAccessibilitySupport/${PKGVERSION}/QtLinuxAccessibilitySupport/private/constant_mappings_p.h
+qt5/include/QtLinuxAccessibilitySupport/${PKGVERSION}/QtLinuxAccessibilitySupport/private/dbusconnection_p.h
+qt5/include/QtLinuxAccessibilitySupport/${PKGVERSION}/QtLinuxAccessibilitySupport/private/struct_marshallers_p.h
+qt5/include/QtLinuxAccessibilitySupport/QtLinuxAccessibilitySupport
+qt5/include/QtLinuxAccessibilitySupport/QtLinuxAccessibilitySupportDepends
+qt5/include/QtLinuxAccessibilitySupport/QtLinuxAccessibilitySupportVersion
+qt5/include/QtLinuxAccessibilitySupport/qtlinuxaccessibilitysupportversion.h
+qt5/include/QtNetwork/${PKGVERSION}/QtNetwork/private/bitstreams_p.h
+qt5/include/QtNetwork/${PKGVERSION}/QtNetwork/private/hpack_p.h
+qt5/include/QtNetwork/${PKGVERSION}/QtNetwork/private/hpacktable_p.h
+qt5/include/QtNetwork/${PKGVERSION}/QtNetwork/private/http2frames_p.h
+qt5/include/QtNetwork/${PKGVERSION}/QtNetwork/private/http2protocol_p.h
+qt5/include/QtNetwork/${PKGVERSION}/QtNetwork/private/http2streams_p.h
+qt5/include/QtNetwork/${PKGVERSION}/QtNetwork/private/huffman_p.h
qt5/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qabstractnetworkcache_p.h
qt5/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qabstractprotocolhandler_p.h
qt5/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qabstractsocket_p.h
@@ -1385,6 +1512,7 @@ qt5/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qdnslookup_p.h
qt5/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qftp_p.h
qt5/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qhostaddress_p.h
qt5/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qhostinfo_p.h
+qt5/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qhttp2protocolhandler_p.h
qt5/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qhttpmultipart_p.h
qt5/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qhttpnetworkconnection_p.h
qt5/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qhttpnetworkconnectionchannel_p.h
@@ -1411,18 +1539,19 @@ qt5/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qnetworkconfigmanager_p.h
qt5/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qnetworkconfiguration_p.h
qt5/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qnetworkcookie_p.h
qt5/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qnetworkcookiejar_p.h
+qt5/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qnetworkdatagram_p.h
qt5/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qnetworkdiskcache_p.h
+qt5/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qnetworkfile_p.h
qt5/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qnetworkinterface_p.h
-qt5/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qnetworkinterface_win_p.h
-qt5/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qnetworkproxy_p.h
qt5/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qnetworkreply_p.h
qt5/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qnetworkreplydataimpl_p.h
qt5/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qnetworkreplyfileimpl_p.h
qt5/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qnetworkreplyhttpimpl_p.h
qt5/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qnetworkreplyimpl_p.h
-qt5/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qnetworkreplynsurlconnectionimpl_p.h
qt5/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qnetworkrequest_p.h
qt5/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qnetworksession_p.h
+qt5/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qsctpserver_p.h
+qt5/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qsctpsocket_p.h
qt5/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qsharednetworksession_p.h
qt5/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qsocks5socketengine_p.h
qt5/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qspdyprotocolhandler_p.h
@@ -1432,16 +1561,19 @@ qt5/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qsslcertificateextension_p
qt5/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qsslcipher_p.h
qt5/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qsslconfiguration_p.h
qt5/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qsslcontext_openssl_p.h
+qt5/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qssldiffiehellmanparameters_p.h
qt5/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qsslkey_p.h
+qt5/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qsslpresharedkeyauthenticator_p.h
+qt5/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qsslsocket_mac_p.h
qt5/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qsslsocket_openssl_p.h
qt5/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qsslsocket_openssl_symbols_p.h
qt5/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qsslsocket_p.h
qt5/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qsslsocket_winrt_p.h
+qt5/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qtcpserver_p.h
qt5/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qtcpsocket_p.h
+qt5/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qtnetwork-config_p.h
+qt5/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qtnetworkglobal_p.h
qt5/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qurlinfo_p.h
-qt5/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qsslpresharedkeyauthenticator_p.h
-qt5/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qsslsocket_mac_p.h
-qt5/include/QtNetwork/${PKGVERSION}/QtNetwork/private/qtcpserver_p.h
qt5/include/QtNetwork/QAbstractNetworkCache
qt5/include/QtNetwork/QAbstractSocket
qt5/include/QtNetwork/QAuthenticator
@@ -1465,6 +1597,7 @@ qt5/include/QtNetwork/QNetworkConfiguration
qt5/include/QtNetwork/QNetworkConfigurationManager
qt5/include/QtNetwork/QNetworkCookie
qt5/include/QtNetwork/QNetworkCookieJar
+qt5/include/QtNetwork/QNetworkDatagram
qt5/include/QtNetwork/QNetworkDiskCache
qt5/include/QtNetwork/QNetworkInterface
qt5/include/QtNetwork/QNetworkProxy
@@ -1473,11 +1606,14 @@ qt5/include/QtNetwork/QNetworkProxyQuery
qt5/include/QtNetwork/QNetworkReply
qt5/include/QtNetwork/QNetworkRequest
qt5/include/QtNetwork/QNetworkSession
+qt5/include/QtNetwork/QSctpServer
+qt5/include/QtNetwork/QSctpSocket
qt5/include/QtNetwork/QSsl
qt5/include/QtNetwork/QSslCertificate
qt5/include/QtNetwork/QSslCertificateExtension
qt5/include/QtNetwork/QSslCipher
qt5/include/QtNetwork/QSslConfiguration
+qt5/include/QtNetwork/QSslDiffieHellmanParameters
qt5/include/QtNetwork/QSslEllipticCurve
qt5/include/QtNetwork/QSslError
qt5/include/QtNetwork/QSslKey
@@ -1504,18 +1640,21 @@ qt5/include/QtNetwork/qnetworkconfigmanager.h
qt5/include/QtNetwork/qnetworkconfiguration.h
qt5/include/QtNetwork/qnetworkcookie.h
qt5/include/QtNetwork/qnetworkcookiejar.h
+qt5/include/QtNetwork/qnetworkdatagram.h
qt5/include/QtNetwork/qnetworkdiskcache.h
-qt5/include/QtNetwork/qnetworkfunctions_wince.h
qt5/include/QtNetwork/qnetworkinterface.h
qt5/include/QtNetwork/qnetworkproxy.h
qt5/include/QtNetwork/qnetworkreply.h
qt5/include/QtNetwork/qnetworkrequest.h
qt5/include/QtNetwork/qnetworksession.h
+qt5/include/QtNetwork/qsctpserver.h
+qt5/include/QtNetwork/qsctpsocket.h
qt5/include/QtNetwork/qssl.h
qt5/include/QtNetwork/qsslcertificate.h
qt5/include/QtNetwork/qsslcertificateextension.h
qt5/include/QtNetwork/qsslcipher.h
qt5/include/QtNetwork/qsslconfiguration.h
+qt5/include/QtNetwork/qssldiffiehellmanparameters.h
qt5/include/QtNetwork/qsslellipticcurve.h
qt5/include/QtNetwork/qsslerror.h
qt5/include/QtNetwork/qsslkey.h
@@ -1523,6 +1662,8 @@ qt5/include/QtNetwork/qsslpresharedkeyauthenticator.h
qt5/include/QtNetwork/qsslsocket.h
qt5/include/QtNetwork/qtcpserver.h
qt5/include/QtNetwork/qtcpsocket.h
+qt5/include/QtNetwork/qtnetwork-config.h
+qt5/include/QtNetwork/qtnetworkglobal.h
qt5/include/QtNetwork/qtnetworkversion.h
qt5/include/QtNetwork/qudpsocket.h
qt5/include/QtOpenGL/${PKGVERSION}/QtOpenGL/private/qgl2pexvertexarray_p.h
@@ -1534,7 +1675,6 @@ qt5/include/QtOpenGL/${PKGVERSION}/QtOpenGL/private/qglframebufferobject_p.h
qt5/include/QtOpenGL/${PKGVERSION}/QtOpenGL/private/qglgradientcache_p.h
qt5/include/QtOpenGL/${PKGVERSION}/QtOpenGL/private/qglpaintdevice_p.h
qt5/include/QtOpenGL/${PKGVERSION}/QtOpenGL/private/qglpixelbuffer_p.h
-qt5/include/QtOpenGL/${PKGVERSION}/QtOpenGL/private/qglshadercache_meego_p.h
qt5/include/QtOpenGL/${PKGVERSION}/QtOpenGL/private/qglshadercache_p.h
qt5/include/QtOpenGL/${PKGVERSION}/QtOpenGL/private/qgraphicsshadereffect_p.h
qt5/include/QtOpenGL/${PKGVERSION}/QtOpenGL/private/qpaintengineex_opengl2_p.h
@@ -1570,95 +1710,40 @@ qt5/include/QtOpenGLExtensions/QtOpenGLExtensionsDepends
qt5/include/QtOpenGLExtensions/QtOpenGLExtensionsVersion
qt5/include/QtOpenGLExtensions/qopenglextensions.h
qt5/include/QtOpenGLExtensions/qtopenglextensionsversion.h
+qt5/include/QtPlatformCompositorSupport/${PKGVERSION}/QtPlatformCompositorSupport/private/qopenglcompositor_p.h
+qt5/include/QtPlatformCompositorSupport/${PKGVERSION}/QtPlatformCompositorSupport/private/qopenglcompositorbackingstore_p.h
+qt5/include/QtPlatformCompositorSupport/QtPlatformCompositorSupport
+qt5/include/QtPlatformCompositorSupport/QtPlatformCompositorSupportDepends
+qt5/include/QtPlatformCompositorSupport/QtPlatformCompositorSupportVersion
+qt5/include/QtPlatformCompositorSupport/qtplatformcompositorsupportversion.h
qt5/include/QtPlatformHeaders/QCocoaNativeContext
+qt5/include/QtPlatformHeaders/QCocoaWindowFunctions
qt5/include/QtPlatformHeaders/QEGLNativeContext
qt5/include/QtPlatformHeaders/QEglFSFunctions
qt5/include/QtPlatformHeaders/QGLXNativeContext
+qt5/include/QtPlatformHeaders/QPlatformHeaderHelper
qt5/include/QtPlatformHeaders/QWGLNativeContext
+qt5/include/QtPlatformHeaders/QWaylandWindowFunctions
qt5/include/QtPlatformHeaders/QWindowsWindowFunctions
+qt5/include/QtPlatformHeaders/QXcbIntegrationFunctions
+qt5/include/QtPlatformHeaders/QXcbScreenFunctions
qt5/include/QtPlatformHeaders/QXcbWindowFunctions
qt5/include/QtPlatformHeaders/QtPlatformHeaders
qt5/include/QtPlatformHeaders/QtPlatformHeadersDepends
qt5/include/QtPlatformHeaders/QtPlatformHeadersVersion
qt5/include/QtPlatformHeaders/qcocoanativecontext.h
+qt5/include/QtPlatformHeaders/qcocoawindowfunctions.h
qt5/include/QtPlatformHeaders/qeglfsfunctions.h
qt5/include/QtPlatformHeaders/qeglnativecontext.h
qt5/include/QtPlatformHeaders/qglxnativecontext.h
+qt5/include/QtPlatformHeaders/qplatformheaderhelper.h
qt5/include/QtPlatformHeaders/qtplatformheadersversion.h
+qt5/include/QtPlatformHeaders/qwaylandwindowfunctions.h
qt5/include/QtPlatformHeaders/qwglnativecontext.h
qt5/include/QtPlatformHeaders/qwindowswindowfunctions.h
+qt5/include/QtPlatformHeaders/qxcbintegrationfunctions.h
+qt5/include/QtPlatformHeaders/qxcbscreenfunctions.h
qt5/include/QtPlatformHeaders/qxcbwindowfunctions.h
-qt5/include/QtPlatformSupport/${PKGVERSION}/QtPlatformSupport/private/application_p.h
-qt5/include/QtPlatformSupport/${PKGVERSION}/QtPlatformSupport/private/atspiadaptor_p.h
-qt5/include/QtPlatformSupport/${PKGVERSION}/QtPlatformSupport/private/bridge_p.h
-qt5/include/QtPlatformSupport/${PKGVERSION}/QtPlatformSupport/private/cache_p.h
-qt5/include/QtPlatformSupport/${PKGVERSION}/QtPlatformSupport/private/cglconvenience_p.h
-qt5/include/QtPlatformSupport/${PKGVERSION}/QtPlatformSupport/private/constant_mappings_p.h
-qt5/include/QtPlatformSupport/${PKGVERSION}/QtPlatformSupport/private/dbusconnection_p.h
-qt5/include/QtPlatformSupport/${PKGVERSION}/QtPlatformSupport/private/qaccessiblebridgeutils_p.h
-qt5/include/QtPlatformSupport/${PKGVERSION}/QtPlatformSupport/private/qbasicfontdatabase_p.h
-qt5/include/QtPlatformSupport/${PKGVERSION}/QtPlatformSupport/private/qcfsocketnotifier_p.h
-qt5/include/QtPlatformSupport/${PKGVERSION}/QtPlatformSupport/private/qcoretextfontdatabase_p.h
-qt5/include/QtPlatformSupport/${PKGVERSION}/QtPlatformSupport/private/qdevicediscovery_dummy_p.h
-qt5/include/QtPlatformSupport/${PKGVERSION}/QtPlatformSupport/private/qdevicediscovery_p.h
-qt5/include/QtPlatformSupport/${PKGVERSION}/QtPlatformSupport/private/qdevicediscovery_static_p.h
-qt5/include/QtPlatformSupport/${PKGVERSION}/QtPlatformSupport/private/qdevicediscovery_udev_p.h
-qt5/include/QtPlatformSupport/${PKGVERSION}/QtPlatformSupport/private/qeglconvenience_p.h
-qt5/include/QtPlatformSupport/${PKGVERSION}/QtPlatformSupport/private/qeglpbuffer_p.h
-qt5/include/QtPlatformSupport/${PKGVERSION}/QtPlatformSupport/private/qeglplatformcontext_p.h
-qt5/include/QtPlatformSupport/${PKGVERSION}/QtPlatformSupport/private/qeglplatformcursor_p.h
-qt5/include/QtPlatformSupport/${PKGVERSION}/QtPlatformSupport/private/qeglplatformintegration_p.h
-qt5/include/QtPlatformSupport/${PKGVERSION}/QtPlatformSupport/private/qeglplatformscreen_p.h
-qt5/include/QtPlatformSupport/${PKGVERSION}/QtPlatformSupport/private/qeglplatformwindow_p.h
-qt5/include/QtPlatformSupport/${PKGVERSION}/QtPlatformSupport/private/qevdevkeyboard_defaultmap_p.h
-qt5/include/QtPlatformSupport/${PKGVERSION}/QtPlatformSupport/private/qevdevkeyboardhandler_p.h
-qt5/include/QtPlatformSupport/${PKGVERSION}/QtPlatformSupport/private/qevdevkeyboardmanager_p.h
-qt5/include/QtPlatformSupport/${PKGVERSION}/QtPlatformSupport/private/qevdevmousehandler_p.h
-qt5/include/QtPlatformSupport/${PKGVERSION}/QtPlatformSupport/private/qevdevmousemanager_p.h
-qt5/include/QtPlatformSupport/${PKGVERSION}/QtPlatformSupport/private/qevdevtablet_p.h
-qt5/include/QtPlatformSupport/${PKGVERSION}/QtPlatformSupport/private/qeventdispatcher_cf_p.h
-qt5/include/QtPlatformSupport/${PKGVERSION}/QtPlatformSupport/private/qeventdispatcher_glib_p.h
-qt5/include/QtPlatformSupport/${PKGVERSION}/QtPlatformSupport/private/qfbbackingstore_p.h
-qt5/include/QtPlatformSupport/${PKGVERSION}/QtPlatformSupport/private/qfbcursor_p.h
-qt5/include/QtPlatformSupport/${PKGVERSION}/QtPlatformSupport/private/qfbscreen_p.h
-qt5/include/QtPlatformSupport/${PKGVERSION}/QtPlatformSupport/private/qfbvthandler_p.h
-qt5/include/QtPlatformSupport/${PKGVERSION}/QtPlatformSupport/private/qfbwindow_p.h
-qt5/include/QtPlatformSupport/${PKGVERSION}/QtPlatformSupport/private/qfontconfigdatabase_p.h
-qt5/include/QtPlatformSupport/${PKGVERSION}/QtPlatformSupport/private/qfontengine_coretext_p.h
-qt5/include/QtPlatformSupport/${PKGVERSION}/QtPlatformSupport/private/qfontenginemultifontconfig_p.h
-qt5/include/QtPlatformSupport/${PKGVERSION}/QtPlatformSupport/private/qgenericunixeventdispatcher_p.h
-qt5/include/QtPlatformSupport/${PKGVERSION}/QtPlatformSupport/private/qgenericunixfontdatabase_p.h
-qt5/include/QtPlatformSupport/${PKGVERSION}/QtPlatformSupport/private/qgenericunixservices_p.h
-qt5/include/QtPlatformSupport/${PKGVERSION}/QtPlatformSupport/private/qgenericunixthemes_p.h
-qt5/include/QtPlatformSupport/${PKGVERSION}/QtPlatformSupport/private/qglxconvenience_p.h
-qt5/include/QtPlatformSupport/${PKGVERSION}/QtPlatformSupport/private/qmacmime_p.h
-qt5/include/QtPlatformSupport/${PKGVERSION}/QtPlatformSupport/private/qunixeventdispatcher_qpa_p.h
-qt5/include/QtPlatformSupport/${PKGVERSION}/QtPlatformSupport/private/qxlibeglintegration_p.h
-qt5/include/QtPlatformSupport/${PKGVERSION}/QtPlatformSupport/private/struct_marshallers_p.h
-qt5/include/QtPlatformSupport/${PKGVERSION}/QtPlatformSupport/private/qdbusmenuadaptor_p.h
-qt5/include/QtPlatformSupport/${PKGVERSION}/QtPlatformSupport/private/qdbusmenuconnection_p.h
-qt5/include/QtPlatformSupport/${PKGVERSION}/QtPlatformSupport/private/qdbusmenutypes_p.h
-qt5/include/QtPlatformSupport/${PKGVERSION}/QtPlatformSupport/private/qdbusplatformmenu_p.h
-qt5/include/QtPlatformSupport/${PKGVERSION}/QtPlatformSupport/private/qdbustrayicon_p.h
-qt5/include/QtPlatformSupport/${PKGVERSION}/QtPlatformSupport/private/qdbustraytypes_p.h
-qt5/include/QtPlatformSupport/${PKGVERSION}/QtPlatformSupport/private/qevdevtouchhandler_p.h
-qt5/include/QtPlatformSupport/${PKGVERSION}/QtPlatformSupport/private/qevdevtouchmanager_p.h
-qt5/include/QtPlatformSupport/${PKGVERSION}/QtPlatformSupport/private/qlibinputhandler_p.h
-qt5/include/QtPlatformSupport/${PKGVERSION}/QtPlatformSupport/private/qlibinputkeyboard_p.h
-qt5/include/QtPlatformSupport/${PKGVERSION}/QtPlatformSupport/private/qlibinputpointer_p.h
-qt5/include/QtPlatformSupport/${PKGVERSION}/QtPlatformSupport/private/qlibinputtouch_p.h
-qt5/include/QtPlatformSupport/${PKGVERSION}/QtPlatformSupport/private/qopenglcompositor_p.h
-qt5/include/QtPlatformSupport/${PKGVERSION}/QtPlatformSupport/private/qopenglcompositorbackingstore_p.h
-qt5/include/QtPlatformSupport/${PKGVERSION}/QtPlatformSupport/private/qstatusnotifieritemadaptor_p.h
-qt5/include/QtPlatformSupport/${PKGVERSION}/QtPlatformSupport/private/qtslib_p.h
-qt5/include/QtPlatformSupport/${PKGVERSION}/QtPlatformSupport/private/qxdgnotificationproxy_p.h
-qt5/include/QtPlatformSupport/QtPlatformSupport
-qt5/include/QtPlatformSupport/QtPlatformSupportDepends
-qt5/include/QtPlatformSupport/QtPlatformSupportVersion
-qt5/include/QtPlatformSupport/qtplatformsupportversion.h
-qt5/include/QtPrintSupport/${PKGVERSION}/QtPrintSupport/qpa/qplatformprintdevice.h
-qt5/include/QtPrintSupport/${PKGVERSION}/QtPrintSupport/qpa/qplatformprintersupport.h
-qt5/include/QtPrintSupport/${PKGVERSION}/QtPrintSupport/qpa/qplatformprintplugin.h
qt5/include/QtPrintSupport/${PKGVERSION}/QtPrintSupport/private/qabstractprintdialog_p.h
qt5/include/QtPrintSupport/${PKGVERSION}/QtPrintSupport/private/qcups_p.h
qt5/include/QtPrintSupport/${PKGVERSION}/QtPrintSupport/private/qcupsjobwidget_p.h
@@ -1672,6 +1757,11 @@ qt5/include/QtPrintSupport/${PKGVERSION}/QtPrintSupport/private/qprintengine_pdf
qt5/include/QtPrintSupport/${PKGVERSION}/QtPrintSupport/private/qprintengine_win_p.h
qt5/include/QtPrintSupport/${PKGVERSION}/QtPrintSupport/private/qprinter_p.h
qt5/include/QtPrintSupport/${PKGVERSION}/QtPrintSupport/private/qprinterinfo_p.h
+qt5/include/QtPrintSupport/${PKGVERSION}/QtPrintSupport/private/qtprintsupport-config_p.h
+qt5/include/QtPrintSupport/${PKGVERSION}/QtPrintSupport/private/qtprintsupportglobal_p.h
+qt5/include/QtPrintSupport/${PKGVERSION}/QtPrintSupport/qpa/qplatformprintdevice.h
+qt5/include/QtPrintSupport/${PKGVERSION}/QtPrintSupport/qpa/qplatformprintersupport.h
+qt5/include/QtPrintSupport/${PKGVERSION}/QtPrintSupport/qpa/qplatformprintplugin.h
qt5/include/QtPrintSupport/QAbstractPrintDialog
qt5/include/QtPrintSupport/QPageSetupDialog
qt5/include/QtPrintSupport/QPrintDialog
@@ -1691,24 +1781,22 @@ qt5/include/QtPrintSupport/qprinter.h
qt5/include/QtPrintSupport/qprinterinfo.h
qt5/include/QtPrintSupport/qprintpreviewdialog.h
qt5/include/QtPrintSupport/qprintpreviewwidget.h
+qt5/include/QtPrintSupport/qtprintsupport-config.h
qt5/include/QtPrintSupport/qtprintsupportglobal.h
qt5/include/QtPrintSupport/qtprintsupportversion.h
-qt5/include/QtSql/${PKGVERSION}/QtSql/private/qsql_db2_p.h
-qt5/include/QtSql/${PKGVERSION}/QtSql/private/qsql_ibase_p.h
-qt5/include/QtSql/${PKGVERSION}/QtSql/private/qsql_mysql_p.h
-qt5/include/QtSql/${PKGVERSION}/QtSql/private/qsql_oci_p.h
-qt5/include/QtSql/${PKGVERSION}/QtSql/private/qsql_odbc_p.h
-qt5/include/QtSql/${PKGVERSION}/QtSql/private/qsql_psql_p.h
-qt5/include/QtSql/${PKGVERSION}/QtSql/private/qsql_sqlite2_p.h
-qt5/include/QtSql/${PKGVERSION}/QtSql/private/qsql_sqlite_p.h
-qt5/include/QtSql/${PKGVERSION}/QtSql/private/qsql_tds_p.h
+qt5/include/QtServiceSupport/${PKGVERSION}/QtServiceSupport/private/qgenericunixservices_p.h
+qt5/include/QtServiceSupport/QtServiceSupport
+qt5/include/QtServiceSupport/QtServiceSupportDepends
+qt5/include/QtServiceSupport/QtServiceSupportVersion
+qt5/include/QtServiceSupport/qtservicesupportversion.h
qt5/include/QtSql/${PKGVERSION}/QtSql/private/qsqlcachedresult_p.h
qt5/include/QtSql/${PKGVERSION}/QtSql/private/qsqldriver_p.h
qt5/include/QtSql/${PKGVERSION}/QtSql/private/qsqlnulldriver_p.h
qt5/include/QtSql/${PKGVERSION}/QtSql/private/qsqlquerymodel_p.h
qt5/include/QtSql/${PKGVERSION}/QtSql/private/qsqlresult_p.h
qt5/include/QtSql/${PKGVERSION}/QtSql/private/qsqltablemodel_p.h
-qt5/include/QtSql/QSql
+qt5/include/QtSql/${PKGVERSION}/QtSql/private/qtsql-config_p.h
+qt5/include/QtSql/${PKGVERSION}/QtSql/private/qtsqlglobal_p.h
qt5/include/QtSql/QSqlDatabase
qt5/include/QtSql/QSqlDriver
qt5/include/QtSql/QSqlDriverCreator
@@ -1742,6 +1830,8 @@ qt5/include/QtSql/qsqlrelationaldelegate.h
qt5/include/QtSql/qsqlrelationaltablemodel.h
qt5/include/QtSql/qsqlresult.h
qt5/include/QtSql/qsqltablemodel.h
+qt5/include/QtSql/qtsql-config.h
+qt5/include/QtSql/qtsqlglobal.h
qt5/include/QtSql/qtsqlversion.h
qt5/include/QtTest/${PKGVERSION}/QtTest/private/callgrind_p.h
qt5/include/QtTest/${PKGVERSION}/QtTest/private/cycle_p.h
@@ -1752,10 +1842,12 @@ qt5/include/QtTest/${PKGVERSION}/QtTest/private/qbenchmarkevent_p.h
qt5/include/QtTest/${PKGVERSION}/QtTest/private/qbenchmarkmeasurement_p.h
qt5/include/QtTest/${PKGVERSION}/QtTest/private/qbenchmarkmetric_p.h
qt5/include/QtTest/${PKGVERSION}/QtTest/private/qbenchmarkperfevents_p.h
+qt5/include/QtTest/${PKGVERSION}/QtTest/private/qbenchmarktimemeasurers_p.h
qt5/include/QtTest/${PKGVERSION}/QtTest/private/qbenchmarkvalgrind_p.h
qt5/include/QtTest/${PKGVERSION}/QtTest/private/qcsvbenchmarklogger_p.h
qt5/include/QtTest/${PKGVERSION}/QtTest/private/qplaintestlogger_p.h
qt5/include/QtTest/${PKGVERSION}/QtTest/private/qsignaldumper_p.h
+qt5/include/QtTest/${PKGVERSION}/QtTest/private/qteamcitylogger_p.h
qt5/include/QtTest/${PKGVERSION}/QtTest/private/qtestblacklist_p.h
qt5/include/QtTest/${PKGVERSION}/QtTest/private/qtestcoreelement_p.h
qt5/include/QtTest/${PKGVERSION}/QtTest/private/qtestcorelist_p.h
@@ -1764,6 +1856,7 @@ qt5/include/QtTest/${PKGVERSION}/QtTest/private/qtestelementattribute_p.h
qt5/include/QtTest/${PKGVERSION}/QtTest/private/qtestlog_p.h
qt5/include/QtTest/${PKGVERSION}/QtTest/private/qtestresult_p.h
qt5/include/QtTest/${PKGVERSION}/QtTest/private/qtesttable_p.h
+qt5/include/QtTest/${PKGVERSION}/QtTest/private/qtestutil_macos_p.h
qt5/include/QtTest/${PKGVERSION}/QtTest/private/qtestxunitstreamer_p.h
qt5/include/QtTest/${PKGVERSION}/QtTest/private/qxctestlogger_p.h
qt5/include/QtTest/${PKGVERSION}/QtTest/private/qxmltestlogger_p.h
@@ -1785,6 +1878,7 @@ qt5/include/QtTest/QTestMouseEvent
qt5/include/QtTest/QtTest
qt5/include/QtTest/QtTestDepends
qt5/include/QtTest/QtTestGui
+qt5/include/QtTest/QtTestNetwork
qt5/include/QtTest/QtTestVersion
qt5/include/QtTest/QtTestWidgets
qt5/include/QtTest/qbenchmark.h
@@ -1793,6 +1887,7 @@ qt5/include/QtTest/qsignalspy.h
qt5/include/QtTest/qtest.h
qt5/include/QtTest/qtest_global.h
qt5/include/QtTest/qtest_gui.h
+qt5/include/QtTest/qtest_network.h
qt5/include/QtTest/qtest_widgets.h
qt5/include/QtTest/qtestaccessible.h
qt5/include/QtTest/qtestassert.h
@@ -1806,20 +1901,40 @@ qt5/include/QtTest/qtestspontaneevent.h
qt5/include/QtTest/qtestsystem.h
qt5/include/QtTest/qtesttouch.h
qt5/include/QtTest/qttestversion.h
+qt5/include/QtThemeSupport/${PKGVERSION}/QtThemeSupport/private/qabstractfileiconengine_p.h
+qt5/include/QtThemeSupport/${PKGVERSION}/QtThemeSupport/private/qdbusmenuadaptor_p.h
+qt5/include/QtThemeSupport/${PKGVERSION}/QtThemeSupport/private/qdbusmenubar_p.h
+qt5/include/QtThemeSupport/${PKGVERSION}/QtThemeSupport/private/qdbusmenuconnection_p.h
+qt5/include/QtThemeSupport/${PKGVERSION}/QtThemeSupport/private/qdbusmenuregistrarproxy_p.h
+qt5/include/QtThemeSupport/${PKGVERSION}/QtThemeSupport/private/qdbusmenutypes_p.h
+qt5/include/QtThemeSupport/${PKGVERSION}/QtThemeSupport/private/qdbusplatformmenu_p.h
+qt5/include/QtThemeSupport/${PKGVERSION}/QtThemeSupport/private/qdbustrayicon_p.h
+qt5/include/QtThemeSupport/${PKGVERSION}/QtThemeSupport/private/qdbustraytypes_p.h
+qt5/include/QtThemeSupport/${PKGVERSION}/QtThemeSupport/private/qgenericunixthemes_p.h
+qt5/include/QtThemeSupport/${PKGVERSION}/QtThemeSupport/private/qstatusnotifieritemadaptor_p.h
+qt5/include/QtThemeSupport/${PKGVERSION}/QtThemeSupport/private/qxdgnotificationproxy_p.h
+qt5/include/QtThemeSupport/QtThemeSupport
+qt5/include/QtThemeSupport/QtThemeSupportDepends
+qt5/include/QtThemeSupport/QtThemeSupportVersion
+qt5/include/QtThemeSupport/qtthemesupportversion.h
+qt5/include/QtWidgets/${PKGVERSION}/QtWidgets/private/complexwidgets_p.h
+qt5/include/QtWidgets/${PKGVERSION}/QtWidgets/private/itemviews_p.h
qt5/include/QtWidgets/${PKGVERSION}/QtWidgets/private/qabstractbutton_p.h
qt5/include/QtWidgets/${PKGVERSION}/QtWidgets/private/qabstractitemdelegate_p.h
qt5/include/QtWidgets/${PKGVERSION}/QtWidgets/private/qabstractitemview_p.h
qt5/include/QtWidgets/${PKGVERSION}/QtWidgets/private/qabstractscrollarea_p.h
qt5/include/QtWidgets/${PKGVERSION}/QtWidgets/private/qabstractslider_p.h
qt5/include/QtWidgets/${PKGVERSION}/QtWidgets/private/qabstractspinbox_p.h
+qt5/include/QtWidgets/${PKGVERSION}/QtWidgets/private/qaccessiblemenu_p.h
qt5/include/QtWidgets/${PKGVERSION}/QtWidgets/private/qaccessiblewidgetfactory_p.h
+qt5/include/QtWidgets/${PKGVERSION}/QtWidgets/private/qaccessiblewidgets_p.h
qt5/include/QtWidgets/${PKGVERSION}/QtWidgets/private/qaction_p.h
qt5/include/QtWidgets/${PKGVERSION}/QtWidgets/private/qandroidstyle_p.h
qt5/include/QtWidgets/${PKGVERSION}/QtWidgets/private/qapplication_p.h
qt5/include/QtWidgets/${PKGVERSION}/QtWidgets/private/qbasickeyeventtransition_p.h
qt5/include/QtWidgets/${PKGVERSION}/QtWidgets/private/qbasicmouseeventtransition_p.h
qt5/include/QtWidgets/${PKGVERSION}/QtWidgets/private/qbsptree_p.h
-qt5/include/QtWidgets/${PKGVERSION}/QtWidgets/private/qcolordialog_p.h
+qt5/include/QtWidgets/${PKGVERSION}/QtWidgets/private/qbuttongroup_p.h
qt5/include/QtWidgets/${PKGVERSION}/QtWidgets/private/qcolumnview_p.h
qt5/include/QtWidgets/${PKGVERSION}/QtWidgets/private/qcolumnviewgrip_p.h
qt5/include/QtWidgets/${PKGVERSION}/QtWidgets/private/qcombobox_p.h
@@ -1861,11 +1976,6 @@ qt5/include/QtWidgets/${PKGVERSION}/QtWidgets/private/qgraphicsscenelinearindex_
qt5/include/QtWidgets/${PKGVERSION}/QtWidgets/private/qgraphicstransform_p.h
qt5/include/QtWidgets/${PKGVERSION}/QtWidgets/private/qgraphicsview_p.h
qt5/include/QtWidgets/${PKGVERSION}/QtWidgets/private/qgraphicswidget_p.h
-qt5/include/QtWidgets/${PKGVERSION}/QtWidgets/private/qgtk2painter_p.h
-qt5/include/QtWidgets/${PKGVERSION}/QtWidgets/private/qgtkglobal_p.h
-qt5/include/QtWidgets/${PKGVERSION}/QtWidgets/private/qgtkpainter_p.h
-qt5/include/QtWidgets/${PKGVERSION}/QtWidgets/private/qgtkstyle_p.h
-qt5/include/QtWidgets/${PKGVERSION}/QtWidgets/private/qgtkstyle_p_p.h
qt5/include/QtWidgets/${PKGVERSION}/QtWidgets/private/qheaderview_p.h
qt5/include/QtWidgets/${PKGVERSION}/QtWidgets/private/qitemeditorfactory_p.h
qt5/include/QtWidgets/${PKGVERSION}/QtWidgets/private/qkeysequenceedit_p.h
@@ -1882,9 +1992,10 @@ qt5/include/QtWidgets/${PKGVERSION}/QtWidgets/private/qmainwindowlayout_p.h
qt5/include/QtWidgets/${PKGVERSION}/QtWidgets/private/qmdiarea_p.h
qt5/include/QtWidgets/${PKGVERSION}/QtWidgets/private/qmdisubwindow_p.h
qt5/include/QtWidgets/${PKGVERSION}/QtWidgets/private/qmenu_p.h
-qt5/include/QtWidgets/${PKGVERSION}/QtWidgets/private/qmenu_wince_resource_p.h
qt5/include/QtWidgets/${PKGVERSION}/QtWidgets/private/qmenubar_p.h
qt5/include/QtWidgets/${PKGVERSION}/QtWidgets/private/qpixmapfilter_p.h
+qt5/include/QtWidgets/${PKGVERSION}/QtWidgets/private/qpixmapstyle_p.h
+qt5/include/QtWidgets/${PKGVERSION}/QtWidgets/private/qpixmapstyle_p_p.h
qt5/include/QtWidgets/${PKGVERSION}/QtWidgets/private/qplaintextedit_p.h
qt5/include/QtWidgets/${PKGVERSION}/QtWidgets/private/qproxystyle_p.h
qt5/include/QtWidgets/${PKGVERSION}/QtWidgets/private/qpushbutton_p.h
@@ -1914,6 +2025,8 @@ qt5/include/QtWidgets/${PKGVERSION}/QtWidgets/private/qtoolbarseparator_p.h
qt5/include/QtWidgets/${PKGVERSION}/QtWidgets/private/qtreeview_p.h
qt5/include/QtWidgets/${PKGVERSION}/QtWidgets/private/qtreewidget_p.h
qt5/include/QtWidgets/${PKGVERSION}/QtWidgets/private/qtreewidgetitemiterator_p.h
+qt5/include/QtWidgets/${PKGVERSION}/QtWidgets/private/qtwidgets-config_p.h
+qt5/include/QtWidgets/${PKGVERSION}/QtWidgets/private/qtwidgetsglobal_p.h
qt5/include/QtWidgets/${PKGVERSION}/QtWidgets/private/qundostack_p.h
qt5/include/QtWidgets/${PKGVERSION}/QtWidgets/private/qwidget_p.h
qt5/include/QtWidgets/${PKGVERSION}/QtWidgets/private/qwidgetaction_p.h
@@ -1926,10 +2039,6 @@ qt5/include/QtWidgets/${PKGVERSION}/QtWidgets/private/qwidgettextcontrol_p.h
qt5/include/QtWidgets/${PKGVERSION}/QtWidgets/private/qwidgettextcontrol_p_p.h
qt5/include/QtWidgets/${PKGVERSION}/QtWidgets/private/qwidgetwindow_p.h
qt5/include/QtWidgets/${PKGVERSION}/QtWidgets/private/qwindowcontainer_p.h
-qt5/include/QtWidgets/${PKGVERSION}/QtWidgets/private/qwindowscestyle_p.h
-qt5/include/QtWidgets/${PKGVERSION}/QtWidgets/private/qwindowscestyle_p_p.h
-qt5/include/QtWidgets/${PKGVERSION}/QtWidgets/private/qwindowsmobilestyle_p.h
-qt5/include/QtWidgets/${PKGVERSION}/QtWidgets/private/qwindowsmobilestyle_p_p.h
qt5/include/QtWidgets/${PKGVERSION}/QtWidgets/private/qwindowsstyle_p.h
qt5/include/QtWidgets/${PKGVERSION}/QtWidgets/private/qwindowsstyle_p_p.h
qt5/include/QtWidgets/${PKGVERSION}/QtWidgets/private/qwindowsvistastyle_p.h
@@ -1937,12 +2046,8 @@ qt5/include/QtWidgets/${PKGVERSION}/QtWidgets/private/qwindowsvistastyle_p_p.h
qt5/include/QtWidgets/${PKGVERSION}/QtWidgets/private/qwindowsxpstyle_p.h
qt5/include/QtWidgets/${PKGVERSION}/QtWidgets/private/qwindowsxpstyle_p_p.h
qt5/include/QtWidgets/${PKGVERSION}/QtWidgets/private/qwizard_win_p.h
-qt5/include/QtWidgets/5.5.1/QtWidgets/private/complexwidgets_p.h
-qt5/include/QtWidgets/5.5.1/QtWidgets/private/itemviews_p.h
-qt5/include/QtWidgets/5.5.1/QtWidgets/private/qaccessiblemenu_p.h
-qt5/include/QtWidgets/5.5.1/QtWidgets/private/qaccessiblewidgets_p.h
-qt5/include/QtWidgets/5.5.1/QtWidgets/private/rangecontrols_p.h
-qt5/include/QtWidgets/5.5.1/QtWidgets/private/simplewidgets_p.h
+qt5/include/QtWidgets/${PKGVERSION}/QtWidgets/private/rangecontrols_p.h
+qt5/include/QtWidgets/${PKGVERSION}/QtWidgets/private/simplewidgets_p.h
qt5/include/QtWidgets/QAbstractButton
qt5/include/QtWidgets/QAbstractGraphicsShapeItem
qt5/include/QtWidgets/QAbstractItemDelegate
@@ -2285,6 +2390,8 @@ qt5/include/QtWidgets/qtooltip.h
qt5/include/QtWidgets/qtreeview.h
qt5/include/QtWidgets/qtreewidget.h
qt5/include/QtWidgets/qtreewidgetitemiterator.h
+qt5/include/QtWidgets/qtwidgets-config.h
+qt5/include/QtWidgets/qtwidgetsglobal.h
qt5/include/QtWidgets/qtwidgetsversion.h
qt5/include/QtWidgets/qundogroup.h
qt5/include/QtWidgets/qundostack.h
@@ -2292,8 +2399,8 @@ qt5/include/QtWidgets/qundoview.h
qt5/include/QtWidgets/qwhatsthis.h
qt5/include/QtWidgets/qwidget.h
qt5/include/QtWidgets/qwidgetaction.h
-qt5/include/QtWidgets/qwidgetsfunctions_wince.h
qt5/include/QtWidgets/qwizard.h
+qt5/include/QtXml/${PKGVERSION}/QtXml/private/qtxml-config_p.h
qt5/include/QtXml/${PKGVERSION}/QtXml/private/qxml_p.h
qt5/include/QtXml/QDomAttr
qt5/include/QtXml/QDomCDATASection
@@ -2330,11 +2437,13 @@ qt5/include/QtXml/QtXml
qt5/include/QtXml/QtXmlDepends
qt5/include/QtXml/QtXmlVersion
qt5/include/QtXml/qdom.h
+qt5/include/QtXml/qtxml-config.h
qt5/include/QtXml/qtxmlglobal.h
qt5/include/QtXml/qtxmlversion.h
qt5/include/QtXml/qxml.h
qt5/lib/cmake/Qt5/Qt5Config.cmake
qt5/lib/cmake/Qt5/Qt5ConfigVersion.cmake
+qt5/lib/cmake/Qt5/Qt5ModuleLocation.cmake
qt5/lib/cmake/Qt5Concurrent/Qt5ConcurrentConfig.cmake
qt5/lib/cmake/Qt5Concurrent/Qt5ConcurrentConfigVersion.cmake
qt5/lib/cmake/Qt5Core/Qt5CTestMacros.cmake
@@ -2353,19 +2462,22 @@ qt5/lib/cmake/Qt5Gui/Qt5GuiConfigVersion.cmake
${PLIST.mac}qt5/lib/cmake/Qt5Gui/Qt5Gui_QCocoaIntegrationPlugin.cmake
${PLIST.unix}qt5/lib/cmake/Qt5Gui/Qt5Gui_QComposePlatformInputContextPlugin.cmake
${PLIST.egl}qt5/lib/cmake/Qt5Gui/Qt5Gui_QEglFSIntegrationPlugin.cmake
+${PLIST.egl}qt5/lib/cmake/Qt5Gui/Qt5Gui_QEglFSKmsEglDeviceIntegrationPlugin.cmake
+${PLIST.egl}qt5/lib/cmake/Qt5Gui/Qt5Gui_QEglFSKmsGbmIntegrationPlugin.cmake
${PLIST.egl}qt5/lib/cmake/Qt5Gui/Qt5Gui_QEglFSX11IntegrationPlugin.cmake
qt5/lib/cmake/Qt5Gui/Qt5Gui_QGifPlugin.cmake
-${PLIST.gtk2}qt5/lib/cmake/Qt5Gui/Qt5Gui_QGtk2ThemePlugin.cmake
+${PLIST.gtk3}qt5/lib/cmake/Qt5Gui/Qt5Gui_QGtk2ThemePlugin.cmake
qt5/lib/cmake/Qt5Gui/Qt5Gui_QICOPlugin.cmake
${PLIST.unix}qt5/lib/cmake/Qt5Gui/Qt5Gui_QIbusPlatformInputContextPlugin.cmake
qt5/lib/cmake/Qt5Gui/Qt5Gui_QJpegPlugin.cmake
${PLIST.egl}qt5/lib/cmake/Qt5Gui/Qt5Gui_QMinimalEglIntegrationPlugin.cmake
qt5/lib/cmake/Qt5Gui/Qt5Gui_QMinimalIntegrationPlugin.cmake
-${PLIST.unix}qt5/lib/cmake/Qt5Gui/Qt5Gui_QXcbIntegrationPlugin.cmake
qt5/lib/cmake/Qt5Gui/Qt5Gui_QOffscreenIntegrationPlugin.cmake
qt5/lib/cmake/Qt5Gui/Qt5Gui_QTuioTouchPlugin.cmake
-${PLIST.unix}qt5/lib/cmake/Qt5Gui/Qt5Gui_QXcbGlxIntegrationPlugin.cmake
+qt5/lib/cmake/Qt5Gui/Qt5Gui_QVncIntegrationPlugin.cmake
${PLIST.egl}qt5/lib/cmake/Qt5Gui/Qt5Gui_QXcbEglIntegrationPlugin.cmake
+${PLIST.unix}qt5/lib/cmake/Qt5Gui/Qt5Gui_QXcbGlxIntegrationPlugin.cmake
+${PLIST.unix}qt5/lib/cmake/Qt5Gui/Qt5Gui_QXcbIntegrationPlugin.cmake
qt5/lib/cmake/Qt5Network/Qt5NetworkConfig.cmake
qt5/lib/cmake/Qt5Network/Qt5NetworkConfigVersion.cmake
${PLIST.mac}qt5/lib/cmake/Qt5Network/Qt5Network_QCoreWlanEnginePlugin.cmake
@@ -2381,6 +2493,7 @@ ${PLIST.cups}qt5/lib/cmake/Qt5PrintSupport/Qt5PrintSupport_QCupsPrinterSupportPl
qt5/lib/cmake/Qt5Sql/Qt5SqlConfig.cmake
qt5/lib/cmake/Qt5Sql/Qt5SqlConfigVersion.cmake
qt5/lib/cmake/Qt5Test/Qt5TestConfig.cmake
+qt5/lib/cmake/Qt5Test/Qt5TestConfigExtras.cmake
qt5/lib/cmake/Qt5Test/Qt5TestConfigVersion.cmake
qt5/lib/cmake/Qt5Widgets/Qt5WidgetsConfig.cmake
qt5/lib/cmake/Qt5Widgets/Qt5WidgetsConfigExtras.cmake
@@ -2388,6 +2501,8 @@ qt5/lib/cmake/Qt5Widgets/Qt5WidgetsConfigVersion.cmake
qt5/lib/cmake/Qt5Widgets/Qt5WidgetsMacros.cmake
qt5/lib/cmake/Qt5Xml/Qt5XmlConfig.cmake
qt5/lib/cmake/Qt5Xml/Qt5XmlConfigVersion.cmake
+qt5/lib/libQt5AccessibilitySupport.la
+qt5/lib/libQt5AccessibilitySupport.prl
qt5/lib/libQt5Bootstrap.la
qt5/lib/libQt5Bootstrap.prl
qt5/lib/libQt5Concurrent.la
@@ -2396,45 +2511,63 @@ qt5/lib/libQt5Core.la
qt5/lib/libQt5Core.prl
qt5/lib/libQt5DBus.la
qt5/lib/libQt5DBus.prl
-${PLIST.egl}qt5/lib/libQt5EglDeviceIntegration.la
-${PLIST.egl}qt5/lib/libQt5EglDeviceIntegration.prl
+qt5/lib/libQt5DeviceDiscoverySupport.la
+qt5/lib/libQt5DeviceDiscoverySupport.prl
+${PLIST.egl}qt5/lib/libQt5EglFSDeviceIntegration.la
+${PLIST.egl}qt5/lib/libQt5EglFSDeviceIntegration.prl
+${PLIST.egl}qt5/lib/libQt5EglFsKmsSupport.la
+${PLIST.egl}qt5/lib/libQt5EglFsKmsSupport.prl
+${PLIST.egl}qt5/lib/libQt5EglSupport.la
+${PLIST.egl}qt5/lib/libQt5EglSupport.prl
+qt5/lib/libQt5EventDispatcherSupport.la
+qt5/lib/libQt5EventDispatcherSupport.prl
+qt5/lib/libQt5FbSupport.la
+qt5/lib/libQt5FbSupport.prl
+qt5/lib/libQt5FontDatabaseSupport.la
+qt5/lib/libQt5FontDatabaseSupport.prl
+qt5/lib/libQt5GlxSupport.la
+qt5/lib/libQt5GlxSupport.prl
qt5/lib/libQt5Gui.la
qt5/lib/libQt5Gui.prl
+qt5/lib/libQt5InputSupport.la
+qt5/lib/libQt5InputSupport.prl
+qt5/lib/libQt5LinuxAccessibilitySupport.la
+qt5/lib/libQt5LinuxAccessibilitySupport.prl
qt5/lib/libQt5Network.la
qt5/lib/libQt5Network.prl
qt5/lib/libQt5OpenGL.la
qt5/lib/libQt5OpenGL.prl
qt5/lib/libQt5OpenGLExtensions.la
qt5/lib/libQt5OpenGLExtensions.prl
-qt5/lib/libQt5PlatformSupport.la
-qt5/lib/libQt5PlatformSupport.prl
+qt5/lib/libQt5PlatformCompositorSupport.la
+qt5/lib/libQt5PlatformCompositorSupport.prl
qt5/lib/libQt5PrintSupport.la
qt5/lib/libQt5PrintSupport.prl
+qt5/lib/libQt5ServiceSupport.la
+qt5/lib/libQt5ServiceSupport.prl
qt5/lib/libQt5Sql.la
qt5/lib/libQt5Sql.prl
qt5/lib/libQt5Test.la
qt5/lib/libQt5Test.prl
+qt5/lib/libQt5ThemeSupport.la
+qt5/lib/libQt5ThemeSupport.prl
qt5/lib/libQt5Widgets.la
qt5/lib/libQt5Widgets.prl
${PLIST.unix}qt5/lib/libQt5XcbQpa.la
${PLIST.unix}qt5/lib/libQt5XcbQpa.prl
qt5/lib/libQt5Xml.la
qt5/lib/libQt5Xml.prl
-qt5/lib/pkgconfig/Qt5Bootstrap.pc
qt5/lib/pkgconfig/Qt5Concurrent.pc
qt5/lib/pkgconfig/Qt5Core.pc
qt5/lib/pkgconfig/Qt5DBus.pc
-${PLIST.egl}qt5/lib/pkgconfig/Qt5EglDeviceIntegration.pc
qt5/lib/pkgconfig/Qt5Gui.pc
qt5/lib/pkgconfig/Qt5Network.pc
qt5/lib/pkgconfig/Qt5OpenGL.pc
qt5/lib/pkgconfig/Qt5OpenGLExtensions.pc
-qt5/lib/pkgconfig/Qt5PlatformSupport.pc
qt5/lib/pkgconfig/Qt5PrintSupport.pc
qt5/lib/pkgconfig/Qt5Sql.pc
qt5/lib/pkgconfig/Qt5Test.pc
qt5/lib/pkgconfig/Qt5Widgets.pc
-${PLIST.unix}qt5/lib/pkgconfig/Qt5XcbQpa.pc
qt5/lib/pkgconfig/Qt5Xml.pc
qt5/mkspecs/aix-g++-64/qmake.conf
qt5/mkspecs/aix-g++-64/qplatformdefs.h
@@ -2444,15 +2577,17 @@ qt5/mkspecs/aix-xlc-64/qmake.conf
qt5/mkspecs/aix-xlc-64/qplatformdefs.h
qt5/mkspecs/aix-xlc/qmake.conf
qt5/mkspecs/aix-xlc/qplatformdefs.h
+qt5/mkspecs/android-clang/qmake.conf
+qt5/mkspecs/android-clang/qplatformdefs.h
qt5/mkspecs/android-g++/qmake.conf
qt5/mkspecs/android-g++/qplatformdefs.h
-qt5/mkspecs/blackberry-armle-v7-qcc/qmake.conf
-qt5/mkspecs/blackberry-armle-v7-qcc/qplatformdefs.h
-qt5/mkspecs/blackberry-x86-qcc/qmake.conf
-qt5/mkspecs/blackberry-x86-qcc/qplatformdefs.h
qt5/mkspecs/common/aix/qplatformdefs.h
+qt5/mkspecs/common/android-base-head.conf
+qt5/mkspecs/common/android-base-tail.conf
qt5/mkspecs/common/android/qplatformdefs.h
-qt5/mkspecs/common/armcc.conf
+qt5/mkspecs/common/angle.conf
+qt5/mkspecs/common/bsd/bsd.conf
+qt5/mkspecs/common/bsd/qplatformdefs.h
qt5/mkspecs/common/c89/qplatformdefs.h
qt5/mkspecs/common/clang-mac.conf
qt5/mkspecs/common/clang.conf
@@ -2463,23 +2598,28 @@ qt5/mkspecs/common/g++.conf
qt5/mkspecs/common/gcc-base-mac.conf
qt5/mkspecs/common/gcc-base-unix.conf
qt5/mkspecs/common/gcc-base.conf
+qt5/mkspecs/common/ghs-base.conf
+qt5/mkspecs/common/ghs-integrity-armv7.conf
+qt5/mkspecs/common/ghs-integrity-x86.conf
+qt5/mkspecs/common/integrity/qplatformdefs.h
qt5/mkspecs/common/ios.conf
-qt5/mkspecs/common/ios/GLES2/gl2.h
qt5/mkspecs/common/ios/clang.conf
qt5/mkspecs/common/ios/qmake.conf
-qt5/mkspecs/common/linux-android.conf
qt5/mkspecs/common/linux.conf
qt5/mkspecs/common/llvm.conf
qt5/mkspecs/common/mac.conf
qt5/mkspecs/common/mac/qplatformdefs.h
qt5/mkspecs/common/macx.conf
+qt5/mkspecs/common/msvc-base.conf
qt5/mkspecs/common/msvc-desktop.conf
qt5/mkspecs/common/nacl/g++-nacl32.conf
qt5/mkspecs/common/nacl/g++-nacl64.conf
qt5/mkspecs/common/nacl/nacl-base.conf
qt5/mkspecs/common/nacl/qplatformdefs.h
qt5/mkspecs/common/posix/qplatformdefs.h
+qt5/mkspecs/common/qcc-base-qnx-aarch64le.conf
qt5/mkspecs/common/qcc-base-qnx-armle-v7.conf
+qt5/mkspecs/common/qcc-base-qnx-x86-64.conf
qt5/mkspecs/common/qcc-base-qnx-x86.conf
qt5/mkspecs/common/qcc-base-qnx.conf
qt5/mkspecs/common/qcc-base.conf
@@ -2488,9 +2628,11 @@ qt5/mkspecs/common/qnx/qplatformdefs.h
qt5/mkspecs/common/sanitize.conf
qt5/mkspecs/common/shell-unix.conf
qt5/mkspecs/common/shell-win32.conf
+qt5/mkspecs/common/tvos.conf
+qt5/mkspecs/common/uikit.conf
+qt5/mkspecs/common/uikit/GLES2/gl2.h
qt5/mkspecs/common/unix.conf
-qt5/mkspecs/common/wince/qmake.conf
-qt5/mkspecs/common/wince/qplatformdefs.h
+qt5/mkspecs/common/watchos.conf
qt5/mkspecs/common/winrt_winphone/assets/logo_150x150.png
qt5/mkspecs/common/winrt_winphone/assets/logo_30x30.png
qt5/mkspecs/common/winrt_winphone/assets/logo_310x150.png
@@ -2518,25 +2660,43 @@ qt5/mkspecs/devices/linux-archos-gen8-g++/qplatformdefs.h
qt5/mkspecs/devices/linux-arm-amlogic-8726M-g++/qeglfshooks_8726m.cpp
qt5/mkspecs/devices/linux-arm-amlogic-8726M-g++/qmake.conf
qt5/mkspecs/devices/linux-arm-amlogic-8726M-g++/qplatformdefs.h
+qt5/mkspecs/devices/linux-arm-generic-g++/qmake.conf
+qt5/mkspecs/devices/linux-arm-generic-g++/qplatformdefs.h
qt5/mkspecs/devices/linux-arm-hisilicon-hix5hd2-g++/qmake.conf
qt5/mkspecs/devices/linux-arm-hisilicon-hix5hd2-g++/qplatformdefs.h
qt5/mkspecs/devices/linux-arm-trident-pnx8473-g++/qmake.conf
qt5/mkspecs/devices/linux-arm-trident-pnx8473-g++/qplatformdefs.h
qt5/mkspecs/devices/linux-beagleboard-g++/qmake.conf
qt5/mkspecs/devices/linux-beagleboard-g++/qplatformdefs.h
+qt5/mkspecs/devices/linux-colibri-vf-g++/qmake.conf
+qt5/mkspecs/devices/linux-colibri-vf-g++/qplatformdefs.h
+qt5/mkspecs/devices/linux-drive-cx-g++/qmake.conf
+qt5/mkspecs/devices/linux-drive-cx-g++/qplatformdefs.h
qt5/mkspecs/devices/linux-imx53qsb-g++/qmake.conf
qt5/mkspecs/devices/linux-imx53qsb-g++/qplatformdefs.h
qt5/mkspecs/devices/linux-imx6-g++/qmake.conf
qt5/mkspecs/devices/linux-imx6-g++/qplatformdefs.h
+qt5/mkspecs/devices/linux-imx7-g++/qmake.conf
+qt5/mkspecs/devices/linux-imx7-g++/qplatformdefs.h
+qt5/mkspecs/devices/linux-jetson-tk1-g++/qmake.conf
+qt5/mkspecs/devices/linux-jetson-tk1-g++/qplatformdefs.h
+qt5/mkspecs/devices/linux-jetson-tk1-pro-g++/qmake.conf
+qt5/mkspecs/devices/linux-jetson-tk1-pro-g++/qplatformdefs.h
qt5/mkspecs/devices/linux-mipsel-broadcom-97425-g++/qdirectfbeglhooks_bcm97425.cpp
qt5/mkspecs/devices/linux-mipsel-broadcom-97425-g++/qmake.conf
qt5/mkspecs/devices/linux-mipsel-broadcom-97425-g++/qplatformdefs.h
+qt5/mkspecs/devices/linux-nuc-g++/qmake.conf
+qt5/mkspecs/devices/linux-nuc-g++/qplatformdefs.h
qt5/mkspecs/devices/linux-odroid-xu3-g++/qmake.conf
qt5/mkspecs/devices/linux-odroid-xu3-g++/qplatformdefs.h
qt5/mkspecs/devices/linux-rasp-pi-g++/qmake.conf
qt5/mkspecs/devices/linux-rasp-pi-g++/qplatformdefs.h
qt5/mkspecs/devices/linux-rasp-pi2-g++/qmake.conf
qt5/mkspecs/devices/linux-rasp-pi2-g++/qplatformdefs.h
+qt5/mkspecs/devices/linux-rpi3-g++/qmake.conf
+qt5/mkspecs/devices/linux-rpi3-g++/qplatformdefs.h
+qt5/mkspecs/devices/linux-rpi3-vc4-g++/qmake.conf
+qt5/mkspecs/devices/linux-rpi3-vc4-g++/qplatformdefs.h
qt5/mkspecs/devices/linux-sh4-stmicro-ST7108-g++/qmake.conf
qt5/mkspecs/devices/linux-sh4-stmicro-ST7108-g++/qplatformdefs.h
qt5/mkspecs/devices/linux-sh4-stmicro-ST7540-g++/qmake.conf
@@ -2548,11 +2708,12 @@ qt5/mkspecs/devices/linux-tegra2-g++/qplatformdefs.h
qt5/mkspecs/devices/qmake.conf
qt5/mkspecs/features/android/android.prf
qt5/mkspecs/features/android/android_deployment_settings.prf
+qt5/mkspecs/features/android/sdk.prf
+qt5/mkspecs/features/benchmark.prf
qt5/mkspecs/features/build_pass.prf
-qt5/mkspecs/features/c++11.prf
-qt5/mkspecs/features/c++14.prf
qt5/mkspecs/features/cmake_functions.prf
qt5/mkspecs/features/configure.prf
+qt5/mkspecs/features/configure_base.prf
qt5/mkspecs/features/create_cmake.prf
qt5/mkspecs/features/ctest_testcase.prf
qt5/mkspecs/features/ctest_testcase_common.prf
@@ -2563,6 +2724,8 @@ qt5/mkspecs/features/data/cmake/Qt5BasicConfig.cmake.in
qt5/mkspecs/features/data/cmake/Qt5ConfigVersion.cmake.in
qt5/mkspecs/features/data/cmake/Qt5PluginTarget.cmake.in
qt5/mkspecs/features/data/dummy.cpp
+qt5/mkspecs/features/data/mac/objc_namespace.sh
+qt5/mkspecs/features/data/unix/findclasslist.pl
qt5/mkspecs/features/dbusadaptors.prf
qt5/mkspecs/features/dbuscommon.pri
qt5/mkspecs/features/dbusinterfaces.prf
@@ -2576,6 +2739,7 @@ qt5/mkspecs/features/exceptions.prf
qt5/mkspecs/features/exceptions_off.prf
qt5/mkspecs/features/exclusive_builds.prf
qt5/mkspecs/features/exclusive_builds_post.prf
+qt5/mkspecs/features/file_copies.prf
qt5/mkspecs/features/gcov.prf
qt5/mkspecs/features/include_source_dir.prf
qt5/mkspecs/features/incredibuild_xge.prf
@@ -2584,31 +2748,37 @@ qt5/mkspecs/features/lex.prf
qt5/mkspecs/features/link_ltcg.prf
qt5/mkspecs/features/link_pkgconfig.prf
qt5/mkspecs/features/ltcg.prf
+qt5/mkspecs/features/mac/asset_catalogs.prf
qt5/mkspecs/features/mac/default_post.prf
qt5/mkspecs/features/mac/objective_c.prf
qt5/mkspecs/features/mac/rez.prf
qt5/mkspecs/features/mac/sdk.prf
+qt5/mkspecs/features/mac/toolchain.prf
+qt5/mkspecs/features/mac/unsupported/objc_namespace.prf
qt5/mkspecs/features/moc.prf
qt5/mkspecs/features/no_debug_info.prf
+qt5/mkspecs/features/plugin_bundle.prf
qt5/mkspecs/features/precompile_header.prf
-qt5/mkspecs/features/qfeatures.prf
+qt5/mkspecs/features/qgltf.prf
qt5/mkspecs/features/qlalr.prf
qt5/mkspecs/features/qmake.conf
+qt5/mkspecs/features/qmake_use.prf
qt5/mkspecs/features/qml1_module.prf
qt5/mkspecs/features/qml1_plugin.prf
qt5/mkspecs/features/qml_debug.prf
qt5/mkspecs/features/qml_module.prf
qt5/mkspecs/features/qml_plugin.prf
qt5/mkspecs/features/qmltestcase.prf
-qt5/mkspecs/features/qpa/basicunixfontdatabase.prf
-qt5/mkspecs/features/qpa/genericunixfontdatabase.prf
qt5/mkspecs/features/qt.prf
qt5/mkspecs/features/qt_android_deps.prf
qt5/mkspecs/features/qt_app.prf
qt5/mkspecs/features/qt_build_config.prf
+qt5/mkspecs/features/qt_build_extra.prf
qt5/mkspecs/features/qt_build_paths.prf
+qt5/mkspecs/features/qt_clear_installs.prf
qt5/mkspecs/features/qt_common.prf
qt5/mkspecs/features/qt_config.prf
+qt5/mkspecs/features/qt_configure.prf
qt5/mkspecs/features/qt_docs.prf
qt5/mkspecs/features/qt_docs_targets.prf
qt5/mkspecs/features/qt_example_installs.prf
@@ -2635,9 +2805,24 @@ qt5/mkspecs/features/testcase.prf
qt5/mkspecs/features/testcase_targets.prf
qt5/mkspecs/features/testcocoon.prf
qt5/mkspecs/features/testlib_defines.prf
+qt5/mkspecs/features/toolchain.prf
qt5/mkspecs/features/uic.prf
+qt5/mkspecs/features/uikit/bitcode.prf
+qt5/mkspecs/features/uikit/default_post.prf
+qt5/mkspecs/features/uikit/default_pre.prf
+qt5/mkspecs/features/uikit/device_destinations.sh
+qt5/mkspecs/features/uikit/devices.pl
+qt5/mkspecs/features/uikit/exclusive_builds_post.prf
+qt5/mkspecs/features/uikit/qt.prf
+qt5/mkspecs/features/uikit/qt_config.prf
+qt5/mkspecs/features/uikit/qt_parts.prf
+qt5/mkspecs/features/uikit/resolve_config.prf
+qt5/mkspecs/features/uikit/sdk.prf
+qt5/mkspecs/features/uikit/testcase.prf
+qt5/mkspecs/features/uikit/testcase_targets.prf
+qt5/mkspecs/features/uikit/xcodebuild.mk
+qt5/mkspecs/features/uikit/xcodebuild.prf
qt5/mkspecs/features/unix/bsymbolic_functions.prf
-qt5/mkspecs/features/unix/dylib.prf
qt5/mkspecs/features/unix/hide_symbols.prf
qt5/mkspecs/features/unix/largefile.prf
qt5/mkspecs/features/unix/opengl.prf
@@ -2660,26 +2845,23 @@ qt5/mkspecs/features/win32/idcidl.prf
qt5/mkspecs/features/win32/msvc_mp.prf
qt5/mkspecs/features/win32/opengl.prf
qt5/mkspecs/features/win32/openvg.prf
-qt5/mkspecs/features/win32/qt_config.prf
qt5/mkspecs/features/win32/qt_dll.prf
qt5/mkspecs/features/win32/rtti.prf
qt5/mkspecs/features/win32/rtti_off.prf
+qt5/mkspecs/features/win32/separate_debug_info.prf
qt5/mkspecs/features/win32/stl.prf
qt5/mkspecs/features/win32/stl_off.prf
qt5/mkspecs/features/win32/windeployqt.prf
qt5/mkspecs/features/win32/windows.prf
qt5/mkspecs/features/winrt/console.prf
qt5/mkspecs/features/winrt/default_pre.prf
-qt5/mkspecs/features/winrt/font_deployment.prf
qt5/mkspecs/features/winrt/package_manifest.prf
qt5/mkspecs/features/xctest.prf
qt5/mkspecs/features/yacc.prf
+qt5/mkspecs/freebsd-clang/qmake.conf
+qt5/mkspecs/freebsd-clang/qplatformdefs.h
qt5/mkspecs/freebsd-g++/qmake.conf
qt5/mkspecs/freebsd-g++/qplatformdefs.h
-qt5/mkspecs/freebsd-g++46/qmake.conf
-qt5/mkspecs/freebsd-g++46/qplatformdefs.h
-qt5/mkspecs/freebsd-icc/qmake.conf
-qt5/mkspecs/freebsd-icc/qplatformdefs.h
qt5/mkspecs/haiku-g++/qmake.conf
qt5/mkspecs/haiku-g++/qplatformdefs.h
qt5/mkspecs/hpux-acc-64/qmake.conf
@@ -2700,6 +2882,12 @@ qt5/mkspecs/hpuxi-g++-64/qmake.conf
qt5/mkspecs/hpuxi-g++-64/qplatformdefs.h
qt5/mkspecs/hurd-g++/qmake.conf
qt5/mkspecs/hurd-g++/qplatformdefs.h
+qt5/mkspecs/integrity-armv7-imx6/qmake.conf
+qt5/mkspecs/integrity-armv7-imx6/qplatformdefs.h
+qt5/mkspecs/integrity-armv7/qmake.conf
+qt5/mkspecs/integrity-armv7/qplatformdefs.h
+qt5/mkspecs/integrity-x86/qmake.conf
+qt5/mkspecs/integrity-x86/qplatformdefs.h
qt5/mkspecs/irix-cc-64/qmake.conf
qt5/mkspecs/irix-cc-64/qplatformdefs.h
qt5/mkspecs/irix-cc/qmake.conf
@@ -2739,55 +2927,67 @@ qt5/mkspecs/linux-pgcc/qplatformdefs.h
qt5/mkspecs/lynxos-g++/qmake.conf
qt5/mkspecs/lynxos-g++/qplatformdefs.h
qt5/mkspecs/macx-clang-32/Info.plist.app
+qt5/mkspecs/macx-clang-32/Info.plist.dSYM.in
qt5/mkspecs/macx-clang-32/Info.plist.lib
qt5/mkspecs/macx-clang-32/qmake.conf
qt5/mkspecs/macx-clang-32/qplatformdefs.h
qt5/mkspecs/macx-clang/Info.plist.app
+qt5/mkspecs/macx-clang/Info.plist.dSYM.in
qt5/mkspecs/macx-clang/Info.plist.lib
qt5/mkspecs/macx-clang/qmake.conf
qt5/mkspecs/macx-clang/qplatformdefs.h
qt5/mkspecs/macx-g++-32/Info.plist.app
+qt5/mkspecs/macx-g++-32/Info.plist.dSYM.in
qt5/mkspecs/macx-g++-32/Info.plist.lib
qt5/mkspecs/macx-g++-32/qmake.conf
qt5/mkspecs/macx-g++-32/qplatformdefs.h
qt5/mkspecs/macx-g++/Info.plist.app
+qt5/mkspecs/macx-g++/Info.plist.dSYM.in
qt5/mkspecs/macx-g++/Info.plist.lib
qt5/mkspecs/macx-g++/qmake.conf
qt5/mkspecs/macx-g++/qplatformdefs.h
qt5/mkspecs/macx-g++40/Info.plist.app
+qt5/mkspecs/macx-g++40/Info.plist.dSYM.in
qt5/mkspecs/macx-g++40/Info.plist.lib
qt5/mkspecs/macx-g++40/qmake.conf
qt5/mkspecs/macx-g++40/qplatformdefs.h
qt5/mkspecs/macx-g++42/Info.plist.app
+qt5/mkspecs/macx-g++42/Info.plist.dSYM.in
qt5/mkspecs/macx-g++42/Info.plist.lib
qt5/mkspecs/macx-g++42/qmake.conf
qt5/mkspecs/macx-g++42/qplatformdefs.h
qt5/mkspecs/macx-icc/Info.plist.app
+qt5/mkspecs/macx-icc/Info.plist.dSYM.in
qt5/mkspecs/macx-icc/Info.plist.lib
qt5/mkspecs/macx-icc/qmake.conf
qt5/mkspecs/macx-icc/qplatformdefs.h
qt5/mkspecs/macx-ios-clang/Default-568h%2x.png@localhost
qt5/mkspecs/macx-ios-clang/Info.plist.app
+qt5/mkspecs/macx-ios-clang/Info.plist.dSYM.in
qt5/mkspecs/macx-ios-clang/Info.plist.lib
qt5/mkspecs/macx-ios-clang/LaunchScreen.xib
qt5/mkspecs/macx-ios-clang/features/default_post.prf
-qt5/mkspecs/macx-ios-clang/features/default_pre.prf
-qt5/mkspecs/macx-ios-clang/features/qt.prf
-qt5/mkspecs/macx-ios-clang/features/qt_config.prf
-qt5/mkspecs/macx-ios-clang/features/qt_parts.prf
-qt5/mkspecs/macx-ios-clang/features/sdk.prf
qt5/mkspecs/macx-ios-clang/qmake.conf
qt5/mkspecs/macx-ios-clang/qplatformdefs.h
-qt5/mkspecs/macx-ios-clang/rename_main.sh
qt5/mkspecs/macx-llvm/Info.plist.app
+qt5/mkspecs/macx-llvm/Info.plist.dSYM.in
qt5/mkspecs/macx-llvm/Info.plist.lib
qt5/mkspecs/macx-llvm/qmake.conf
qt5/mkspecs/macx-llvm/qplatformdefs.h
+qt5/mkspecs/macx-tvos-clang/Info.plist.app
+qt5/mkspecs/macx-tvos-clang/Info.plist.lib
+qt5/mkspecs/macx-tvos-clang/qmake.conf
+qt5/mkspecs/macx-tvos-clang/qplatformdefs.h
+qt5/mkspecs/macx-watchos-clang/Info.plist.app
+qt5/mkspecs/macx-watchos-clang/Info.plist.lib
+qt5/mkspecs/macx-watchos-clang/qmake.conf
+qt5/mkspecs/macx-watchos-clang/qplatformdefs.h
qt5/mkspecs/macx-xcode/QtTest.plist
qt5/mkspecs/macx-xcode/WorkspaceSettings.xcsettings
qt5/mkspecs/macx-xcode/default.xcscheme
qt5/mkspecs/macx-xcode/qmake.conf
qt5/mkspecs/macx-xcode/qplatformdefs.h
+qt5/mkspecs/modules/qt_lib_accessibility_support_private.pri
qt5/mkspecs/modules/qt_lib_bootstrap_private.pri
qt5/mkspecs/modules/qt_lib_concurrent.pri
qt5/mkspecs/modules/qt_lib_concurrent_private.pri
@@ -2795,22 +2995,33 @@ qt5/mkspecs/modules/qt_lib_core.pri
qt5/mkspecs/modules/qt_lib_core_private.pri
qt5/mkspecs/modules/qt_lib_dbus.pri
qt5/mkspecs/modules/qt_lib_dbus_private.pri
-${PLIST.egl}qt5/mkspecs/modules/qt_lib_eglfs_device_lib_private.pri
+qt5/mkspecs/modules/qt_lib_devicediscovery_support_private.pri
+qt5/mkspecs/modules/qt_lib_egl_support_private.pri
+qt5/mkspecs/modules/qt_lib_eglfs_kms_support_private.pri
+qt5/mkspecs/modules/qt_lib_eglfsdeviceintegration_private.pri
+qt5/mkspecs/modules/qt_lib_eventdispatcher_support_private.pri
+qt5/mkspecs/modules/qt_lib_fb_support_private.pri
+qt5/mkspecs/modules/qt_lib_fontdatabase_support_private.pri
+qt5/mkspecs/modules/qt_lib_glx_support_private.pri
qt5/mkspecs/modules/qt_lib_gui.pri
qt5/mkspecs/modules/qt_lib_gui_private.pri
+qt5/mkspecs/modules/qt_lib_input_support_private.pri
+qt5/mkspecs/modules/qt_lib_linuxaccessibility_support_private.pri
qt5/mkspecs/modules/qt_lib_network.pri
qt5/mkspecs/modules/qt_lib_network_private.pri
qt5/mkspecs/modules/qt_lib_opengl.pri
qt5/mkspecs/modules/qt_lib_opengl_private.pri
qt5/mkspecs/modules/qt_lib_openglextensions.pri
qt5/mkspecs/modules/qt_lib_openglextensions_private.pri
-qt5/mkspecs/modules/qt_lib_platformsupport_private.pri
+qt5/mkspecs/modules/qt_lib_platformcompositor_support_private.pri
qt5/mkspecs/modules/qt_lib_printsupport.pri
qt5/mkspecs/modules/qt_lib_printsupport_private.pri
+qt5/mkspecs/modules/qt_lib_service_support_private.pri
qt5/mkspecs/modules/qt_lib_sql.pri
qt5/mkspecs/modules/qt_lib_sql_private.pri
qt5/mkspecs/modules/qt_lib_testlib.pri
qt5/mkspecs/modules/qt_lib_testlib_private.pri
+qt5/mkspecs/modules/qt_lib_theme_support_private.pri
qt5/mkspecs/modules/qt_lib_widgets.pri
qt5/mkspecs/modules/qt_lib_widgets_private.pri
${PLIST.unix}qt5/mkspecs/modules/qt_lib_xcb_qpa_lib_private.pri
@@ -2822,10 +3033,14 @@ qt5/mkspecs/openbsd-g++/qmake.conf
qt5/mkspecs/openbsd-g++/qplatformdefs.h
qt5/mkspecs/qconfig.pri
qt5/mkspecs/qdevice.pri
-qt5/mkspecs/qfeatures.pri
+qt5/mkspecs/qhost.pri
qt5/mkspecs/qmodule.pri
+qt5/mkspecs/qnx-aarch64le-qcc/qmake.conf
+qt5/mkspecs/qnx-aarch64le-qcc/qplatformdefs.h
qt5/mkspecs/qnx-armle-v7-qcc/qmake.conf
qt5/mkspecs/qnx-armle-v7-qcc/qplatformdefs.h
+qt5/mkspecs/qnx-x86-64-qcc/qmake.conf
+qt5/mkspecs/qnx-x86-64-qcc/qplatformdefs.h
qt5/mkspecs/qnx-x86-qcc/qmake.conf
qt5/mkspecs/qnx-x86-qcc/qplatformdefs.h
qt5/mkspecs/sco-cc/qmake.conf
@@ -2852,13 +3067,6 @@ qt5/mkspecs/unixware-cc/qmake.conf
qt5/mkspecs/unixware-cc/qplatformdefs.h
qt5/mkspecs/unixware-g++/qmake.conf
qt5/mkspecs/unixware-g++/qplatformdefs.h
-qt5/mkspecs/unsupported/android-g++/qeglfshooks_surfaceflinger.cpp
-qt5/mkspecs/unsupported/android-g++/qmake.conf
-qt5/mkspecs/unsupported/android-g++/qplatformdefs.h
-qt5/mkspecs/unsupported/freebsd-clang/qmake.conf
-qt5/mkspecs/unsupported/freebsd-clang/qplatformdefs.h
-qt5/mkspecs/unsupported/linux-armcc/qmake.conf
-qt5/mkspecs/unsupported/linux-armcc/qplatformdefs.h
qt5/mkspecs/unsupported/linux-host-g++/qmake.conf
qt5/mkspecs/unsupported/linux-host-g++/qplatformdefs.h
qt5/mkspecs/unsupported/linux-scratchbox2-g++/qmake.conf
@@ -2878,6 +3086,8 @@ qt5/mkspecs/unsupported/vxworks-simpentium-dcc/qmake.conf
qt5/mkspecs/unsupported/vxworks-simpentium-dcc/qplatformdefs.h
qt5/mkspecs/unsupported/vxworks-simpentium-g++/qmake.conf
qt5/mkspecs/unsupported/vxworks-simpentium-g++/qplatformdefs.h
+qt5/mkspecs/win32-clang-msvc2015/qmake.conf
+qt5/mkspecs/win32-clang-msvc2015/qplatformdefs.h
qt5/mkspecs/win32-g++/qmake.conf
qt5/mkspecs/win32-g++/qplatformdefs.h
qt5/mkspecs/win32-icc/qmake.conf
@@ -2894,16 +3104,8 @@ qt5/mkspecs/win32-msvc2013/qmake.conf
qt5/mkspecs/win32-msvc2013/qplatformdefs.h
qt5/mkspecs/win32-msvc2015/qmake.conf
qt5/mkspecs/win32-msvc2015/qplatformdefs.h
-qt5/mkspecs/wince60standard-armv4i-msvc2005/qmake.conf
-qt5/mkspecs/wince60standard-armv4i-msvc2005/qplatformdefs.h
-qt5/mkspecs/wince60standard-x86-msvc2005/qmake.conf
-qt5/mkspecs/wince60standard-x86-msvc2005/qplatformdefs.h
-qt5/mkspecs/wince70embedded-armv4i-msvc2008/qmake.conf
-qt5/mkspecs/wince70embedded-armv4i-msvc2008/qplatformdefs.h
-qt5/mkspecs/wince70embedded-x86-msvc2008/qmake.conf
-qt5/mkspecs/wince70embedded-x86-msvc2008/qplatformdefs.h
-qt5/mkspecs/wince80colibri-armv7-msvc2012/qmake.conf
-qt5/mkspecs/wince80colibri-armv7-msvc2012/qplatformdefs.h
+qt5/mkspecs/win32-msvc2017/qmake.conf
+qt5/mkspecs/win32-msvc2017/qplatformdefs.h
qt5/mkspecs/winphone-arm-msvc2013/qmake.conf
qt5/mkspecs/winphone-arm-msvc2013/qplatformdefs.h
qt5/mkspecs/winphone-x86-msvc2013/qmake.conf
@@ -2918,10 +3120,12 @@ qt5/mkspecs/winrt-x64-msvc2015/qmake.conf
qt5/mkspecs/winrt-x64-msvc2015/qplatformdefs.h
qt5/mkspecs/winrt-x86-msvc2013/qmake.conf
qt5/mkspecs/winrt-x86-msvc2013/qplatformdefs.h
-${PLIST.mac}qt5/plugins/bearer/libqcorewlanbearer.la
qt5/mkspecs/winrt-x86-msvc2015/qmake.conf
qt5/mkspecs/winrt-x86-msvc2015/qplatformdefs.h
+${PLIST.mac}qt5/plugins/bearer/libqcorewlanbearer.la
qt5/plugins/bearer/libqgenericbearer.la
+${PLIST.egl}qt5/plugins/egldeviceintegrations/libqeglfs-kms-egldevice-integration.la
+${PLIST.egl}qt5/plugins/egldeviceintegrations/libqeglfs-kms-integration.la
${PLIST.egl}qt5/plugins/egldeviceintegrations/libqeglfs-x11-integration.la
qt5/plugins/generic/libqtuiotouchplugin.la
qt5/plugins/imageformats/libqgif.la
@@ -2934,9 +3138,10 @@ ${PLIST.egl}qt5/plugins/platforms/libqeglfs.la
qt5/plugins/platforms/libqminimal.la
${PLIST.egl}qt5/plugins/platforms/libqminimalegl.la
qt5/plugins/platforms/libqoffscreen.la
+qt5/plugins/platforms/libqvnc.la
${PLIST.unix}qt5/plugins/platforms/libqxcb.la
-${PLIST.gtk2}qt5/plugins/platformthemes/libqgtk2.la
+${PLIST.gtk3}qt5/plugins/platformthemes/libqgtk2.la
${PLIST.mac}qt5/plugins/printsupport/libcocoaprintersupport.la
${PLIST.cups}qt5/plugins/printsupport/libcupsprintersupport.la
-${PLIST.unix}qt5/plugins/xcbglintegrations/libqxcb-glx-integration.la
${PLIST.egl}qt5/plugins/xcbglintegrations/libqxcb-egl-integration.la
+${PLIST.unix}qt5/plugins/xcbglintegrations/libqxcb-glx-integration.la
diff --git a/qt5-qtbase58/buildlink3.mk b/qt5-qtbase58/buildlink3.mk
index 694d60e631..5266bcba46 100644
--- a/qt5-qtbase58/buildlink3.mk
+++ b/qt5-qtbase58/buildlink3.mk
@@ -5,9 +5,9 @@ BUILDLINK_TREE+= qt5-qtbase
.if !defined(QT5_QTBASE_BUILDLINK3_MK)
QT5_QTBASE_BUILDLINK3_MK:=
-BUILDLINK_API_DEPENDS.qt5-qtbase+= qt5-qtbase>=5.5.1
-BUILDLINK_ABI_DEPENDS.qt5-qtbase+= qt5-qtbase>=5.5.1nb9
-BUILDLINK_PKGSRCDIR.qt5-qtbase?= ../../x11/qt5-qtbase
+BUILDLINK_API_DEPENDS.qt5-qtbase+= qt5-qtbase>=5.8.0
+BUILDLINK_ABI_DEPENDS.qt5-qtbase+= qt5-qtbase>=5.8.0
+BUILDLINK_PKGSRCDIR.qt5-qtbase?= ../../wip/qt5-qtbase58
BUILDLINK_INCDIRS.qt5-qtbase+= qt5/include
BUILDLINK_LIBDIRS.qt5-qtbase+= qt5/lib
diff --git a/qt5-qtbase58/options.mk b/qt5-qtbase58/options.mk
index 2eb4cfa071..d23a83cf8f 100644
--- a/qt5-qtbase58/options.mk
+++ b/qt5-qtbase58/options.mk
@@ -15,7 +15,7 @@ PLIST.cups= yes
CONFIGURE_ARGS+= -no-cups
.endif
-.if !empty(PKG_OPTIONS:Mgtk2)
+.if !empty(PKG_OPTIONS:Mgtk3)
. include "../../x11/gtk3/buildlink3.mk"
CONFIGURE_ARGS+= -gtk
PLIST.gtk3= yes
Home |
Main Index |
Thread Index |
Old Index