[Midnightbsd-cvs] mports [21606] trunk/devel/qt5-core: add qt5 core port
laffer1 at midnightbsd.org
laffer1 at midnightbsd.org
Sat Aug 13 14:59:40 EDT 2016
Revision: 21606
http://svnweb.midnightbsd.org/mports/?rev=21606
Author: laffer1
Date: 2016-08-13 14:59:40 -0400 (Sat, 13 Aug 2016)
Log Message:
-----------
add qt5 core port
Added Paths:
-----------
trunk/devel/qt5-core/
trunk/devel/qt5-core/Makefile
trunk/devel/qt5-core/files/
trunk/devel/qt5-core/files/patch-git_08be8691
trunk/devel/qt5-core/files/patch-git_090bf50
trunk/devel/qt5-core/files/patch-git_6552469
trunk/devel/qt5-core/files/patch-git_c8c4ad0
trunk/devel/qt5-core/files/patch-mkspecs__qt_functions.prf
trunk/devel/qt5-core/pkg-plist
Added: trunk/devel/qt5-core/Makefile
===================================================================
--- trunk/devel/qt5-core/Makefile (rev 0)
+++ trunk/devel/qt5-core/Makefile 2016-08-13 18:59:40 UTC (rev 21606)
@@ -0,0 +1,49 @@
+# $MidnightBSD$
+# $FreeBSD: head/devel/qt5-core/Makefile 418153 2016-07-06 22:10:14Z mat $
+
+PORTNAME= core
+DISTVERSION= ${QT5_VERSION}
+PORTREVISION= 0
+CATEGORIES= devel
+PKGNAMEPREFIX= qt5-
+
+MAINTAINER= ports at MidnightBSD.org
+COMMENT= Qt core non-graphical module
+
+LICENSE= gpl3
+
+LIB_DEPENDS= libicui18n.so:${PORTSDIR}/devel/icu \
+ libpcre.so:${PORTSDIR}/devel/pcre
+
+USES= execinfo
+USE_GNOME= glib20
+USE_QT5= qmake_build buildtools_build
+QT_DIST= base
+HAS_CONFIGURE= yes
+# Disable (almost) everything to install minimal qconfig.h.
+# -no-feature-* adds QT_NO_* (for features which have no switch or
+# that need to be detected).
+CONFIGURE_ARGS= -no-accessibility -no-gif -no-libpng -no-libjpeg \
+ -no-openssl -no-gui -no-widgets -no-cups \
+ -no-iconv -no-dbus -no-xcb -no-opengl \
+ -no-alsa -no-egl -no-evdev -no-feature-concurrent \
+ -no-fontconfig -no-freetype -no-gtkstyle -no-harfbuzz \
+ -no-libudev -no-pulseaudio -no-xcb -no-xinput -no-xkb \
+ -no-xkbcommon -no-xrender -no-xshape -no-xsync -no-xvideo
+USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL}
+
+BUILD_WRKSRC= ${WRKSRC}/src/corelib
+INSTALL_WRKSRC= ${BUILD_WRKSRC}
+
+QT_DEFINES= GLIB
+QT_CONFIG= glib icu
+
+.include <bsd.port.pre.mk>
+
+post-install:
+# Allow qconfig.h to be customized by single ports.
+ ${REINPLACE_CMD} -i "" '1 s|.*|#include <QtCore/qconfig-modules.h>|' \
+ ${STAGEDIR}${PREFIX}/${QT_INCDIR_REL}/QtCore/qconfig.h
+ ${CP} ${PREFIX}/lib/pkgconfig/Qt5Core.pc ${PREFIX}/libdata/pkgconfig/Qt5Core.pc
+
+.include <bsd.port.post.mk>
Property changes on: trunk/devel/qt5-core/Makefile
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/devel/qt5-core/files/patch-git_08be8691
===================================================================
--- trunk/devel/qt5-core/files/patch-git_08be8691 (rev 0)
+++ trunk/devel/qt5-core/files/patch-git_08be8691 2016-08-13 18:59:40 UTC (rev 21606)
@@ -0,0 +1,45 @@
+commit 08be8691f7ba5e522cbc000b1880941128ad5f8c
+Author: Dmitry Shachnev <mitya57 at gmail.com>
+Date: Fri Oct 23 21:21:38 2015 +0300
+
+ Fix QStorageInfo on BSD4 systems
+
+ - On NetBSD, the defines were not properly defined;
+ - On all other BSD systems, we use statfs which does not have f_frsize
+ member, revert to using f_bsize there.
+
+ Task-number: QTBUG-48267
+ Change-Id: Ia1ed484ac61a615fcbb5b45affb516b5e86a64b0
+ Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen at theqtcompany.com>
+ Reviewed-by: Lisandro Damián Nicanor Pérez Meyer <perezmeyer at gmail.com>
+ Reviewed-by: Thiago Macieira <thiago.macieira at intel.com>
+
+--- src/corelib/io/qstorageinfo_unix.cpp
++++ src/corelib/io/qstorageinfo_unix.cpp
+@@ -68,8 +68,8 @@
+
+ #if defined(Q_OS_BSD4)
+ # if defined(Q_OS_NETBSD)
+- define QT_STATFSBUF struct statvfs
+- define QT_STATFS ::statvfs
++# define QT_STATFSBUF struct statvfs
++# define QT_STATFS ::statvfs
+ # else
+ # define QT_STATFSBUF struct statfs
+ # define QT_STATFS ::statfs
+@@ -506,9 +506,15 @@ void QStorageInfoPrivate::retrieveVolumeInfo()
+ valid = true;
+ ready = true;
+
++#if defined(Q_OS_BSD4) && !defined(Q_OS_NETBSD)
++ bytesTotal = statfs_buf.f_blocks * statfs_buf.f_bsize;
++ bytesFree = statfs_buf.f_bfree * statfs_buf.f_bsize;
++ bytesAvailable = statfs_buf.f_bavail * statfs_buf.f_bsize;
++#else
+ bytesTotal = statfs_buf.f_blocks * statfs_buf.f_frsize;
+ bytesFree = statfs_buf.f_bfree * statfs_buf.f_frsize;
+ bytesAvailable = statfs_buf.f_bavail * statfs_buf.f_frsize;
++#endif
+ #if defined(Q_OS_ANDROID) || defined (Q_OS_BSD4)
+ #if defined(_STATFS_F_FLAGS)
+ readOnly = (statfs_buf.f_flags & ST_RDONLY) != 0;
Property changes on: trunk/devel/qt5-core/files/patch-git_08be8691
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/devel/qt5-core/files/patch-git_090bf50
===================================================================
--- trunk/devel/qt5-core/files/patch-git_090bf50 (rev 0)
+++ trunk/devel/qt5-core/files/patch-git_090bf50 2016-08-13 18:59:40 UTC (rev 21606)
@@ -0,0 +1,25 @@
+commit 090bf50771ec1e5d089b0ae0488059a5643883b2
+Author: Raphael Kubo da Costa <rakuco at FreeBSD.org>
+Date: Sun Dec 27 01:24:34 2015 +0100
+
+ forkfd: Only enable pipe2 on FreeBSD >= 10.0.
+
+ The system call is not present on earlier releases, and since the 9.x
+ series will be supported until the end of 2016, add a check for the
+ __FreeBSD_version macro and only enable pipe2 support if the value is
+ high enough.
+
+ Change-Id: I5633531cec7e95d42ff5f4b14afe772ae8d7d66d
+ Reviewed-by: Thiago Macieira <thiago.macieira at intel.com>
+
+--- src/3rdparty/forkfd/forkfd.c
++++ src/3rdparty/forkfd/forkfd.c
+@@ -62,7 +62,7 @@
+ # undef HAVE_WAITID
+ #endif
+
+-#if defined(__FreeBSD__)
++#if defined(__FreeBSD__) && defined(__FreeBSD_version) && __FreeBSD_version >= 1000032
+ # define HAVE_PIPE2 1
+ #endif
+
Property changes on: trunk/devel/qt5-core/files/patch-git_090bf50
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/devel/qt5-core/files/patch-git_6552469
===================================================================
--- trunk/devel/qt5-core/files/patch-git_6552469 (rev 0)
+++ trunk/devel/qt5-core/files/patch-git_6552469 2016-08-13 18:59:40 UTC (rev 21606)
@@ -0,0 +1,43 @@
+commit 655246969eaa916fbc098a7315dc24830f5b8b5d
+Author: Raphael Kubo da Costa <rakuco at FreeBSD.org>
+Date: Mon Dec 28 11:43:36 2015 +0100
+
+ forkfd: Also define BSD visibility macros in forkfd_qt.cpp.
+
+ This is a follow-up to c8c4ad0 ("forkfd: Define __BSD_VISIBLE and
+ _NETBSD_SOURCE").
+
+ Defining those macros in forkfd.c is not enough: forkfd_qt.cpp also sets
+ _POSIX_C_SOURCE, and sys/cdefs.h can be included implicitly via Qt's
+ headers (<algorithm> ends up pulling unistd.h that leads to sys/cdefs.h
+ and sys/types.h with both libstdc++ and older libc++ versions). In this
+ case, __BSD_VISIBLE/_NETBSD_SOURCE are not defined, _POSIX_C_SOURCE is,
+ several type definitions are omitted and by the time we include
+ sys/time.h in forkfd.c the build fails. On FreeBSD < 11, the error looks
+ like this:
+
+ In file included from io/../../3rdparty/forkfd/forkfd.c:36,
+ from io/forkfd_qt.cpp:80:
+ /usr/include/sys/time.h:94: error: 'u_int' has not been declared
+
+ Change-Id: I01fa2f5861027d99936d3026faeee9f0db3ecabd
+ Reviewed-by: Thiago Macieira <thiago.macieira at intel.com>
+
+--- src/corelib/io/forkfd_qt.cpp
++++ src/corelib/io/forkfd_qt.cpp
+@@ -39,6 +39,15 @@
+ # define _XOPEN_SOURCE 700
+ #endif
+
++// Define BSD visibility macros. These are also defined in forkfd.c, but the
++// headers using them may be included before forkfd.c itself.
++#ifndef _NETBSD_SOURCE
++# define _NETBSD_SOURCE 1
++#endif
++#ifndef __BSD_VISIBLE
++# define __BSD_VISIBLE 1
++#endif
++
+ #include <QtCore/qatomic.h>
+ #include "qprocess_p.h"
+
Property changes on: trunk/devel/qt5-core/files/patch-git_6552469
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/devel/qt5-core/files/patch-git_c8c4ad0
===================================================================
--- trunk/devel/qt5-core/files/patch-git_c8c4ad0 (rev 0)
+++ trunk/devel/qt5-core/files/patch-git_c8c4ad0 2016-08-13 18:59:40 UTC (rev 21606)
@@ -0,0 +1,31 @@
+commit c8c4ad0c62cacec749b6c42e0a58339446093bba
+Author: Raphael Kubo da Costa <rakuco at FreeBSD.org>
+Date: Sat Dec 26 02:30:58 2015 +0100
+
+ forkfd: Define __BSD_VISIBLE and _NETBSD_SOURCE.
+
+ pipe2's availability on BSD operating systems depends on the
+ __BSD_VISIBLE macro on FreeBSD and OpenBSD and _NETBSD_SOURCE on
+ NetBSD (DragonFly BSD appears to define it unconditionally).
+
+ Those two macros are generally set by default, except when
+ _POSIX_C_SOURCE is set. Since we consciously set _POSIX_C_SOURCE but
+ need pipe2, explicitly define the visibility macros.
+
+ This fixes the -no-pch build on FreeBSD at least.
+
+ Change-Id: Icc77f6b5d1f9a5bf7bd8048cabbb01f8f89397cc
+ Reviewed-by: Thiago Macieira <thiago.macieira at intel.com>
+--- src/3rdparty/forkfd/forkfd.c
++++ src/3rdparty/forkfd/forkfd.c
+@@ -25,8 +25,10 @@
+
+ #ifndef _GNU_SOURCE
+ # define _GNU_SOURCE
++# define _NETBSD_SOURCE 1
+ # define _POSIX_C_SOURCE 200809L
+ # define _XOPEN_SOURCE 700
++# define __BSD_VISIBLE 1
+ #endif
+ #include "forkfd.h"
+
Property changes on: trunk/devel/qt5-core/files/patch-git_c8c4ad0
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/devel/qt5-core/files/patch-mkspecs__qt_functions.prf
===================================================================
--- trunk/devel/qt5-core/files/patch-mkspecs__qt_functions.prf (rev 0)
+++ trunk/devel/qt5-core/files/patch-mkspecs__qt_functions.prf 2016-08-13 18:59:40 UTC (rev 21606)
@@ -0,0 +1,11 @@
+--- mkspecs/features/qt_functions.prf.orig 2016-08-13 13:26:41.680600797 -0400
++++ mkspecs/features/qt_functions.prf 2016-08-13 13:27:15.734600909 -0400
+@@ -271,7 +271,7 @@
+ }
+ equals(QMAKE_HOST.os, Windows) {
+ deppath.name = PATH
+- } else:contains(QMAKE_HOST.os, Linux|FreeBSD|OpenBSD|NetBSD|DragonFly|SunOS|HP-UX|QNX|GNU) {
++ } else:contains(QMAKE_HOST.os, Linux|FreeBSD|OpenBSD|NetBSD|MidnightBSD|DragonFly|SunOS|HP-UX|QNX|GNU) {
+ deppath.name = LD_LIBRARY_PATH
+ } else:contains(QMAKE_HOST.os, Haiku) {
+ deppath.name = LIBRARY_PATH
Property changes on: trunk/devel/qt5-core/files/patch-mkspecs__qt_functions.prf
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/devel/qt5-core/pkg-plist
===================================================================
--- trunk/devel/qt5-core/pkg-plist (rev 0)
+++ trunk/devel/qt5-core/pkg-plist 2016-08-13 18:59:40 UTC (rev 21606)
@@ -0,0 +1,675 @@
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/cp949codetbl_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qabstractanimation_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qabstracteventdispatcher_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qabstractfileengine_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qabstractitemmodel_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qabstractproxymodel_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qabstractstate_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qabstracttransition_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qanimationgroup_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qbig5codec_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qbytedata_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qcollator_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qcore_mac_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qcore_unix_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qcoreapplication_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qcorecmdlineargs_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qcoreglobaldata_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qcrashhandler_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qdatastream_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qdataurl_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qdatetime_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qdatetimeparser_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qdebug_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qdir_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qelfparser_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qeucjpcodec_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qeuckrcodec_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qeventdispatcher_blackberry_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qeventdispatcher_glib_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qeventdispatcher_unix_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qeventdispatcher_win_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qeventdispatcher_winrt_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qeventloop_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qeventtransition_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfactoryloader_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfile_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfiledevice_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfileinfo_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfileselector_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfilesystemengine_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfilesystementry_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfilesystemiterator_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfilesystemmetadata_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfilesystemwatcher_fsevents_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfilesystemwatcher_inotify_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfilesystemwatcher_kqueue_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfilesystemwatcher_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfilesystemwatcher_polling_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfilesystemwatcher_win_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfreelist_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfsfileengine_iterator_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfsfileengine_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfunctions_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfutureinterface_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qfuturewatcher_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qgb18030codec_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qharfbuzz_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qhistorystate_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qhooks_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qiconvcodec_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qicucodec_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qiodevice_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qipaddress_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qisciicodec_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qitemselectionmodel_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qjiscodec_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qjni_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qjnihelpers_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qjpunicode_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qjson_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qjsonparser_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qjsonwriter_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qlatincodec_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qlibrary_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qlocale_data_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qlocale_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qlocale_tools_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qlockfile_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qloggingregistry_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qmachparser_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qmetaobject_moc_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qmetaobject_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qmetaobjectbuilder_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qmetatype_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qmetatypeswitcher_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qmimedatabase_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qmimeglobpattern_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qmimemagicrule_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qmimemagicrulematcher_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qmimeprovider_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qmimetype_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qmimetypeparser_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qmutex_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qmutexpool_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qnoncontiguousbytedevice_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qnumeric_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qobject_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qorderedmutexlocker_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qparallelanimationgroup_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qpodlist_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qppsattribute_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qppsattributeprivate_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qppsobject_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qppsobjectprivate_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qprocess_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qpropertyanimation_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qreadwritelock_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qresource_iterator_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qresource_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qringbuffer_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qsavefile_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qscopedpointer_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qsequentialanimationgroup_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qsettings_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qsharedmemory_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qsignaleventgenerator_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qsignaltransition_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qsimd_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qsimplecodec_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qsjiscodec_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qstate_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qstatemachine_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qstorageinfo_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qstringalgorithms_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qstringiterator_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qsystemerror_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qsystemlibrary_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qsystemsemaphore_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qt_pch.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qtemporaryfile_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qtextcodec_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qtextstream_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qthread_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qthreadpool_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qtimerinfo_unix_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qtimezoneprivate_data_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qtimezoneprivate_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qtldurl_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qtools_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qtranslator_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qtsciicodec_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qunicodetables_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qunicodetools_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qurl_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qurltlds_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qutfcodec_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qvariant_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qvariantanimation_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qversionnumber_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qwindowscodec_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qwindowspipereader_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qwindowspipewriter_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qwinoverlappedionotifier_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qxmlstream_p.h
+%%QT_INCDIR%%/QtCore/%%FULLVER%%/QtCore/private/qxmlutils_p.h
+%%QT_INCDIR%%/QtCore/QAbstractAnimation
+%%QT_INCDIR%%/QtCore/QAbstractEventDispatcher
+%%QT_INCDIR%%/QtCore/QAbstractItemModel
+%%QT_INCDIR%%/QtCore/QAbstractListModel
+%%QT_INCDIR%%/QtCore/QAbstractNativeEventFilter
+%%QT_INCDIR%%/QtCore/QAbstractProxyModel
+%%QT_INCDIR%%/QtCore/QAbstractState
+%%QT_INCDIR%%/QtCore/QAbstractTableModel
+%%QT_INCDIR%%/QtCore/QAbstractTransition
+%%QT_INCDIR%%/QtCore/QAnimationDriver
+%%QT_INCDIR%%/QtCore/QAnimationGroup
+%%QT_INCDIR%%/QtCore/QArgument
+%%QT_INCDIR%%/QtCore/QArrayData
+%%QT_INCDIR%%/QtCore/QArrayDataPointer
+%%QT_INCDIR%%/QtCore/QArrayDataPointerRef
+%%QT_INCDIR%%/QtCore/QAssociativeIterable
+%%QT_INCDIR%%/QtCore/QAtomicInt
+%%QT_INCDIR%%/QtCore/QAtomicInteger
+%%QT_INCDIR%%/QtCore/QAtomicPointer
+%%QT_INCDIR%%/QtCore/QBBSystemLocaleData
+%%QT_INCDIR%%/QtCore/QBasicMutex
+%%QT_INCDIR%%/QtCore/QBasicTimer
+%%QT_INCDIR%%/QtCore/QBitArray
+%%QT_INCDIR%%/QtCore/QBitRef
+%%QT_INCDIR%%/QtCore/QBuffer
+%%QT_INCDIR%%/QtCore/QByteArray
+%%QT_INCDIR%%/QtCore/QByteArrayData
+%%QT_INCDIR%%/QtCore/QByteArrayDataPtr
+%%QT_INCDIR%%/QtCore/QByteArrayList
+%%QT_INCDIR%%/QtCore/QByteArrayListIterator
+%%QT_INCDIR%%/QtCore/QByteArrayMatcher
+%%QT_INCDIR%%/QtCore/QByteRef
+%%QT_INCDIR%%/QtCore/QCache
+%%QT_INCDIR%%/QtCore/QChar
+%%QT_INCDIR%%/QtCore/QCharRef
+%%QT_INCDIR%%/QtCore/QChildEvent
+%%QT_INCDIR%%/QtCore/QCollator
+%%QT_INCDIR%%/QtCore/QCollatorSortKey
+%%QT_INCDIR%%/QtCore/QCommandLineOption
+%%QT_INCDIR%%/QtCore/QCommandLineParser
+%%QT_INCDIR%%/QtCore/QContiguousCache
+%%QT_INCDIR%%/QtCore/QContiguousCacheData
+%%QT_INCDIR%%/QtCore/QContiguousCacheTypedData
+%%QT_INCDIR%%/QtCore/QCoreApplication
+%%QT_INCDIR%%/QtCore/QCryptographicHash
+%%QT_INCDIR%%/QtCore/QDataStream
+%%QT_INCDIR%%/QtCore/QDate
+%%QT_INCDIR%%/QtCore/QDateTime
+%%QT_INCDIR%%/QtCore/QDebug
+%%QT_INCDIR%%/QtCore/QDebugStateSaver
+%%QT_INCDIR%%/QtCore/QDeferredDeleteEvent
+%%QT_INCDIR%%/QtCore/QDir
+%%QT_INCDIR%%/QtCore/QDirIterator
+%%QT_INCDIR%%/QtCore/QDynamicPropertyChangeEvent
+%%QT_INCDIR%%/QtCore/QEasingCurve
+%%QT_INCDIR%%/QtCore/QElapsedTimer
+%%QT_INCDIR%%/QtCore/QEnableSharedFromThis
+%%QT_INCDIR%%/QtCore/QEvent
+%%QT_INCDIR%%/QtCore/QEventLoop
+%%QT_INCDIR%%/QtCore/QEventLoopLocker
+%%QT_INCDIR%%/QtCore/QEventTransition
+%%QT_INCDIR%%/QtCore/QException
+%%QT_INCDIR%%/QtCore/QExplicitlySharedDataPointer
+%%QT_INCDIR%%/QtCore/QFactoryInterface
+%%QT_INCDIR%%/QtCore/QFile
+%%QT_INCDIR%%/QtCore/QFileDevice
+%%QT_INCDIR%%/QtCore/QFileInfo
+%%QT_INCDIR%%/QtCore/QFileInfoList
+%%QT_INCDIR%%/QtCore/QFileSelector
+%%QT_INCDIR%%/QtCore/QFileSystemWatcher
+%%QT_INCDIR%%/QtCore/QFinalState
+%%QT_INCDIR%%/QtCore/QFlag
+%%QT_INCDIR%%/QtCore/QFlags
+%%QT_INCDIR%%/QtCore/QForeachContainer
+%%QT_INCDIR%%/QtCore/QFunctionPointer
+%%QT_INCDIR%%/QtCore/QFuture
+%%QT_INCDIR%%/QtCore/QFutureInterface
+%%QT_INCDIR%%/QtCore/QFutureInterfaceBase
+%%QT_INCDIR%%/QtCore/QFutureIterator
+%%QT_INCDIR%%/QtCore/QFutureSynchronizer
+%%QT_INCDIR%%/QtCore/QFutureWatcher
+%%QT_INCDIR%%/QtCore/QFutureWatcherBase
+%%QT_INCDIR%%/QtCore/QGenericArgument
+%%QT_INCDIR%%/QtCore/QGenericReturnArgument
+%%QT_INCDIR%%/QtCore/QGlobalStatic
+%%QT_INCDIR%%/QtCore/QHash
+%%QT_INCDIR%%/QtCore/QHashData
+%%QT_INCDIR%%/QtCore/QHashDummyValue
+%%QT_INCDIR%%/QtCore/QHashIterator
+%%QT_INCDIR%%/QtCore/QHashNode
+%%QT_INCDIR%%/QtCore/QHistoryState
+%%QT_INCDIR%%/QtCore/QIODevice
+%%QT_INCDIR%%/QtCore/QIdentityProxyModel
+%%QT_INCDIR%%/QtCore/QIncompatibleFlag
+%%QT_INCDIR%%/QtCore/QIntegerForSize
+%%QT_INCDIR%%/QtCore/QInternal
+%%QT_INCDIR%%/QtCore/QItemSelection
+%%QT_INCDIR%%/QtCore/QItemSelectionModel
+%%QT_INCDIR%%/QtCore/QItemSelectionRange
+%%QT_INCDIR%%/QtCore/QJsonArray
+%%QT_INCDIR%%/QtCore/QJsonDocument
+%%QT_INCDIR%%/QtCore/QJsonObject
+%%QT_INCDIR%%/QtCore/QJsonParseError
+%%QT_INCDIR%%/QtCore/QJsonValue
+%%QT_INCDIR%%/QtCore/QJsonValuePtr
+%%QT_INCDIR%%/QtCore/QJsonValueRef
+%%QT_INCDIR%%/QtCore/QJsonValueRefPtr
+%%QT_INCDIR%%/QtCore/QLatin1Char
+%%QT_INCDIR%%/QtCore/QLatin1Literal
+%%QT_INCDIR%%/QtCore/QLatin1String
+%%QT_INCDIR%%/QtCore/QLibrary
+%%QT_INCDIR%%/QtCore/QLibraryInfo
+%%QT_INCDIR%%/QtCore/QLine
+%%QT_INCDIR%%/QtCore/QLineF
+%%QT_INCDIR%%/QtCore/QLinkedList
+%%QT_INCDIR%%/QtCore/QLinkedListData
+%%QT_INCDIR%%/QtCore/QLinkedListIterator
+%%QT_INCDIR%%/QtCore/QLinkedListNode
+%%QT_INCDIR%%/QtCore/QList
+%%QT_INCDIR%%/QtCore/QListData
+%%QT_INCDIR%%/QtCore/QListIterator
+%%QT_INCDIR%%/QtCore/QListSpecialMethods
+%%QT_INCDIR%%/QtCore/QLocale
+%%QT_INCDIR%%/QtCore/QLockFile
+%%QT_INCDIR%%/QtCore/QLoggingCategory
+%%QT_INCDIR%%/QtCore/QMap
+%%QT_INCDIR%%/QtCore/QMapData
+%%QT_INCDIR%%/QtCore/QMapDataBase
+%%QT_INCDIR%%/QtCore/QMapIterator
+%%QT_INCDIR%%/QtCore/QMapNode
+%%QT_INCDIR%%/QtCore/QMapNodeBase
+%%QT_INCDIR%%/QtCore/QMargins
+%%QT_INCDIR%%/QtCore/QMarginsF
+%%QT_INCDIR%%/QtCore/QMessageAuthenticationCode
+%%QT_INCDIR%%/QtCore/QMessageLogContext
+%%QT_INCDIR%%/QtCore/QMessageLogger
+%%QT_INCDIR%%/QtCore/QMetaClassInfo
+%%QT_INCDIR%%/QtCore/QMetaEnum
+%%QT_INCDIR%%/QtCore/QMetaMethod
+%%QT_INCDIR%%/QtCore/QMetaObject
+%%QT_INCDIR%%/QtCore/QMetaProperty
+%%QT_INCDIR%%/QtCore/QMetaType
+%%QT_INCDIR%%/QtCore/QMetaTypeId
+%%QT_INCDIR%%/QtCore/QMetaTypeId2
+%%QT_INCDIR%%/QtCore/QMetaTypeIdQObject
+%%QT_INCDIR%%/QtCore/QMimeData
+%%QT_INCDIR%%/QtCore/QMimeDatabase
+%%QT_INCDIR%%/QtCore/QMimeType
+%%QT_INCDIR%%/QtCore/QModelIndex
+%%QT_INCDIR%%/QtCore/QModelIndexList
+%%QT_INCDIR%%/QtCore/QMultiHash
+%%QT_INCDIR%%/QtCore/QMultiMap
+%%QT_INCDIR%%/QtCore/QMutableByteArrayListIterator
+%%QT_INCDIR%%/QtCore/QMutableFutureIterator
+%%QT_INCDIR%%/QtCore/QMutableHashIterator
+%%QT_INCDIR%%/QtCore/QMutableLinkedListIterator
+%%QT_INCDIR%%/QtCore/QMutableListIterator
+%%QT_INCDIR%%/QtCore/QMutableMapIterator
+%%QT_INCDIR%%/QtCore/QMutableSetIterator
+%%QT_INCDIR%%/QtCore/QMutableStringListIterator
+%%QT_INCDIR%%/QtCore/QMutableVectorIterator
+%%QT_INCDIR%%/QtCore/QMutex
+%%QT_INCDIR%%/QtCore/QMutexLocker
+%%QT_INCDIR%%/QtCore/QNoDebug
+%%QT_INCDIR%%/QtCore/QObject
+%%QT_INCDIR%%/QtCore/QObjectCleanupHandler
+%%QT_INCDIR%%/QtCore/QObjectData
+%%QT_INCDIR%%/QtCore/QObjectList
+%%QT_INCDIR%%/QtCore/QObjectUserData
+%%QT_INCDIR%%/QtCore/QPair
+%%QT_INCDIR%%/QtCore/QParallelAnimationGroup
+%%QT_INCDIR%%/QtCore/QPauseAnimation
+%%QT_INCDIR%%/QtCore/QPersistentModelIndex
+%%QT_INCDIR%%/QtCore/QPluginLoader
+%%QT_INCDIR%%/QtCore/QPoint
+%%QT_INCDIR%%/QtCore/QPointF
+%%QT_INCDIR%%/QtCore/QPointer
+%%QT_INCDIR%%/QtCore/QProcess
+%%QT_INCDIR%%/QtCore/QProcessEnvironment
+%%QT_INCDIR%%/QtCore/QPropertyAnimation
+%%QT_INCDIR%%/QtCore/QQueue
+%%QT_INCDIR%%/QtCore/QReadLocker
+%%QT_INCDIR%%/QtCore/QReadWriteLock
+%%QT_INCDIR%%/QtCore/QRect
+%%QT_INCDIR%%/QtCore/QRectF
+%%QT_INCDIR%%/QtCore/QRegExp
+%%QT_INCDIR%%/QtCore/QRegularExpression
+%%QT_INCDIR%%/QtCore/QRegularExpressionMatch
+%%QT_INCDIR%%/QtCore/QRegularExpressionMatchIterator
+%%QT_INCDIR%%/QtCore/QResource
+%%QT_INCDIR%%/QtCore/QReturnArgument
+%%QT_INCDIR%%/QtCore/QRunnable
+%%QT_INCDIR%%/QtCore/QSaveFile
+%%QT_INCDIR%%/QtCore/QScopedArrayPointer
+%%QT_INCDIR%%/QtCore/QScopedPointer
+%%QT_INCDIR%%/QtCore/QScopedPointerArrayDeleter
+%%QT_INCDIR%%/QtCore/QScopedPointerDeleteLater
+%%QT_INCDIR%%/QtCore/QScopedPointerDeleter
+%%QT_INCDIR%%/QtCore/QScopedPointerObjectDeleteLater
+%%QT_INCDIR%%/QtCore/QScopedPointerPodDeleter
+%%QT_INCDIR%%/QtCore/QScopedValueRollback
+%%QT_INCDIR%%/QtCore/QSemaphore
+%%QT_INCDIR%%/QtCore/QSequentialAnimationGroup
+%%QT_INCDIR%%/QtCore/QSequentialIterable
+%%QT_INCDIR%%/QtCore/QSet
+%%QT_INCDIR%%/QtCore/QSetIterator
+%%QT_INCDIR%%/QtCore/QSettings
+%%QT_INCDIR%%/QtCore/QSharedData
+%%QT_INCDIR%%/QtCore/QSharedDataPointer
+%%QT_INCDIR%%/QtCore/QSharedMemory
+%%QT_INCDIR%%/QtCore/QSharedPointer
+%%QT_INCDIR%%/QtCore/QSignalBlocker
+%%QT_INCDIR%%/QtCore/QSignalMapper
+%%QT_INCDIR%%/QtCore/QSignalTransition
+%%QT_INCDIR%%/QtCore/QSize
+%%QT_INCDIR%%/QtCore/QSizeF
+%%QT_INCDIR%%/QtCore/QSocketNotifier
+%%QT_INCDIR%%/QtCore/QSortFilterProxyModel
+%%QT_INCDIR%%/QtCore/QStack
+%%QT_INCDIR%%/QtCore/QStandardPaths
+%%QT_INCDIR%%/QtCore/QState
+%%QT_INCDIR%%/QtCore/QStateMachine
+%%QT_INCDIR%%/QtCore/QStaticArrayData
+%%QT_INCDIR%%/QtCore/QStaticAssertFailure
+%%QT_INCDIR%%/QtCore/QStaticByteArrayData
+%%QT_INCDIR%%/QtCore/QStaticPlugin
+%%QT_INCDIR%%/QtCore/QStaticStringData
+%%QT_INCDIR%%/QtCore/QStorageInfo
+%%QT_INCDIR%%/QtCore/QString
+%%QT_INCDIR%%/QtCore/QStringBuilder
+%%QT_INCDIR%%/QtCore/QStringData
+%%QT_INCDIR%%/QtCore/QStringDataPtr
+%%QT_INCDIR%%/QtCore/QStringList
+%%QT_INCDIR%%/QtCore/QStringListIterator
+%%QT_INCDIR%%/QtCore/QStringListModel
+%%QT_INCDIR%%/QtCore/QStringMatcher
+%%QT_INCDIR%%/QtCore/QStringRef
+%%QT_INCDIR%%/QtCore/QSysInfo
+%%QT_INCDIR%%/QtCore/QSystemSemaphore
+%%QT_INCDIR%%/QtCore/QTemporaryDir
+%%QT_INCDIR%%/QtCore/QTemporaryFile
+%%QT_INCDIR%%/QtCore/QTextBoundaryFinder
+%%QT_INCDIR%%/QtCore/QTextCodec
+%%QT_INCDIR%%/QtCore/QTextDecoder
+%%QT_INCDIR%%/QtCore/QTextEncoder
+%%QT_INCDIR%%/QtCore/QTextStream
+%%QT_INCDIR%%/QtCore/QTextStreamFunction
+%%QT_INCDIR%%/QtCore/QTextStreamManipulator
+%%QT_INCDIR%%/QtCore/QThread
+%%QT_INCDIR%%/QtCore/QThreadPool
+%%QT_INCDIR%%/QtCore/QThreadStorage
+%%QT_INCDIR%%/QtCore/QThreadStorageData
+%%QT_INCDIR%%/QtCore/QTime
+%%QT_INCDIR%%/QtCore/QTimeLine
+%%QT_INCDIR%%/QtCore/QTimeZone
+%%QT_INCDIR%%/QtCore/QTimer
+%%QT_INCDIR%%/QtCore/QTimerEvent
+%%QT_INCDIR%%/QtCore/QTranslator
+%%QT_INCDIR%%/QtCore/QTypeInfo
+%%QT_INCDIR%%/QtCore/QTypeInfoMerger
+%%QT_INCDIR%%/QtCore/QUnhandledException
+%%QT_INCDIR%%/QtCore/QUrl
+%%QT_INCDIR%%/QtCore/QUrlQuery
+%%QT_INCDIR%%/QtCore/QUrlTwoFlags
+%%QT_INCDIR%%/QtCore/QUuid
+%%QT_INCDIR%%/QtCore/QVarLengthArray
+%%QT_INCDIR%%/QtCore/QVariant
+%%QT_INCDIR%%/QtCore/QVariantAnimation
+%%QT_INCDIR%%/QtCore/QVariantComparisonHelper
+%%QT_INCDIR%%/QtCore/QVariantHash
+%%QT_INCDIR%%/QtCore/QVariantList
+%%QT_INCDIR%%/QtCore/QVariantMap
+%%QT_INCDIR%%/QtCore/QVector
+%%QT_INCDIR%%/QtCore/QVectorIterator
+%%QT_INCDIR%%/QtCore/QWaitCondition
+%%QT_INCDIR%%/QtCore/QWeakPointer
+%%QT_INCDIR%%/QtCore/QWinEventNotifier
+%%QT_INCDIR%%/QtCore/QWriteLocker
+%%QT_INCDIR%%/QtCore/QXmlStreamAttribute
+%%QT_INCDIR%%/QtCore/QXmlStreamAttributes
+%%QT_INCDIR%%/QtCore/QXmlStreamEntityDeclaration
+%%QT_INCDIR%%/QtCore/QXmlStreamEntityDeclarations
+%%QT_INCDIR%%/QtCore/QXmlStreamEntityResolver
+%%QT_INCDIR%%/QtCore/QXmlStreamNamespaceDeclaration
+%%QT_INCDIR%%/QtCore/QXmlStreamNamespaceDeclarations
+%%QT_INCDIR%%/QtCore/QXmlStreamNotationDeclaration
+%%QT_INCDIR%%/QtCore/QXmlStreamNotationDeclarations
+%%QT_INCDIR%%/QtCore/QXmlStreamReader
+%%QT_INCDIR%%/QtCore/QXmlStreamStringRef
+%%QT_INCDIR%%/QtCore/QXmlStreamWriter
+%%QT_INCDIR%%/QtCore/Q_PID
+%%QT_INCDIR%%/QtCore/Qt
+%%QT_INCDIR%%/QtCore/QtAlgorithms
+%%QT_INCDIR%%/QtCore/QtCleanUpFunction
+%%QT_INCDIR%%/QtCore/QtConfig
+%%QT_INCDIR%%/QtCore/QtContainerFwd
+%%QT_INCDIR%%/QtCore/QtCore
+%%QT_INCDIR%%/QtCore/QtCoreDepends
+%%QT_INCDIR%%/QtCore/QtCoreVersion
+%%QT_INCDIR%%/QtCore/QtDebug
+%%QT_INCDIR%%/QtCore/QtEndian
+%%QT_INCDIR%%/QtCore/QtGlobal
+%%QT_INCDIR%%/QtCore/QtMath
+%%QT_INCDIR%%/QtCore/QtMessageHandler
+%%QT_INCDIR%%/QtCore/QtMsgHandler
+%%QT_INCDIR%%/QtCore/QtNumeric
+%%QT_INCDIR%%/QtCore/QtPlugin
+%%QT_INCDIR%%/QtCore/QtPluginInstanceFunction
+%%QT_INCDIR%%/QtCore/QtPluginMetaDataFunction
+%%QT_INCDIR%%/QtCore/qabstractanimation.h
+%%QT_INCDIR%%/QtCore/qabstracteventdispatcher.h
+%%QT_INCDIR%%/QtCore/qabstractitemmodel.h
+%%QT_INCDIR%%/QtCore/qabstractnativeeventfilter.h
+%%QT_INCDIR%%/QtCore/qabstractproxymodel.h
+%%QT_INCDIR%%/QtCore/qabstractstate.h
+%%QT_INCDIR%%/QtCore/qabstracttransition.h
+%%QT_INCDIR%%/QtCore/qalgorithms.h
+%%QT_INCDIR%%/QtCore/qanimationgroup.h
+%%QT_INCDIR%%/QtCore/qarraydata.h
+%%QT_INCDIR%%/QtCore/qarraydataops.h
+%%QT_INCDIR%%/QtCore/qarraydatapointer.h
+%%QT_INCDIR%%/QtCore/qatomic.h
+%%QT_INCDIR%%/QtCore/qatomic_armv5.h
+%%QT_INCDIR%%/QtCore/qatomic_armv6.h
+%%QT_INCDIR%%/QtCore/qatomic_armv7.h
+%%QT_INCDIR%%/QtCore/qatomic_bootstrap.h
+%%QT_INCDIR%%/QtCore/qatomic_cxx11.h
+%%QT_INCDIR%%/QtCore/qatomic_gcc.h
+%%QT_INCDIR%%/QtCore/qatomic_ia64.h
+%%QT_INCDIR%%/QtCore/qatomic_mips.h
+%%QT_INCDIR%%/QtCore/qatomic_msvc.h
+%%QT_INCDIR%%/QtCore/qatomic_unix.h
+%%QT_INCDIR%%/QtCore/qatomic_x86.h
+%%QT_INCDIR%%/QtCore/qbasicatomic.h
+%%QT_INCDIR%%/QtCore/qbasictimer.h
+%%QT_INCDIR%%/QtCore/qbitarray.h
+%%QT_INCDIR%%/QtCore/qbuffer.h
+%%QT_INCDIR%%/QtCore/qbytearray.h
+%%QT_INCDIR%%/QtCore/qbytearraylist.h
+%%QT_INCDIR%%/QtCore/qbytearraymatcher.h
+%%QT_INCDIR%%/QtCore/qcache.h
+%%QT_INCDIR%%/QtCore/qchar.h
+%%QT_INCDIR%%/QtCore/qcollator.h
+%%QT_INCDIR%%/QtCore/qcommandlineoption.h
+%%QT_INCDIR%%/QtCore/qcommandlineparser.h
+%%QT_INCDIR%%/QtCore/qcompilerdetection.h
+%%QT_INCDIR%%/QtCore/qconfig-dist.h
+%%QT_INCDIR%%/QtCore/qconfig-large.h
+%%QT_INCDIR%%/QtCore/qconfig-medium.h
+%%QT_INCDIR%%/QtCore/qconfig-minimal.h
+%%QT_INCDIR%%/QtCore/qconfig-nacl.h
+%%QT_INCDIR%%/QtCore/qconfig-small.h
+%%QT_INCDIR%%/QtCore/qconfig.h
+%%QT_INCDIR%%/QtCore/qcontainerfwd.h
+%%QT_INCDIR%%/QtCore/qcontiguouscache.h
+%%QT_INCDIR%%/QtCore/qcoreapplication.h
+%%QT_INCDIR%%/QtCore/qcoreevent.h
+%%QT_INCDIR%%/QtCore/qcryptographichash.h
+%%QT_INCDIR%%/QtCore/qdatastream.h
+%%QT_INCDIR%%/QtCore/qdatetime.h
+%%QT_INCDIR%%/QtCore/qdebug.h
+%%QT_INCDIR%%/QtCore/qdir.h
+%%QT_INCDIR%%/QtCore/qdiriterator.h
+%%QT_INCDIR%%/QtCore/qeasingcurve.h
+%%QT_INCDIR%%/QtCore/qelapsedtimer.h
+%%QT_INCDIR%%/QtCore/qendian.h
+%%QT_INCDIR%%/QtCore/qeventloop.h
+%%QT_INCDIR%%/QtCore/qeventtransition.h
+%%QT_INCDIR%%/QtCore/qexception.h
+%%QT_INCDIR%%/QtCore/qfactoryinterface.h
+%%QT_INCDIR%%/QtCore/qfeatures.h
+%%QT_INCDIR%%/QtCore/qfile.h
+%%QT_INCDIR%%/QtCore/qfiledevice.h
+%%QT_INCDIR%%/QtCore/qfileinfo.h
+%%QT_INCDIR%%/QtCore/qfileselector.h
+%%QT_INCDIR%%/QtCore/qfilesystemwatcher.h
+%%QT_INCDIR%%/QtCore/qfinalstate.h
+%%QT_INCDIR%%/QtCore/qflags.h
+%%QT_INCDIR%%/QtCore/qfunctions_nacl.h
+%%QT_INCDIR%%/QtCore/qfunctions_vxworks.h
+%%QT_INCDIR%%/QtCore/qfunctions_wince.h
+%%QT_INCDIR%%/QtCore/qfunctions_winrt.h
+%%QT_INCDIR%%/QtCore/qfuture.h
+%%QT_INCDIR%%/QtCore/qfutureinterface.h
+%%QT_INCDIR%%/QtCore/qfuturesynchronizer.h
+%%QT_INCDIR%%/QtCore/qfuturewatcher.h
+%%QT_INCDIR%%/QtCore/qgenericatomic.h
+%%QT_INCDIR%%/QtCore/qglobal.h
+%%QT_INCDIR%%/QtCore/qglobalstatic.h
+%%QT_INCDIR%%/QtCore/qhash.h
+%%QT_INCDIR%%/QtCore/qhistorystate.h
+%%QT_INCDIR%%/QtCore/qidentityproxymodel.h
+%%QT_INCDIR%%/QtCore/qiodevice.h
+%%QT_INCDIR%%/QtCore/qisenum.h
+%%QT_INCDIR%%/QtCore/qitemselectionmodel.h
+%%QT_INCDIR%%/QtCore/qiterator.h
+%%QT_INCDIR%%/QtCore/qjsonarray.h
+%%QT_INCDIR%%/QtCore/qjsondocument.h
+%%QT_INCDIR%%/QtCore/qjsonobject.h
+%%QT_INCDIR%%/QtCore/qjsonvalue.h
+%%QT_INCDIR%%/QtCore/qlibrary.h
+%%QT_INCDIR%%/QtCore/qlibraryinfo.h
+%%QT_INCDIR%%/QtCore/qline.h
+%%QT_INCDIR%%/QtCore/qlinkedlist.h
+%%QT_INCDIR%%/QtCore/qlist.h
+%%QT_INCDIR%%/QtCore/qlocale.h
+%%QT_INCDIR%%/QtCore/qlocale_blackberry.h
+%%QT_INCDIR%%/QtCore/qlockfile.h
+%%QT_INCDIR%%/QtCore/qlogging.h
+%%QT_INCDIR%%/QtCore/qloggingcategory.h
+%%QT_INCDIR%%/QtCore/qmap.h
+%%QT_INCDIR%%/QtCore/qmargins.h
+%%QT_INCDIR%%/QtCore/qmath.h
+%%QT_INCDIR%%/QtCore/qmessageauthenticationcode.h
+%%QT_INCDIR%%/QtCore/qmetaobject.h
+%%QT_INCDIR%%/QtCore/qmetatype.h
+%%QT_INCDIR%%/QtCore/qmimedata.h
+%%QT_INCDIR%%/QtCore/qmimedatabase.h
+%%QT_INCDIR%%/QtCore/qmimetype.h
+%%QT_INCDIR%%/QtCore/qmutex.h
+%%QT_INCDIR%%/QtCore/qnamespace.h
+%%QT_INCDIR%%/QtCore/qnumeric.h
+%%QT_INCDIR%%/QtCore/qobject.h
+%%QT_INCDIR%%/QtCore/qobject_impl.h
+%%QT_INCDIR%%/QtCore/qobjectcleanuphandler.h
+%%QT_INCDIR%%/QtCore/qobjectdefs.h
+%%QT_INCDIR%%/QtCore/qobjectdefs_impl.h
+%%QT_INCDIR%%/QtCore/qpair.h
+%%QT_INCDIR%%/QtCore/qparallelanimationgroup.h
+%%QT_INCDIR%%/QtCore/qpauseanimation.h
+%%QT_INCDIR%%/QtCore/qplugin.h
+%%QT_INCDIR%%/QtCore/qpluginloader.h
+%%QT_INCDIR%%/QtCore/qpoint.h
+%%QT_INCDIR%%/QtCore/qpointer.h
+%%QT_INCDIR%%/QtCore/qprocess.h
+%%QT_INCDIR%%/QtCore/qprocessordetection.h
+%%QT_INCDIR%%/QtCore/qpropertyanimation.h
+%%QT_INCDIR%%/QtCore/qqueue.h
+%%QT_INCDIR%%/QtCore/qreadwritelock.h
+%%QT_INCDIR%%/QtCore/qrect.h
+%%QT_INCDIR%%/QtCore/qrefcount.h
+%%QT_INCDIR%%/QtCore/qregexp.h
+%%QT_INCDIR%%/QtCore/qregularexpression.h
+%%QT_INCDIR%%/QtCore/qresource.h
+%%QT_INCDIR%%/QtCore/qresultstore.h
+%%QT_INCDIR%%/QtCore/qrunnable.h
+%%QT_INCDIR%%/QtCore/qsavefile.h
+%%QT_INCDIR%%/QtCore/qscopedpointer.h
+%%QT_INCDIR%%/QtCore/qscopedvaluerollback.h
+%%QT_INCDIR%%/QtCore/qsemaphore.h
+%%QT_INCDIR%%/QtCore/qsequentialanimationgroup.h
+%%QT_INCDIR%%/QtCore/qset.h
+%%QT_INCDIR%%/QtCore/qsettings.h
+%%QT_INCDIR%%/QtCore/qshareddata.h
+%%QT_INCDIR%%/QtCore/qsharedmemory.h
+%%QT_INCDIR%%/QtCore/qsharedpointer.h
+%%QT_INCDIR%%/QtCore/qsharedpointer_impl.h
+%%QT_INCDIR%%/QtCore/qsignalmapper.h
+%%QT_INCDIR%%/QtCore/qsignaltransition.h
+%%QT_INCDIR%%/QtCore/qsize.h
+%%QT_INCDIR%%/QtCore/qsocketnotifier.h
+%%QT_INCDIR%%/QtCore/qsortfilterproxymodel.h
+%%QT_INCDIR%%/QtCore/qstack.h
+%%QT_INCDIR%%/QtCore/qstandardpaths.h
+%%QT_INCDIR%%/QtCore/qstate.h
+%%QT_INCDIR%%/QtCore/qstatemachine.h
+%%QT_INCDIR%%/QtCore/qstorageinfo.h
+%%QT_INCDIR%%/QtCore/qstring.h
+%%QT_INCDIR%%/QtCore/qstringbuilder.h
+%%QT_INCDIR%%/QtCore/qstringlist.h
+%%QT_INCDIR%%/QtCore/qstringlistmodel.h
+%%QT_INCDIR%%/QtCore/qstringmatcher.h
+%%QT_INCDIR%%/QtCore/qsysinfo.h
+%%QT_INCDIR%%/QtCore/qsystemdetection.h
+%%QT_INCDIR%%/QtCore/qsystemsemaphore.h
+%%QT_INCDIR%%/QtCore/qt_windows.h
+%%QT_INCDIR%%/QtCore/qtcoreversion.h
+%%QT_INCDIR%%/QtCore/qtemporarydir.h
+%%QT_INCDIR%%/QtCore/qtemporaryfile.h
+%%QT_INCDIR%%/QtCore/qtextboundaryfinder.h
+%%QT_INCDIR%%/QtCore/qtextcodec.h
+%%QT_INCDIR%%/QtCore/qtextstream.h
+%%QT_INCDIR%%/QtCore/qthread.h
+%%QT_INCDIR%%/QtCore/qthreadpool.h
+%%QT_INCDIR%%/QtCore/qthreadstorage.h
+%%QT_INCDIR%%/QtCore/qtimeline.h
+%%QT_INCDIR%%/QtCore/qtimer.h
+%%QT_INCDIR%%/QtCore/qtimezone.h
+%%QT_INCDIR%%/QtCore/qtranslator.h
+%%QT_INCDIR%%/QtCore/qtypeinfo.h
+%%QT_INCDIR%%/QtCore/qtypetraits.h
+%%QT_INCDIR%%/QtCore/qurl.h
+%%QT_INCDIR%%/QtCore/qurlquery.h
+%%QT_INCDIR%%/QtCore/quuid.h
+%%QT_INCDIR%%/QtCore/qvariant.h
+%%QT_INCDIR%%/QtCore/qvariantanimation.h
+%%QT_INCDIR%%/QtCore/qvarlengtharray.h
+%%QT_INCDIR%%/QtCore/qvector.h
+%%QT_INCDIR%%/QtCore/qwaitcondition.h
+%%QT_INCDIR%%/QtCore/qwineventnotifier.h
+%%QT_INCDIR%%/QtCore/qxmlstream.h
+%%QT_LIBDIR%%/cmake/Qt5/Qt5Config.cmake
+%%QT_LIBDIR%%/cmake/Qt5/Qt5ConfigVersion.cmake
+%%QT_LIBDIR%%/cmake/Qt5Core/Qt5CTestMacros.cmake
+%%QT_LIBDIR%%/cmake/Qt5Core/Qt5CoreConfig.cmake
+%%QT_LIBDIR%%/cmake/Qt5Core/Qt5CoreConfigExtras.cmake
+%%QT_LIBDIR%%/cmake/Qt5Core/Qt5CoreConfigExtrasMkspecDir.cmake
+%%QT_LIBDIR%%/cmake/Qt5Core/Qt5CoreConfigVersion.cmake
+%%QT_LIBDIR%%/cmake/Qt5Core/Qt5CoreMacros.cmake
+%%QT_LIBDIR%%/libQt5Core.prl
+%%QT_LIBDIR%%/libQt5Core.so
+%%QT_LIBDIR%%/libQt5Core.so.5
+%%QT_LIBDIR%%/libQt5Core.so.%%SHORTVER%%
+%%QT_LIBDIR%%/libQt5Core.so.%%FULLVER%%
+%%DEBUG%%%%QT_LIBDIR%%/libQt5Core.so.%%FULLVER%%.debug
+%%QT_MKSPECDIR%%/modules/qt_lib_core.pri
+%%QT_MKSPECDIR%%/modules/qt_lib_core_private.pri
+libdata/pkgconfig/Qt5Core.pc
+ at comment Ensure that a (even empty) qconfig-modules.h exists.
+ at preexec touch %%QT_PREFIX%%/%%QT_INCDIR%%/QtCore/qconfig-modules.h
Property changes on: trunk/devel/qt5-core/pkg-plist
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
More information about the Midnightbsd-cvs
mailing list