View | Details | Raw Unified | Return to bug 247994 | Differences between
and this patch

Collapse All | Expand All

(-)Makefile (-35 / +38 lines)
Lines 8-17 Link Here
8
MAINTAINER=	kde@FreeBSD.org
8
MAINTAINER=	kde@FreeBSD.org
9
COMMENT=	Qt graphical user interface module
9
COMMENT=	Qt graphical user interface module
10
10
11
BUILD_DEPENDS=	at-spi2-core>=0:accessibility/at-spi2-core \
11
BUILD_DEPENDS=	${LOCALBASE}/include/linux/input.h:devel/evdev-proto \
12
		${LOCALBASE}/include/linux/input.h:devel/evdev-proto \
13
		${LOCALBASE}/include/vulkan/vulkan.h:devel/vulkan-headers \
12
		${LOCALBASE}/include/vulkan/vulkan.h:devel/vulkan-headers \
14
		${LOCALBASE}/include/xf86drm.h:graphics/libdrm
13
		${LOCALBASE}/include/xf86drm.h:graphics/libdrm \
14
		at-spi2-core>=0:accessibility/at-spi2-core
15
LIB_DEPENDS=	libdbus-1.so:devel/dbus \
15
LIB_DEPENDS=	libdbus-1.so:devel/dbus \
16
		libevdev.so:devel/libevdev \
16
		libevdev.so:devel/libevdev \
17
		libfontconfig.so:x11-fonts/fontconfig \
17
		libfontconfig.so:x11-fonts/fontconfig \
Lines 19-78 Link Here
19
		libharfbuzz.so:print/harfbuzz \
19
		libharfbuzz.so:print/harfbuzz \
20
		libinput.so:x11/libinput \
20
		libinput.so:x11/libinput \
21
		libpng.so:graphics/png \
21
		libpng.so:graphics/png \
22
		libxcb.so:x11/libxcb \
22
		libxcb-icccm.so:x11/xcb-util-wm \
23
		libxcb-image.so:x11/xcb-util-image \
23
		libxcb-image.so:x11/xcb-util-image \
24
		libxcb-keysyms.so:x11/xcb-util-keysyms \
24
		libxcb-keysyms.so:x11/xcb-util-keysyms \
25
		libxcb-render-util.so:x11/xcb-util-renderutil \
25
		libxcb-render-util.so:x11/xcb-util-renderutil \
26
		libxcb-icccm.so:x11/xcb-util-wm \
26
		libxcb.so:x11/libxcb \
27
		libxkbcommon.so:x11/libxkbcommon
27
		libxkbcommon.so:x11/libxkbcommon
28
RUN_DEPENDS=	xdg-open:devel/xdg-utils \
28
RUN_DEPENDS=	${LOCALBASE}/include/vulkan/vulkan.h:devel/vulkan-headers \
29
		${LOCALBASE}/include/vulkan/vulkan.h:devel/vulkan-headers
29
		xdg-open:devel/xdg-utils
30
30
31
USES=		compiler:c++11-lang gl gnome jpeg localbase qmake:no_env \
31
USES=			compiler:c++11-lang gl gnome jpeg localbase \
32
		qt-dist:5,base xorg
32
			qmake:no_env qt-dist:5,base
33
USE_GL=		gl egl
33
USE_GL=			egl gl
34
USE_GNOME=	glib20
34
USE_GNOME=		glib20
35
USE_QT=		core dbus network qmake_build buildtools_build
35
USE_LDCONFIG=		${PREFIX}/${QT_LIBDIR_REL}
36
USE_XORG=	ice sm x11 xi xrender
36
USE_QT=			core dbus network buildtools_build qmake_build
37
HAS_CONFIGURE=	yes
37
QT_BINARIES=		yes
38
CONFIGURE_ARGS=	-no-eglfs \
38
QT_CONFIG=		accessibility accessibility-atspi-bridge dbus \
39
		-no-libudev \
39
			fontconfig glib opengl png system-freetype system-jpeg \
40
		-system-harfbuzz
40
			system-png xcb xcb-glx xcb-render xcb-xlib xinput2 xlib \
41
			xrender
42
QT_DEFINES=		ACCESSIBILITY DBUS FONTCONFIG FREETYPE GLIB \
43
			IMAGEFORMAT_PNG OPENGL SHAPE XCB XKB XKBCOMMON XRENDER
44
USE_XORG=		ice sm xi xrender
45
HAS_CONFIGURE=		yes
46
CONFIGURE_ARGS=		-no-eglfs \
47
			-no-libudev \
48
			-system-harfbuzz
41
# Explicitly set to c++14 to avoid c++17/c++1z, since libX11's headers
49
# Explicitly set to c++14 to avoid c++17/c++1z, since libX11's headers
42
# are using the obsolete 'register' keyword.
50
# are using the obsolete 'register' keyword.
43
CONFIGURE_ARGS+=	-c++std c++14
51
CONFIGURE_ARGS+=	-c++std \
52
			c++14
44
53
45
USE_LDCONFIG=	${PREFIX}/${QT_LIBDIR_REL}
46
47
BUILD_WRKSRC=	${WRKSRC}/src/${PORTNAME}
54
BUILD_WRKSRC=	${WRKSRC}/src/${PORTNAME}
48
INSTALL_WRKSRC=	${BUILD_WRKSRC}
55
INSTALL_WRKSRC=	${BUILD_WRKSRC}
49
56
57
OPTIONS_DEFINE=		X11
58
OPTIONS_DEFAULT=	X11
59
OPTIONS_SUB=		Yes
60
61
X11_USES=	xorg
62
X11_USE=	XORG=x11
63
50
# Build and install QtPlatformSupport and default QPA plugins (XCB,
64
# Build and install QtPlatformSupport and default QPA plugins (XCB,
51
# minimal and offscreen). QtGui won't work without (one of) them, but
65
# minimal and offscreen). QtGui won't work without (one of) them, but
52
# they depend on QtGui itself, so they can't be added as dependencies.
66
# they depend on QtGui itself, so they can't be added as dependencies.
53
# QtPlatformSupport doesn't need to be installed (it's a static
67
# QtPlatformSupport doesn't need to be installed (it's a static
54
# library), but might be needed by people porting Qt on new platforms.
68
# library), but might be needed by people porting Qt on new platforms.
55
MORE_WRKSRCS=	src/platformheaders \
69
_MORE_WRKSRCS=	src/platformheaders src/platformsupport src/plugins/platforms \
56
		src/platformsupport \
57
		src/plugins/platforms \
58
		src/plugins/generic
70
		src/plugins/generic
59
71
60
# Image formats are split through different tarballs, these are the
72
# Image formats are split through different tarballs, these are the
61
# main ones; input contexts require no additional dependency.
73
# main ones; input contexts require no additional dependency.
62
MORE_WRKSRCS+=	src/plugins/imageformats \
74
_MORE_WRKSRCS+=	src/plugins/imageformats src/plugins/platforminputcontexts
63
		src/plugins/platforminputcontexts
64
75
65
# openglextensions is the static library to use for further things like qtcanvas3d
76
# openglextensions is the static library to use for further things like qtcanvas3d
66
MORE_WRKSRCS+=	src/openglextensions
77
_MORE_WRKSRCS+=	src/openglextensions
67
78
68
QT_BINARIES=	yes
69
QT_DEFINES=	ACCESSIBILITY DBUS FONTCONFIG FREETYPE GLIB \
70
		IMAGEFORMAT_PNG OPENGL SHAPE XCB XKB XKBCOMMON XRENDER
71
QT_CONFIG=	accessibility accessibility-atspi-bridge dbus \
72
		fontconfig glib opengl png system-freetype \
73
		system-jpeg system-png xcb xcb-glx xcb-render \
74
		xcb-xlib xinput2 xlib xrender
75
76
# Inherited from Qt 4.
79
# Inherited from Qt 4.
77
.if defined(PACKAGE_BUILDING)
80
.if defined(PACKAGE_BUILDING)
78
RUN_DEPENDS+=	${LOCALBASE}/share/fonts/encodings/encodings.dir:x11-fonts/encodings \
81
RUN_DEPENDS+=	${LOCALBASE}/share/fonts/encodings/encodings.dir:x11-fonts/encodings \
Lines 80-86 Link Here
80
.endif
83
.endif
81
84
82
post-configure:
85
post-configure:
83
.for d in src/tools/qvkgen src/gui ${MORE_WRKSRCS}
86
.for d in src/tools/qvkgen src/gui ${_MORE_WRKSRCS}
84
	${MKDIR} ${WRKSRC}/${d}
87
	${MKDIR} ${WRKSRC}/${d}
85
	cd ${WRKSRC}/${d} && ${SETENV} ${QMAKE_ENV} ${_QMAKE} ${QMAKE_ARGS} ${WRKSRC}/${d}
88
	cd ${WRKSRC}/${d} && ${SETENV} ${QMAKE_ENV} ${_QMAKE} ${QMAKE_ARGS} ${WRKSRC}/${d}
86
.endfor
89
.endfor
(-)pkg-plist (-334 / +334 lines)
Lines 1-71 Link Here
1
%%QT_INCDIR%%/QtAccessibilitySupport/%%FULLVER%%/QtAccessibilitySupport/private/qaccessiblebridgeutils_p.h
1
%%X11%%%%QT_INCDIR%%/QtAccessibilitySupport/%%FULLVER%%/QtAccessibilitySupport/private/qaccessiblebridgeutils_p.h
2
%%QT_INCDIR%%/QtAccessibilitySupport/QtAccessibilitySupport
2
%%X11%%%%QT_INCDIR%%/QtAccessibilitySupport/QtAccessibilitySupport
3
%%QT_INCDIR%%/QtAccessibilitySupport/QtAccessibilitySupportDepends
3
%%X11%%%%QT_INCDIR%%/QtAccessibilitySupport/QtAccessibilitySupportDepends
4
%%QT_INCDIR%%/QtAccessibilitySupport/QtAccessibilitySupportVersion
4
%%X11%%%%QT_INCDIR%%/QtAccessibilitySupport/QtAccessibilitySupportVersion
5
%%QT_INCDIR%%/QtAccessibilitySupport/qtaccessibilitysupportversion.h
5
%%X11%%%%QT_INCDIR%%/QtAccessibilitySupport/qtaccessibilitysupportversion.h
6
%%QT_INCDIR%%/QtDeviceDiscoverySupport/%%FULLVER%%/QtDeviceDiscoverySupport/private/qdevicediscovery_dummy_p.h
6
%%X11%%%%QT_INCDIR%%/QtDeviceDiscoverySupport/%%FULLVER%%/QtDeviceDiscoverySupport/private/qdevicediscovery_dummy_p.h
7
%%QT_INCDIR%%/QtDeviceDiscoverySupport/%%FULLVER%%/QtDeviceDiscoverySupport/private/qdevicediscovery_p.h
7
%%X11%%%%QT_INCDIR%%/QtDeviceDiscoverySupport/%%FULLVER%%/QtDeviceDiscoverySupport/private/qdevicediscovery_p.h
8
%%QT_INCDIR%%/QtDeviceDiscoverySupport/%%FULLVER%%/QtDeviceDiscoverySupport/private/qdevicediscovery_static_p.h
8
%%X11%%%%QT_INCDIR%%/QtDeviceDiscoverySupport/%%FULLVER%%/QtDeviceDiscoverySupport/private/qdevicediscovery_static_p.h
9
%%QT_INCDIR%%/QtDeviceDiscoverySupport/%%FULLVER%%/QtDeviceDiscoverySupport/private/qdevicediscovery_udev_p.h
9
%%X11%%%%QT_INCDIR%%/QtDeviceDiscoverySupport/%%FULLVER%%/QtDeviceDiscoverySupport/private/qdevicediscovery_udev_p.h
10
%%QT_INCDIR%%/QtDeviceDiscoverySupport/QtDeviceDiscoverySupport
10
%%X11%%%%QT_INCDIR%%/QtDeviceDiscoverySupport/QtDeviceDiscoverySupport
11
%%QT_INCDIR%%/QtDeviceDiscoverySupport/QtDeviceDiscoverySupportDepends
11
%%X11%%%%QT_INCDIR%%/QtDeviceDiscoverySupport/QtDeviceDiscoverySupportDepends
12
%%QT_INCDIR%%/QtDeviceDiscoverySupport/QtDeviceDiscoverySupportVersion
12
%%X11%%%%QT_INCDIR%%/QtDeviceDiscoverySupport/QtDeviceDiscoverySupportVersion
13
%%QT_INCDIR%%/QtDeviceDiscoverySupport/qtdevicediscoverysupportversion.h
13
%%X11%%%%QT_INCDIR%%/QtDeviceDiscoverySupport/qtdevicediscoverysupportversion.h
14
%%QT_INCDIR%%/QtEdidSupport/%%FULLVER%%/QtEdidSupport/private/qedidparser_p.h
14
%%X11%%%%QT_INCDIR%%/QtEdidSupport/%%FULLVER%%/QtEdidSupport/private/qedidparser_p.h
15
%%QT_INCDIR%%/QtEdidSupport/%%FULLVER%%/QtEdidSupport/private/qedidvendortable_p.h
15
%%X11%%%%QT_INCDIR%%/QtEdidSupport/%%FULLVER%%/QtEdidSupport/private/qedidvendortable_p.h
16
%%QT_INCDIR%%/QtEdidSupport/QtEdidSupport
16
%%X11%%%%QT_INCDIR%%/QtEdidSupport/QtEdidSupport
17
%%QT_INCDIR%%/QtEdidSupport/QtEdidSupportDepends
17
%%X11%%%%QT_INCDIR%%/QtEdidSupport/QtEdidSupportDepends
18
%%QT_INCDIR%%/QtEdidSupport/QtEdidSupportVersion
18
%%X11%%%%QT_INCDIR%%/QtEdidSupport/QtEdidSupportVersion
19
%%QT_INCDIR%%/QtEdidSupport/qtedidsupportversion.h
19
%%X11%%%%QT_INCDIR%%/QtEdidSupport/qtedidsupportversion.h
20
%%QT_INCDIR%%/QtEglSupport/%%FULLVER%%/QtEglSupport/private/qeglconvenience_p.h
20
%%X11%%%%QT_INCDIR%%/QtEglSupport/%%FULLVER%%/QtEglSupport/private/qeglconvenience_p.h
21
%%QT_INCDIR%%/QtEglSupport/%%FULLVER%%/QtEglSupport/private/qeglpbuffer_p.h
21
%%X11%%%%QT_INCDIR%%/QtEglSupport/%%FULLVER%%/QtEglSupport/private/qeglpbuffer_p.h
22
%%QT_INCDIR%%/QtEglSupport/%%FULLVER%%/QtEglSupport/private/qeglplatformcontext_p.h
22
%%X11%%%%QT_INCDIR%%/QtEglSupport/%%FULLVER%%/QtEglSupport/private/qeglplatformcontext_p.h
23
%%QT_INCDIR%%/QtEglSupport/%%FULLVER%%/QtEglSupport/private/qeglstreamconvenience_p.h
23
%%X11%%%%QT_INCDIR%%/QtEglSupport/%%FULLVER%%/QtEglSupport/private/qeglstreamconvenience_p.h
24
%%QT_INCDIR%%/QtEglSupport/%%FULLVER%%/QtEglSupport/private/qt_egl_p.h
24
%%X11%%%%QT_INCDIR%%/QtEglSupport/%%FULLVER%%/QtEglSupport/private/qt_egl_p.h
25
%%QT_INCDIR%%/QtEglSupport/%%FULLVER%%/QtEglSupport/private/qxlibeglintegration_p.h
25
%%X11%%%%QT_INCDIR%%/QtEglSupport/%%FULLVER%%/QtEglSupport/private/qxlibeglintegration_p.h
26
%%QT_INCDIR%%/QtEglSupport/QtEglSupport
26
%%X11%%%%QT_INCDIR%%/QtEglSupport/QtEglSupport
27
%%QT_INCDIR%%/QtEglSupport/QtEglSupportDepends
27
%%X11%%%%QT_INCDIR%%/QtEglSupport/QtEglSupportDepends
28
%%QT_INCDIR%%/QtEglSupport/QtEglSupportVersion
28
%%X11%%%%QT_INCDIR%%/QtEglSupport/QtEglSupportVersion
29
%%QT_INCDIR%%/QtEglSupport/qteglsupportversion.h
29
%%X11%%%%QT_INCDIR%%/QtEglSupport/qteglsupportversion.h
30
%%QT_INCDIR%%/QtEventDispatcherSupport/%%FULLVER%%/QtEventDispatcherSupport/private/qeventdispatcher_glib_p.h
30
%%X11%%%%QT_INCDIR%%/QtEventDispatcherSupport/%%FULLVER%%/QtEventDispatcherSupport/private/qeventdispatcher_glib_p.h
31
%%QT_INCDIR%%/QtEventDispatcherSupport/%%FULLVER%%/QtEventDispatcherSupport/private/qgenericunixeventdispatcher_p.h
31
%%X11%%%%QT_INCDIR%%/QtEventDispatcherSupport/%%FULLVER%%/QtEventDispatcherSupport/private/qgenericunixeventdispatcher_p.h
32
%%QT_INCDIR%%/QtEventDispatcherSupport/%%FULLVER%%/QtEventDispatcherSupport/private/qunixeventdispatcher_qpa_p.h
32
%%X11%%%%QT_INCDIR%%/QtEventDispatcherSupport/%%FULLVER%%/QtEventDispatcherSupport/private/qunixeventdispatcher_qpa_p.h
33
%%QT_INCDIR%%/QtEventDispatcherSupport/%%FULLVER%%/QtEventDispatcherSupport/private/qwindowsguieventdispatcher_p.h
33
%%X11%%%%QT_INCDIR%%/QtEventDispatcherSupport/%%FULLVER%%/QtEventDispatcherSupport/private/qwindowsguieventdispatcher_p.h
34
%%QT_INCDIR%%/QtEventDispatcherSupport/QtEventDispatcherSupport
34
%%X11%%%%QT_INCDIR%%/QtEventDispatcherSupport/QtEventDispatcherSupport
35
%%QT_INCDIR%%/QtEventDispatcherSupport/QtEventDispatcherSupportDepends
35
%%X11%%%%QT_INCDIR%%/QtEventDispatcherSupport/QtEventDispatcherSupportDepends
36
%%QT_INCDIR%%/QtEventDispatcherSupport/QtEventDispatcherSupportVersion
36
%%X11%%%%QT_INCDIR%%/QtEventDispatcherSupport/QtEventDispatcherSupportVersion
37
%%QT_INCDIR%%/QtEventDispatcherSupport/qteventdispatchersupportversion.h
37
%%X11%%%%QT_INCDIR%%/QtEventDispatcherSupport/qteventdispatchersupportversion.h
38
%%QT_INCDIR%%/QtFbSupport/%%FULLVER%%/QtFbSupport/private/qfbbackingstore_p.h
38
%%X11%%%%QT_INCDIR%%/QtFbSupport/%%FULLVER%%/QtFbSupport/private/qfbbackingstore_p.h
39
%%QT_INCDIR%%/QtFbSupport/%%FULLVER%%/QtFbSupport/private/qfbcursor_p.h
39
%%X11%%%%QT_INCDIR%%/QtFbSupport/%%FULLVER%%/QtFbSupport/private/qfbcursor_p.h
40
%%QT_INCDIR%%/QtFbSupport/%%FULLVER%%/QtFbSupport/private/qfbscreen_p.h
40
%%X11%%%%QT_INCDIR%%/QtFbSupport/%%FULLVER%%/QtFbSupport/private/qfbscreen_p.h
41
%%QT_INCDIR%%/QtFbSupport/%%FULLVER%%/QtFbSupport/private/qfbvthandler_p.h
41
%%X11%%%%QT_INCDIR%%/QtFbSupport/%%FULLVER%%/QtFbSupport/private/qfbvthandler_p.h
42
%%QT_INCDIR%%/QtFbSupport/%%FULLVER%%/QtFbSupport/private/qfbwindow_p.h
42
%%X11%%%%QT_INCDIR%%/QtFbSupport/%%FULLVER%%/QtFbSupport/private/qfbwindow_p.h
43
%%QT_INCDIR%%/QtFbSupport/QtFbSupport
43
%%X11%%%%QT_INCDIR%%/QtFbSupport/QtFbSupport
44
%%QT_INCDIR%%/QtFbSupport/QtFbSupportDepends
44
%%X11%%%%QT_INCDIR%%/QtFbSupport/QtFbSupportDepends
45
%%QT_INCDIR%%/QtFbSupport/QtFbSupportVersion
45
%%X11%%%%QT_INCDIR%%/QtFbSupport/QtFbSupportVersion
46
%%QT_INCDIR%%/QtFbSupport/qtfbsupportversion.h
46
%%X11%%%%QT_INCDIR%%/QtFbSupport/qtfbsupportversion.h
47
%%QT_INCDIR%%/QtFontDatabaseSupport/%%FULLVER%%/QtFontDatabaseSupport/private/qcoretextfontdatabase_p.h
47
%%X11%%%%QT_INCDIR%%/QtFontDatabaseSupport/%%FULLVER%%/QtFontDatabaseSupport/private/qcoretextfontdatabase_p.h
48
%%QT_INCDIR%%/QtFontDatabaseSupport/%%FULLVER%%/QtFontDatabaseSupport/private/qfontconfigdatabase_p.h
48
%%X11%%%%QT_INCDIR%%/QtFontDatabaseSupport/%%FULLVER%%/QtFontDatabaseSupport/private/qfontconfigdatabase_p.h
49
%%QT_INCDIR%%/QtFontDatabaseSupport/%%FULLVER%%/QtFontDatabaseSupport/private/qfontengine_coretext_p.h
49
%%X11%%%%QT_INCDIR%%/QtFontDatabaseSupport/%%FULLVER%%/QtFontDatabaseSupport/private/qfontengine_coretext_p.h
50
%%QT_INCDIR%%/QtFontDatabaseSupport/%%FULLVER%%/QtFontDatabaseSupport/private/qfontengine_ft_p.h
50
%%X11%%%%QT_INCDIR%%/QtFontDatabaseSupport/%%FULLVER%%/QtFontDatabaseSupport/private/qfontengine_ft_p.h
51
%%QT_INCDIR%%/QtFontDatabaseSupport/%%FULLVER%%/QtFontDatabaseSupport/private/qfontenginemultifontconfig_p.h
51
%%X11%%%%QT_INCDIR%%/QtFontDatabaseSupport/%%FULLVER%%/QtFontDatabaseSupport/private/qfontenginemultifontconfig_p.h
52
%%QT_INCDIR%%/QtFontDatabaseSupport/%%FULLVER%%/QtFontDatabaseSupport/private/qfreetypefontdatabase_p.h
52
%%X11%%%%QT_INCDIR%%/QtFontDatabaseSupport/%%FULLVER%%/QtFontDatabaseSupport/private/qfreetypefontdatabase_p.h
53
%%QT_INCDIR%%/QtFontDatabaseSupport/%%FULLVER%%/QtFontDatabaseSupport/private/qgenericunixfontdatabase_p.h
53
%%X11%%%%QT_INCDIR%%/QtFontDatabaseSupport/%%FULLVER%%/QtFontDatabaseSupport/private/qgenericunixfontdatabase_p.h
54
%%QT_INCDIR%%/QtFontDatabaseSupport/%%FULLVER%%/QtFontDatabaseSupport/private/qwindowsfontdatabase_ft_p.h
54
%%X11%%%%QT_INCDIR%%/QtFontDatabaseSupport/%%FULLVER%%/QtFontDatabaseSupport/private/qwindowsfontdatabase_ft_p.h
55
%%QT_INCDIR%%/QtFontDatabaseSupport/%%FULLVER%%/QtFontDatabaseSupport/private/qwindowsfontdatabase_p.h
55
%%X11%%%%QT_INCDIR%%/QtFontDatabaseSupport/%%FULLVER%%/QtFontDatabaseSupport/private/qwindowsfontdatabase_p.h
56
%%QT_INCDIR%%/QtFontDatabaseSupport/%%FULLVER%%/QtFontDatabaseSupport/private/qwindowsfontengine_p.h
56
%%X11%%%%QT_INCDIR%%/QtFontDatabaseSupport/%%FULLVER%%/QtFontDatabaseSupport/private/qwindowsfontengine_p.h
57
%%QT_INCDIR%%/QtFontDatabaseSupport/%%FULLVER%%/QtFontDatabaseSupport/private/qwindowsfontenginedirectwrite_p.h
57
%%X11%%%%QT_INCDIR%%/QtFontDatabaseSupport/%%FULLVER%%/QtFontDatabaseSupport/private/qwindowsfontenginedirectwrite_p.h
58
%%QT_INCDIR%%/QtFontDatabaseSupport/%%FULLVER%%/QtFontDatabaseSupport/private/qwindowsnativeimage_p.h
58
%%X11%%%%QT_INCDIR%%/QtFontDatabaseSupport/%%FULLVER%%/QtFontDatabaseSupport/private/qwindowsnativeimage_p.h
59
%%QT_INCDIR%%/QtFontDatabaseSupport/%%FULLVER%%/QtFontDatabaseSupport/private/qwinrtfontdatabase_p.h
59
%%X11%%%%QT_INCDIR%%/QtFontDatabaseSupport/%%FULLVER%%/QtFontDatabaseSupport/private/qwinrtfontdatabase_p.h
60
%%QT_INCDIR%%/QtFontDatabaseSupport/QtFontDatabaseSupport
60
%%X11%%%%QT_INCDIR%%/QtFontDatabaseSupport/QtFontDatabaseSupport
61
%%QT_INCDIR%%/QtFontDatabaseSupport/QtFontDatabaseSupportDepends
61
%%X11%%%%QT_INCDIR%%/QtFontDatabaseSupport/QtFontDatabaseSupportDepends
62
%%QT_INCDIR%%/QtFontDatabaseSupport/QtFontDatabaseSupportVersion
62
%%X11%%%%QT_INCDIR%%/QtFontDatabaseSupport/QtFontDatabaseSupportVersion
63
%%QT_INCDIR%%/QtFontDatabaseSupport/qtfontdatabasesupportversion.h
63
%%X11%%%%QT_INCDIR%%/QtFontDatabaseSupport/qtfontdatabasesupportversion.h
64
%%QT_INCDIR%%/QtGlxSupport/%%FULLVER%%/QtGlxSupport/private/qglxconvenience_p.h
64
%%X11%%%%QT_INCDIR%%/QtGlxSupport/%%FULLVER%%/QtGlxSupport/private/qglxconvenience_p.h
65
%%QT_INCDIR%%/QtGlxSupport/QtGlxSupport
65
%%X11%%%%QT_INCDIR%%/QtGlxSupport/QtGlxSupport
66
%%QT_INCDIR%%/QtGlxSupport/QtGlxSupportDepends
66
%%X11%%%%QT_INCDIR%%/QtGlxSupport/QtGlxSupportDepends
67
%%QT_INCDIR%%/QtGlxSupport/QtGlxSupportVersion
67
%%X11%%%%QT_INCDIR%%/QtGlxSupport/QtGlxSupportVersion
68
%%QT_INCDIR%%/QtGlxSupport/qtglxsupportversion.h
68
%%X11%%%%QT_INCDIR%%/QtGlxSupport/qtglxsupportversion.h
69
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/cs_tdr_p.h
69
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/cs_tdr_p.h
70
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qabstractlayoutstyleinfo_p.h
70
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qabstractlayoutstyleinfo_p.h
71
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qabstracttextdocumentlayout_p.h
71
%%QT_INCDIR%%/QtGui/%%FULLVER%%/QtGui/private/qabstracttextdocumentlayout_p.h
Lines 681-875 Link Here
681
%%QT_INCDIR%%/QtGui/qwindow.h
681
%%QT_INCDIR%%/QtGui/qwindow.h
682
%%QT_INCDIR%%/QtGui/qwindowdefs.h
682
%%QT_INCDIR%%/QtGui/qwindowdefs.h
683
%%QT_INCDIR%%/QtGui/qwindowdefs_win.h
683
%%QT_INCDIR%%/QtGui/qwindowdefs_win.h
684
%%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/devicehandlerlist_p.h
684
%%X11%%%%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/devicehandlerlist_p.h
685
%%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qevdevkeyboard_defaultmap_p.h
685
%%X11%%%%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qevdevkeyboard_defaultmap_p.h
686
%%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qevdevkeyboardhandler_p.h
686
%%X11%%%%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qevdevkeyboardhandler_p.h
687
%%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qevdevkeyboardmanager_p.h
687
%%X11%%%%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qevdevkeyboardmanager_p.h
688
%%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qevdevmousehandler_p.h
688
%%X11%%%%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qevdevmousehandler_p.h
689
%%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qevdevmousemanager_p.h
689
%%X11%%%%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qevdevmousemanager_p.h
690
%%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qevdevtablethandler_p.h
690
%%X11%%%%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qevdevtablethandler_p.h
691
%%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qevdevtabletmanager_p.h
691
%%X11%%%%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qevdevtabletmanager_p.h
692
%%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qevdevtouchfilter_p.h
692
%%X11%%%%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qevdevtouchfilter_p.h
693
%%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qevdevtouchhandler_p.h
693
%%X11%%%%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qevdevtouchhandler_p.h
694
%%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qevdevtouchmanager_p.h
694
%%X11%%%%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qevdevtouchmanager_p.h
695
%%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qevdevutil_p.h
695
%%X11%%%%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qevdevutil_p.h
696
%%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qlibinputhandler_p.h
696
%%X11%%%%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qlibinputhandler_p.h
697
%%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qlibinputkeyboard_p.h
697
%%X11%%%%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qlibinputkeyboard_p.h
698
%%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qlibinputpointer_p.h
698
%%X11%%%%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qlibinputpointer_p.h
699
%%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qlibinputtouch_p.h
699
%%X11%%%%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qlibinputtouch_p.h
700
%%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qtouchoutputmapping_p.h
700
%%X11%%%%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qtouchoutputmapping_p.h
701
%%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qtslib_p.h
701
%%X11%%%%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qtslib_p.h
702
%%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qxkbcommon_p.h
702
%%X11%%%%QT_INCDIR%%/QtInputSupport/%%FULLVER%%/QtInputSupport/private/qxkbcommon_p.h
703
%%QT_INCDIR%%/QtInputSupport/QIntegrityHIDManager
703
%%X11%%%%QT_INCDIR%%/QtInputSupport/QIntegrityHIDManager
704
%%QT_INCDIR%%/QtInputSupport/QtInputSupport
704
%%X11%%%%QT_INCDIR%%/QtInputSupport/QtInputSupport
705
%%QT_INCDIR%%/QtInputSupport/QtInputSupportDepends
705
%%X11%%%%QT_INCDIR%%/QtInputSupport/QtInputSupportDepends
706
%%QT_INCDIR%%/QtInputSupport/QtInputSupportVersion
706
%%X11%%%%QT_INCDIR%%/QtInputSupport/QtInputSupportVersion
707
%%QT_INCDIR%%/QtInputSupport/qintegrityhidmanager.h
707
%%X11%%%%QT_INCDIR%%/QtInputSupport/qintegrityhidmanager.h
708
%%QT_INCDIR%%/QtInputSupport/qtinputsupportversion.h
708
%%X11%%%%QT_INCDIR%%/QtInputSupport/qtinputsupportversion.h
709
%%QT_INCDIR%%/QtKmsSupport/%%FULLVER%%/QtKmsSupport/private/qkmsdevice_p.h
709
%%X11%%%%QT_INCDIR%%/QtKmsSupport/%%FULLVER%%/QtKmsSupport/private/qkmsdevice_p.h
710
%%QT_INCDIR%%/QtKmsSupport/QtKmsSupport
710
%%X11%%%%QT_INCDIR%%/QtKmsSupport/QtKmsSupport
711
%%QT_INCDIR%%/QtKmsSupport/QtKmsSupportDepends
711
%%X11%%%%QT_INCDIR%%/QtKmsSupport/QtKmsSupportDepends
712
%%QT_INCDIR%%/QtKmsSupport/QtKmsSupportVersion
712
%%X11%%%%QT_INCDIR%%/QtKmsSupport/QtKmsSupportVersion
713
%%QT_INCDIR%%/QtKmsSupport/qtkmssupportversion.h
713
%%X11%%%%QT_INCDIR%%/QtKmsSupport/qtkmssupportversion.h
714
%%QT_INCDIR%%/QtLinuxAccessibilitySupport/%%FULLVER%%/QtLinuxAccessibilitySupport/private/application_p.h
714
%%X11%%%%QT_INCDIR%%/QtLinuxAccessibilitySupport/%%FULLVER%%/QtLinuxAccessibilitySupport/private/application_p.h
715
%%QT_INCDIR%%/QtLinuxAccessibilitySupport/%%FULLVER%%/QtLinuxAccessibilitySupport/private/atspiadaptor_p.h
715
%%X11%%%%QT_INCDIR%%/QtLinuxAccessibilitySupport/%%FULLVER%%/QtLinuxAccessibilitySupport/private/atspiadaptor_p.h
716
%%QT_INCDIR%%/QtLinuxAccessibilitySupport/%%FULLVER%%/QtLinuxAccessibilitySupport/private/bridge_p.h
716
%%X11%%%%QT_INCDIR%%/QtLinuxAccessibilitySupport/%%FULLVER%%/QtLinuxAccessibilitySupport/private/bridge_p.h
717
%%QT_INCDIR%%/QtLinuxAccessibilitySupport/%%FULLVER%%/QtLinuxAccessibilitySupport/private/cache_p.h
717
%%X11%%%%QT_INCDIR%%/QtLinuxAccessibilitySupport/%%FULLVER%%/QtLinuxAccessibilitySupport/private/cache_p.h
718
%%QT_INCDIR%%/QtLinuxAccessibilitySupport/%%FULLVER%%/QtLinuxAccessibilitySupport/private/constant_mappings_p.h
718
%%X11%%%%QT_INCDIR%%/QtLinuxAccessibilitySupport/%%FULLVER%%/QtLinuxAccessibilitySupport/private/constant_mappings_p.h
719
%%QT_INCDIR%%/QtLinuxAccessibilitySupport/%%FULLVER%%/QtLinuxAccessibilitySupport/private/dbusconnection_p.h
719
%%X11%%%%QT_INCDIR%%/QtLinuxAccessibilitySupport/%%FULLVER%%/QtLinuxAccessibilitySupport/private/dbusconnection_p.h
720
%%QT_INCDIR%%/QtLinuxAccessibilitySupport/%%FULLVER%%/QtLinuxAccessibilitySupport/private/struct_marshallers_p.h
720
%%X11%%%%QT_INCDIR%%/QtLinuxAccessibilitySupport/%%FULLVER%%/QtLinuxAccessibilitySupport/private/struct_marshallers_p.h
721
%%QT_INCDIR%%/QtLinuxAccessibilitySupport/QtLinuxAccessibilitySupport
721
%%X11%%%%QT_INCDIR%%/QtLinuxAccessibilitySupport/QtLinuxAccessibilitySupport
722
%%QT_INCDIR%%/QtLinuxAccessibilitySupport/QtLinuxAccessibilitySupportDepends
722
%%X11%%%%QT_INCDIR%%/QtLinuxAccessibilitySupport/QtLinuxAccessibilitySupportDepends
723
%%QT_INCDIR%%/QtLinuxAccessibilitySupport/QtLinuxAccessibilitySupportVersion
723
%%X11%%%%QT_INCDIR%%/QtLinuxAccessibilitySupport/QtLinuxAccessibilitySupportVersion
724
%%QT_INCDIR%%/QtLinuxAccessibilitySupport/qtlinuxaccessibilitysupportversion.h
724
%%X11%%%%QT_INCDIR%%/QtLinuxAccessibilitySupport/qtlinuxaccessibilitysupportversion.h
725
%%QT_INCDIR%%/QtOpenGLExtensions/QOpenGLExtensions
725
%%X11%%%%QT_INCDIR%%/QtOpenGLExtensions/QOpenGLExtensions
726
%%QT_INCDIR%%/QtOpenGLExtensions/QtOpenGLExtensions
726
%%X11%%%%QT_INCDIR%%/QtOpenGLExtensions/QtOpenGLExtensions
727
%%QT_INCDIR%%/QtOpenGLExtensions/QtOpenGLExtensionsDepends
727
%%X11%%%%QT_INCDIR%%/QtOpenGLExtensions/QtOpenGLExtensionsDepends
728
%%QT_INCDIR%%/QtOpenGLExtensions/QtOpenGLExtensionsVersion
728
%%X11%%%%QT_INCDIR%%/QtOpenGLExtensions/QtOpenGLExtensionsVersion
729
%%QT_INCDIR%%/QtOpenGLExtensions/qopenglextensions.h
729
%%X11%%%%QT_INCDIR%%/QtOpenGLExtensions/qopenglextensions.h
730
%%QT_INCDIR%%/QtOpenGLExtensions/qtopenglextensionsversion.h
730
%%X11%%%%QT_INCDIR%%/QtOpenGLExtensions/qtopenglextensionsversion.h
731
%%QT_INCDIR%%/QtPlatformCompositorSupport/%%FULLVER%%/QtPlatformCompositorSupport/private/qopenglcompositor_p.h
731
%%X11%%%%QT_INCDIR%%/QtPlatformCompositorSupport/%%FULLVER%%/QtPlatformCompositorSupport/private/qopenglcompositor_p.h
732
%%QT_INCDIR%%/QtPlatformCompositorSupport/%%FULLVER%%/QtPlatformCompositorSupport/private/qopenglcompositorbackingstore_p.h
732
%%X11%%%%QT_INCDIR%%/QtPlatformCompositorSupport/%%FULLVER%%/QtPlatformCompositorSupport/private/qopenglcompositorbackingstore_p.h
733
%%QT_INCDIR%%/QtPlatformCompositorSupport/QtPlatformCompositorSupport
733
%%X11%%%%QT_INCDIR%%/QtPlatformCompositorSupport/QtPlatformCompositorSupport
734
%%QT_INCDIR%%/QtPlatformCompositorSupport/QtPlatformCompositorSupportDepends
734
%%X11%%%%QT_INCDIR%%/QtPlatformCompositorSupport/QtPlatformCompositorSupportDepends
735
%%QT_INCDIR%%/QtPlatformCompositorSupport/QtPlatformCompositorSupportVersion
735
%%X11%%%%QT_INCDIR%%/QtPlatformCompositorSupport/QtPlatformCompositorSupportVersion
736
%%QT_INCDIR%%/QtPlatformCompositorSupport/qtplatformcompositorsupportversion.h
736
%%X11%%%%QT_INCDIR%%/QtPlatformCompositorSupport/qtplatformcompositorsupportversion.h
737
%%QT_INCDIR%%/QtPlatformHeaders/QCocoaNativeContext
737
%%X11%%%%QT_INCDIR%%/QtPlatformHeaders/QCocoaNativeContext
738
%%QT_INCDIR%%/QtPlatformHeaders/QCocoaWindowFunctions
738
%%X11%%%%QT_INCDIR%%/QtPlatformHeaders/QCocoaWindowFunctions
739
%%QT_INCDIR%%/QtPlatformHeaders/QEGLNativeContext
739
%%X11%%%%QT_INCDIR%%/QtPlatformHeaders/QEGLNativeContext
740
%%QT_INCDIR%%/QtPlatformHeaders/QEglFSFunctions
740
%%X11%%%%QT_INCDIR%%/QtPlatformHeaders/QEglFSFunctions
741
%%QT_INCDIR%%/QtPlatformHeaders/QGLXNativeContext
741
%%X11%%%%QT_INCDIR%%/QtPlatformHeaders/QGLXNativeContext
742
%%QT_INCDIR%%/QtPlatformHeaders/QLinuxFbFunctions
742
%%X11%%%%QT_INCDIR%%/QtPlatformHeaders/QLinuxFbFunctions
743
%%QT_INCDIR%%/QtPlatformHeaders/QPlatformHeaderHelper
743
%%X11%%%%QT_INCDIR%%/QtPlatformHeaders/QPlatformHeaderHelper
744
%%QT_INCDIR%%/QtPlatformHeaders/QWGLNativeContext
744
%%X11%%%%QT_INCDIR%%/QtPlatformHeaders/QWGLNativeContext
745
%%QT_INCDIR%%/QtPlatformHeaders/QWaylandWindowFunctions
745
%%X11%%%%QT_INCDIR%%/QtPlatformHeaders/QWaylandWindowFunctions
746
%%QT_INCDIR%%/QtPlatformHeaders/QWindowsWindowFunctions
746
%%X11%%%%QT_INCDIR%%/QtPlatformHeaders/QWindowsWindowFunctions
747
%%QT_INCDIR%%/QtPlatformHeaders/QXcbScreenFunctions
747
%%X11%%%%QT_INCDIR%%/QtPlatformHeaders/QXcbScreenFunctions
748
%%QT_INCDIR%%/QtPlatformHeaders/QXcbWindowFunctions
748
%%X11%%%%QT_INCDIR%%/QtPlatformHeaders/QXcbWindowFunctions
749
%%QT_INCDIR%%/QtPlatformHeaders/QtPlatformHeaders
749
%%X11%%%%QT_INCDIR%%/QtPlatformHeaders/QtPlatformHeaders
750
%%QT_INCDIR%%/QtPlatformHeaders/QtPlatformHeadersDepends
750
%%X11%%%%QT_INCDIR%%/QtPlatformHeaders/QtPlatformHeadersDepends
751
%%QT_INCDIR%%/QtPlatformHeaders/QtPlatformHeadersVersion
751
%%X11%%%%QT_INCDIR%%/QtPlatformHeaders/QtPlatformHeadersVersion
752
%%QT_INCDIR%%/QtPlatformHeaders/qcocoanativecontext.h
752
%%X11%%%%QT_INCDIR%%/QtPlatformHeaders/qcocoanativecontext.h
753
%%QT_INCDIR%%/QtPlatformHeaders/qcocoawindowfunctions.h
753
%%X11%%%%QT_INCDIR%%/QtPlatformHeaders/qcocoawindowfunctions.h
754
%%QT_INCDIR%%/QtPlatformHeaders/qeglfsfunctions.h
754
%%X11%%%%QT_INCDIR%%/QtPlatformHeaders/qeglfsfunctions.h
755
%%QT_INCDIR%%/QtPlatformHeaders/qeglnativecontext.h
755
%%X11%%%%QT_INCDIR%%/QtPlatformHeaders/qeglnativecontext.h
756
%%QT_INCDIR%%/QtPlatformHeaders/qglxnativecontext.h
756
%%X11%%%%QT_INCDIR%%/QtPlatformHeaders/qglxnativecontext.h
757
%%QT_INCDIR%%/QtPlatformHeaders/qlinuxfbfunctions.h
757
%%X11%%%%QT_INCDIR%%/QtPlatformHeaders/qlinuxfbfunctions.h
758
%%QT_INCDIR%%/QtPlatformHeaders/qplatformheaderhelper.h
758
%%X11%%%%QT_INCDIR%%/QtPlatformHeaders/qplatformheaderhelper.h
759
%%QT_INCDIR%%/QtPlatformHeaders/qtplatformheadersversion.h
759
%%X11%%%%QT_INCDIR%%/QtPlatformHeaders/qtplatformheadersversion.h
760
%%QT_INCDIR%%/QtPlatformHeaders/qwaylandwindowfunctions.h
760
%%X11%%%%QT_INCDIR%%/QtPlatformHeaders/qwaylandwindowfunctions.h
761
%%QT_INCDIR%%/QtPlatformHeaders/qwglnativecontext.h
761
%%X11%%%%QT_INCDIR%%/QtPlatformHeaders/qwglnativecontext.h
762
%%QT_INCDIR%%/QtPlatformHeaders/qwindowswindowfunctions.h
762
%%X11%%%%QT_INCDIR%%/QtPlatformHeaders/qwindowswindowfunctions.h
763
%%QT_INCDIR%%/QtPlatformHeaders/qxcbscreenfunctions.h
763
%%X11%%%%QT_INCDIR%%/QtPlatformHeaders/qxcbscreenfunctions.h
764
%%QT_INCDIR%%/QtPlatformHeaders/qxcbwindowfunctions.h
764
%%X11%%%%QT_INCDIR%%/QtPlatformHeaders/qxcbwindowfunctions.h
765
%%QT_INCDIR%%/QtServiceSupport/%%FULLVER%%/QtServiceSupport/private/qgenericunixservices_p.h
765
%%X11%%%%QT_INCDIR%%/QtServiceSupport/%%FULLVER%%/QtServiceSupport/private/qgenericunixservices_p.h
766
%%QT_INCDIR%%/QtServiceSupport/QtServiceSupport
766
%%X11%%%%QT_INCDIR%%/QtServiceSupport/QtServiceSupport
767
%%QT_INCDIR%%/QtServiceSupport/QtServiceSupportDepends
767
%%X11%%%%QT_INCDIR%%/QtServiceSupport/QtServiceSupportDepends
768
%%QT_INCDIR%%/QtServiceSupport/QtServiceSupportVersion
768
%%X11%%%%QT_INCDIR%%/QtServiceSupport/QtServiceSupportVersion
769
%%QT_INCDIR%%/QtServiceSupport/qtservicesupportversion.h
769
%%X11%%%%QT_INCDIR%%/QtServiceSupport/qtservicesupportversion.h
770
%%QT_INCDIR%%/QtThemeSupport/%%FULLVER%%/QtThemeSupport/private/qabstractfileiconengine_p.h
770
%%X11%%%%QT_INCDIR%%/QtThemeSupport/%%FULLVER%%/QtThemeSupport/private/qabstractfileiconengine_p.h
771
%%QT_INCDIR%%/QtThemeSupport/%%FULLVER%%/QtThemeSupport/private/qdbusmenuadaptor_p.h
771
%%X11%%%%QT_INCDIR%%/QtThemeSupport/%%FULLVER%%/QtThemeSupport/private/qdbusmenuadaptor_p.h
772
%%QT_INCDIR%%/QtThemeSupport/%%FULLVER%%/QtThemeSupport/private/qdbusmenubar_p.h
772
%%X11%%%%QT_INCDIR%%/QtThemeSupport/%%FULLVER%%/QtThemeSupport/private/qdbusmenubar_p.h
773
%%QT_INCDIR%%/QtThemeSupport/%%FULLVER%%/QtThemeSupport/private/qdbusmenuconnection_p.h
773
%%X11%%%%QT_INCDIR%%/QtThemeSupport/%%FULLVER%%/QtThemeSupport/private/qdbusmenuconnection_p.h
774
%%QT_INCDIR%%/QtThemeSupport/%%FULLVER%%/QtThemeSupport/private/qdbusmenuregistrarproxy_p.h
774
%%X11%%%%QT_INCDIR%%/QtThemeSupport/%%FULLVER%%/QtThemeSupport/private/qdbusmenuregistrarproxy_p.h
775
%%QT_INCDIR%%/QtThemeSupport/%%FULLVER%%/QtThemeSupport/private/qdbusmenutypes_p.h
775
%%X11%%%%QT_INCDIR%%/QtThemeSupport/%%FULLVER%%/QtThemeSupport/private/qdbusmenutypes_p.h
776
%%QT_INCDIR%%/QtThemeSupport/%%FULLVER%%/QtThemeSupport/private/qdbusplatformmenu_p.h
776
%%X11%%%%QT_INCDIR%%/QtThemeSupport/%%FULLVER%%/QtThemeSupport/private/qdbusplatformmenu_p.h
777
%%QT_INCDIR%%/QtThemeSupport/%%FULLVER%%/QtThemeSupport/private/qdbustrayicon_p.h
777
%%X11%%%%QT_INCDIR%%/QtThemeSupport/%%FULLVER%%/QtThemeSupport/private/qdbustrayicon_p.h
778
%%QT_INCDIR%%/QtThemeSupport/%%FULLVER%%/QtThemeSupport/private/qdbustraytypes_p.h
778
%%X11%%%%QT_INCDIR%%/QtThemeSupport/%%FULLVER%%/QtThemeSupport/private/qdbustraytypes_p.h
779
%%QT_INCDIR%%/QtThemeSupport/%%FULLVER%%/QtThemeSupport/private/qgenericunixthemes_p.h
779
%%X11%%%%QT_INCDIR%%/QtThemeSupport/%%FULLVER%%/QtThemeSupport/private/qgenericunixthemes_p.h
780
%%QT_INCDIR%%/QtThemeSupport/%%FULLVER%%/QtThemeSupport/private/qstatusnotifieritemadaptor_p.h
780
%%X11%%%%QT_INCDIR%%/QtThemeSupport/%%FULLVER%%/QtThemeSupport/private/qstatusnotifieritemadaptor_p.h
781
%%QT_INCDIR%%/QtThemeSupport/%%FULLVER%%/QtThemeSupport/private/qxdgnotificationproxy_p.h
781
%%X11%%%%QT_INCDIR%%/QtThemeSupport/%%FULLVER%%/QtThemeSupport/private/qxdgnotificationproxy_p.h
782
%%QT_INCDIR%%/QtThemeSupport/QtThemeSupport
782
%%X11%%%%QT_INCDIR%%/QtThemeSupport/QtThemeSupport
783
%%QT_INCDIR%%/QtThemeSupport/QtThemeSupportDepends
783
%%X11%%%%QT_INCDIR%%/QtThemeSupport/QtThemeSupportDepends
784
%%QT_INCDIR%%/QtThemeSupport/QtThemeSupportVersion
784
%%X11%%%%QT_INCDIR%%/QtThemeSupport/QtThemeSupportVersion
785
%%QT_INCDIR%%/QtThemeSupport/qtthemesupportversion.h
785
%%X11%%%%QT_INCDIR%%/QtThemeSupport/qtthemesupportversion.h
786
%%QT_INCDIR%%/QtVulkanSupport/%%FULLVER%%/QtVulkanSupport/private/qbasicvulkanplatforminstance_p.h
786
%%X11%%%%QT_INCDIR%%/QtVulkanSupport/%%FULLVER%%/QtVulkanSupport/private/qbasicvulkanplatforminstance_p.h
787
%%QT_INCDIR%%/QtVulkanSupport/%%FULLVER%%/QtVulkanSupport/private/qvkconvenience_p.h
787
%%X11%%%%QT_INCDIR%%/QtVulkanSupport/%%FULLVER%%/QtVulkanSupport/private/qvkconvenience_p.h
788
%%QT_INCDIR%%/QtVulkanSupport/QtVulkanSupport
788
%%X11%%%%QT_INCDIR%%/QtVulkanSupport/QtVulkanSupport
789
%%QT_INCDIR%%/QtVulkanSupport/QtVulkanSupportDepends
789
%%X11%%%%QT_INCDIR%%/QtVulkanSupport/QtVulkanSupportDepends
790
%%QT_INCDIR%%/QtVulkanSupport/QtVulkanSupportVersion
790
%%X11%%%%QT_INCDIR%%/QtVulkanSupport/QtVulkanSupportVersion
791
%%QT_INCDIR%%/QtVulkanSupport/qtvulkansupportversion.h
791
%%X11%%%%QT_INCDIR%%/QtVulkanSupport/qtvulkansupportversion.h
792
%%QT_INCDIR%%/QtXkbCommonSupport/%%FULLVER%%/QtXkbCommonSupport/private/qxkbcommon_p.h
792
%%X11%%%%QT_INCDIR%%/QtXkbCommonSupport/%%FULLVER%%/QtXkbCommonSupport/private/qxkbcommon_p.h
793
%%QT_INCDIR%%/QtXkbCommonSupport/QtXkbCommonSupport
793
%%X11%%%%QT_INCDIR%%/QtXkbCommonSupport/QtXkbCommonSupport
794
%%QT_INCDIR%%/QtXkbCommonSupport/QtXkbCommonSupportDepends
794
%%X11%%%%QT_INCDIR%%/QtXkbCommonSupport/QtXkbCommonSupportDepends
795
%%QT_INCDIR%%/QtXkbCommonSupport/QtXkbCommonSupportVersion
795
%%X11%%%%QT_INCDIR%%/QtXkbCommonSupport/QtXkbCommonSupportVersion
796
%%QT_INCDIR%%/QtXkbCommonSupport/qtxkbcommonsupportversion.h
796
%%X11%%%%QT_INCDIR%%/QtXkbCommonSupport/qtxkbcommonsupportversion.h
797
%%QT_CMAKEDIR%%/Qt5AccessibilitySupport/Qt5AccessibilitySupportConfig.cmake
797
%%X11%%%%QT_CMAKEDIR%%/Qt5AccessibilitySupport/Qt5AccessibilitySupportConfig.cmake
798
%%QT_CMAKEDIR%%/Qt5AccessibilitySupport/Qt5AccessibilitySupportConfigVersion.cmake
798
%%X11%%%%QT_CMAKEDIR%%/Qt5AccessibilitySupport/Qt5AccessibilitySupportConfigVersion.cmake
799
%%QT_CMAKEDIR%%/Qt5DeviceDiscoverySupport/Qt5DeviceDiscoverySupportConfig.cmake
799
%%X11%%%%QT_CMAKEDIR%%/Qt5DeviceDiscoverySupport/Qt5DeviceDiscoverySupportConfig.cmake
800
%%QT_CMAKEDIR%%/Qt5DeviceDiscoverySupport/Qt5DeviceDiscoverySupportConfigVersion.cmake
800
%%X11%%%%QT_CMAKEDIR%%/Qt5DeviceDiscoverySupport/Qt5DeviceDiscoverySupportConfigVersion.cmake
801
%%QT_CMAKEDIR%%/Qt5EdidSupport/Qt5EdidSupportConfig.cmake
801
%%X11%%%%QT_CMAKEDIR%%/Qt5EdidSupport/Qt5EdidSupportConfig.cmake
802
%%QT_CMAKEDIR%%/Qt5EdidSupport/Qt5EdidSupportConfigVersion.cmake
802
%%X11%%%%QT_CMAKEDIR%%/Qt5EdidSupport/Qt5EdidSupportConfigVersion.cmake
803
%%QT_CMAKEDIR%%/Qt5EglSupport/Qt5EglSupportConfig.cmake
803
%%X11%%%%QT_CMAKEDIR%%/Qt5EglSupport/Qt5EglSupportConfig.cmake
804
%%QT_CMAKEDIR%%/Qt5EglSupport/Qt5EglSupportConfigVersion.cmake
804
%%X11%%%%QT_CMAKEDIR%%/Qt5EglSupport/Qt5EglSupportConfigVersion.cmake
805
%%QT_CMAKEDIR%%/Qt5EventDispatcherSupport/Qt5EventDispatcherSupportConfig.cmake
805
%%X11%%%%QT_CMAKEDIR%%/Qt5EventDispatcherSupport/Qt5EventDispatcherSupportConfig.cmake
806
%%QT_CMAKEDIR%%/Qt5EventDispatcherSupport/Qt5EventDispatcherSupportConfigVersion.cmake
806
%%X11%%%%QT_CMAKEDIR%%/Qt5EventDispatcherSupport/Qt5EventDispatcherSupportConfigVersion.cmake
807
%%QT_CMAKEDIR%%/Qt5FbSupport/Qt5FbSupportConfig.cmake
807
%%X11%%%%QT_CMAKEDIR%%/Qt5FbSupport/Qt5FbSupportConfig.cmake
808
%%QT_CMAKEDIR%%/Qt5FbSupport/Qt5FbSupportConfigVersion.cmake
808
%%X11%%%%QT_CMAKEDIR%%/Qt5FbSupport/Qt5FbSupportConfigVersion.cmake
809
%%QT_CMAKEDIR%%/Qt5FontDatabaseSupport/Qt5FontDatabaseSupportConfig.cmake
809
%%X11%%%%QT_CMAKEDIR%%/Qt5FontDatabaseSupport/Qt5FontDatabaseSupportConfig.cmake
810
%%QT_CMAKEDIR%%/Qt5FontDatabaseSupport/Qt5FontDatabaseSupportConfigVersion.cmake
810
%%X11%%%%QT_CMAKEDIR%%/Qt5FontDatabaseSupport/Qt5FontDatabaseSupportConfigVersion.cmake
811
%%QT_CMAKEDIR%%/Qt5GlxSupport/Qt5GlxSupportConfig.cmake
811
%%X11%%%%QT_CMAKEDIR%%/Qt5GlxSupport/Qt5GlxSupportConfig.cmake
812
%%QT_CMAKEDIR%%/Qt5GlxSupport/Qt5GlxSupportConfigVersion.cmake
812
%%X11%%%%QT_CMAKEDIR%%/Qt5GlxSupport/Qt5GlxSupportConfigVersion.cmake
813
%%QT_CMAKEDIR%%/Qt5Gui/Qt5GuiConfig.cmake
813
%%QT_CMAKEDIR%%/Qt5Gui/Qt5GuiConfig.cmake
814
%%QT_CMAKEDIR%%/Qt5Gui/Qt5GuiConfigExtras.cmake
814
%%QT_CMAKEDIR%%/Qt5Gui/Qt5GuiConfigExtras.cmake
815
%%QT_CMAKEDIR%%/Qt5Gui/Qt5GuiConfigVersion.cmake
815
%%QT_CMAKEDIR%%/Qt5Gui/Qt5GuiConfigVersion.cmake
816
%%QT_CMAKEDIR%%/Qt5Gui/Qt5Gui_QBsdFbIntegrationPlugin.cmake
816
%%X11%%%%QT_CMAKEDIR%%/Qt5Gui/Qt5Gui_QBsdFbIntegrationPlugin.cmake
817
%%QT_CMAKEDIR%%/Qt5Gui/Qt5Gui_QBsdKeyboardPlugin.cmake
817
%%X11%%%%QT_CMAKEDIR%%/Qt5Gui/Qt5Gui_QBsdKeyboardPlugin.cmake
818
%%QT_CMAKEDIR%%/Qt5Gui/Qt5Gui_QBsdMousePlugin.cmake
818
%%X11%%%%QT_CMAKEDIR%%/Qt5Gui/Qt5Gui_QBsdMousePlugin.cmake
819
%%QT_CMAKEDIR%%/Qt5Gui/Qt5Gui_QComposePlatformInputContextPlugin.cmake
819
%%X11%%%%QT_CMAKEDIR%%/Qt5Gui/Qt5Gui_QComposePlatformInputContextPlugin.cmake
820
%%QT_CMAKEDIR%%/Qt5Gui/Qt5Gui_QEvdevKeyboardPlugin.cmake
820
%%X11%%%%QT_CMAKEDIR%%/Qt5Gui/Qt5Gui_QEvdevKeyboardPlugin.cmake
821
%%QT_CMAKEDIR%%/Qt5Gui/Qt5Gui_QEvdevMousePlugin.cmake
821
%%X11%%%%QT_CMAKEDIR%%/Qt5Gui/Qt5Gui_QEvdevMousePlugin.cmake
822
%%QT_CMAKEDIR%%/Qt5Gui/Qt5Gui_QEvdevTabletPlugin.cmake
822
%%X11%%%%QT_CMAKEDIR%%/Qt5Gui/Qt5Gui_QEvdevTabletPlugin.cmake
823
%%QT_CMAKEDIR%%/Qt5Gui/Qt5Gui_QEvdevTouchScreenPlugin.cmake
823
%%X11%%%%QT_CMAKEDIR%%/Qt5Gui/Qt5Gui_QEvdevTouchScreenPlugin.cmake
824
%%QT_CMAKEDIR%%/Qt5Gui/Qt5Gui_QGifPlugin.cmake
824
%%X11%%%%QT_CMAKEDIR%%/Qt5Gui/Qt5Gui_QGifPlugin.cmake
825
%%QT_CMAKEDIR%%/Qt5Gui/Qt5Gui_QICOPlugin.cmake
825
%%X11%%%%QT_CMAKEDIR%%/Qt5Gui/Qt5Gui_QICOPlugin.cmake
826
%%QT_CMAKEDIR%%/Qt5Gui/Qt5Gui_QIbusPlatformInputContextPlugin.cmake
826
%%X11%%%%QT_CMAKEDIR%%/Qt5Gui/Qt5Gui_QIbusPlatformInputContextPlugin.cmake
827
%%QT_CMAKEDIR%%/Qt5Gui/Qt5Gui_QJpegPlugin.cmake
827
%%X11%%%%QT_CMAKEDIR%%/Qt5Gui/Qt5Gui_QJpegPlugin.cmake
828
%%QT_CMAKEDIR%%/Qt5Gui/Qt5Gui_QMinimalIntegrationPlugin.cmake
828
%%X11%%%%QT_CMAKEDIR%%/Qt5Gui/Qt5Gui_QMinimalIntegrationPlugin.cmake
829
%%QT_CMAKEDIR%%/Qt5Gui/Qt5Gui_QOffscreenIntegrationPlugin.cmake
829
%%X11%%%%QT_CMAKEDIR%%/Qt5Gui/Qt5Gui_QOffscreenIntegrationPlugin.cmake
830
%%QT_CMAKEDIR%%/Qt5Gui/Qt5Gui_QTuioTouchPlugin.cmake
830
%%X11%%%%QT_CMAKEDIR%%/Qt5Gui/Qt5Gui_QTuioTouchPlugin.cmake
831
%%QT_CMAKEDIR%%/Qt5Gui/Qt5Gui_QVncIntegrationPlugin.cmake
831
%%X11%%%%QT_CMAKEDIR%%/Qt5Gui/Qt5Gui_QVncIntegrationPlugin.cmake
832
%%QT_CMAKEDIR%%/Qt5Gui/Qt5Gui_QXcbEglIntegrationPlugin.cmake
832
%%X11%%%%QT_CMAKEDIR%%/Qt5Gui/Qt5Gui_QXcbEglIntegrationPlugin.cmake
833
%%QT_CMAKEDIR%%/Qt5Gui/Qt5Gui_QXcbGlxIntegrationPlugin.cmake
833
%%X11%%%%QT_CMAKEDIR%%/Qt5Gui/Qt5Gui_QXcbGlxIntegrationPlugin.cmake
834
%%QT_CMAKEDIR%%/Qt5Gui/Qt5Gui_QXcbIntegrationPlugin.cmake
834
%%X11%%%%QT_CMAKEDIR%%/Qt5Gui/Qt5Gui_QXcbIntegrationPlugin.cmake
835
%%QT_CMAKEDIR%%/Qt5InputSupport/Qt5InputSupportConfig.cmake
835
%%X11%%%%QT_CMAKEDIR%%/Qt5InputSupport/Qt5InputSupportConfig.cmake
836
%%QT_CMAKEDIR%%/Qt5InputSupport/Qt5InputSupportConfigVersion.cmake
836
%%X11%%%%QT_CMAKEDIR%%/Qt5InputSupport/Qt5InputSupportConfigVersion.cmake
837
%%QT_CMAKEDIR%%/Qt5KmsSupport/Qt5KmsSupportConfig.cmake
837
%%X11%%%%QT_CMAKEDIR%%/Qt5KmsSupport/Qt5KmsSupportConfig.cmake
838
%%QT_CMAKEDIR%%/Qt5KmsSupport/Qt5KmsSupportConfigVersion.cmake
838
%%X11%%%%QT_CMAKEDIR%%/Qt5KmsSupport/Qt5KmsSupportConfigVersion.cmake
839
%%QT_CMAKEDIR%%/Qt5LinuxAccessibilitySupport/Qt5LinuxAccessibilitySupportConfig.cmake
839
%%X11%%%%QT_CMAKEDIR%%/Qt5LinuxAccessibilitySupport/Qt5LinuxAccessibilitySupportConfig.cmake
840
%%QT_CMAKEDIR%%/Qt5LinuxAccessibilitySupport/Qt5LinuxAccessibilitySupportConfigVersion.cmake
840
%%X11%%%%QT_CMAKEDIR%%/Qt5LinuxAccessibilitySupport/Qt5LinuxAccessibilitySupportConfigVersion.cmake
841
%%QT_CMAKEDIR%%/Qt5OpenGLExtensions/Qt5OpenGLExtensionsConfig.cmake
841
%%X11%%%%QT_CMAKEDIR%%/Qt5OpenGLExtensions/Qt5OpenGLExtensionsConfig.cmake
842
%%QT_CMAKEDIR%%/Qt5OpenGLExtensions/Qt5OpenGLExtensionsConfigVersion.cmake
842
%%X11%%%%QT_CMAKEDIR%%/Qt5OpenGLExtensions/Qt5OpenGLExtensionsConfigVersion.cmake
843
%%QT_CMAKEDIR%%/Qt5PlatformCompositorSupport/Qt5PlatformCompositorSupportConfig.cmake
843
%%X11%%%%QT_CMAKEDIR%%/Qt5PlatformCompositorSupport/Qt5PlatformCompositorSupportConfig.cmake
844
%%QT_CMAKEDIR%%/Qt5PlatformCompositorSupport/Qt5PlatformCompositorSupportConfigVersion.cmake
844
%%X11%%%%QT_CMAKEDIR%%/Qt5PlatformCompositorSupport/Qt5PlatformCompositorSupportConfigVersion.cmake
845
%%QT_CMAKEDIR%%/Qt5ServiceSupport/Qt5ServiceSupportConfig.cmake
845
%%X11%%%%QT_CMAKEDIR%%/Qt5ServiceSupport/Qt5ServiceSupportConfig.cmake
846
%%QT_CMAKEDIR%%/Qt5ServiceSupport/Qt5ServiceSupportConfigVersion.cmake
846
%%X11%%%%QT_CMAKEDIR%%/Qt5ServiceSupport/Qt5ServiceSupportConfigVersion.cmake
847
%%QT_CMAKEDIR%%/Qt5ThemeSupport/Qt5ThemeSupportConfig.cmake
847
%%X11%%%%QT_CMAKEDIR%%/Qt5ThemeSupport/Qt5ThemeSupportConfig.cmake
848
%%QT_CMAKEDIR%%/Qt5ThemeSupport/Qt5ThemeSupportConfigVersion.cmake
848
%%X11%%%%QT_CMAKEDIR%%/Qt5ThemeSupport/Qt5ThemeSupportConfigVersion.cmake
849
%%QT_CMAKEDIR%%/Qt5VulkanSupport/Qt5VulkanSupportConfig.cmake
849
%%X11%%%%QT_CMAKEDIR%%/Qt5VulkanSupport/Qt5VulkanSupportConfig.cmake
850
%%QT_CMAKEDIR%%/Qt5VulkanSupport/Qt5VulkanSupportConfigVersion.cmake
850
%%X11%%%%QT_CMAKEDIR%%/Qt5VulkanSupport/Qt5VulkanSupportConfigVersion.cmake
851
%%QT_CMAKEDIR%%/Qt5XcbQpa/Qt5XcbQpaConfig.cmake
851
%%X11%%%%QT_CMAKEDIR%%/Qt5XcbQpa/Qt5XcbQpaConfig.cmake
852
%%QT_CMAKEDIR%%/Qt5XcbQpa/Qt5XcbQpaConfigVersion.cmake
852
%%X11%%%%QT_CMAKEDIR%%/Qt5XcbQpa/Qt5XcbQpaConfigVersion.cmake
853
%%QT_CMAKEDIR%%/Qt5XkbCommonSupport/Qt5XkbCommonSupportConfig.cmake
853
%%X11%%%%QT_CMAKEDIR%%/Qt5XkbCommonSupport/Qt5XkbCommonSupportConfig.cmake
854
%%QT_CMAKEDIR%%/Qt5XkbCommonSupport/Qt5XkbCommonSupportConfigVersion.cmake
854
%%X11%%%%QT_CMAKEDIR%%/Qt5XkbCommonSupport/Qt5XkbCommonSupportConfigVersion.cmake
855
%%QT_BINDIR%%/qvkgen
855
%%QT_BINDIR%%/qvkgen
856
%%DEBUG%%%%QT_BINDIR%%/qvkgen.debug
856
%%DEBUG%%%%QT_BINDIR%%/qvkgen.debug
857
%%QT_LIBDIR%%/libQt5AccessibilitySupport.a
857
%%X11%%%%QT_LIBDIR%%/libQt5AccessibilitySupport.a
858
%%QT_LIBDIR%%/libQt5AccessibilitySupport.prl
858
%%X11%%%%QT_LIBDIR%%/libQt5AccessibilitySupport.prl
859
%%QT_LIBDIR%%/libQt5DeviceDiscoverySupport.a
859
%%X11%%%%QT_LIBDIR%%/libQt5DeviceDiscoverySupport.a
860
%%QT_LIBDIR%%/libQt5DeviceDiscoverySupport.prl
860
%%X11%%%%QT_LIBDIR%%/libQt5DeviceDiscoverySupport.prl
861
%%QT_LIBDIR%%/libQt5EdidSupport.a
861
%%X11%%%%QT_LIBDIR%%/libQt5EdidSupport.a
862
%%QT_LIBDIR%%/libQt5EdidSupport.prl
862
%%X11%%%%QT_LIBDIR%%/libQt5EdidSupport.prl
863
%%QT_LIBDIR%%/libQt5EglSupport.a
863
%%X11%%%%QT_LIBDIR%%/libQt5EglSupport.a
864
%%QT_LIBDIR%%/libQt5EglSupport.prl
864
%%X11%%%%QT_LIBDIR%%/libQt5EglSupport.prl
865
%%QT_LIBDIR%%/libQt5EventDispatcherSupport.a
865
%%X11%%%%QT_LIBDIR%%/libQt5EventDispatcherSupport.a
866
%%QT_LIBDIR%%/libQt5EventDispatcherSupport.prl
866
%%X11%%%%QT_LIBDIR%%/libQt5EventDispatcherSupport.prl
867
%%QT_LIBDIR%%/libQt5FbSupport.a
867
%%X11%%%%QT_LIBDIR%%/libQt5FbSupport.a
868
%%QT_LIBDIR%%/libQt5FbSupport.prl
868
%%X11%%%%QT_LIBDIR%%/libQt5FbSupport.prl
869
%%QT_LIBDIR%%/libQt5FontDatabaseSupport.a
869
%%X11%%%%QT_LIBDIR%%/libQt5FontDatabaseSupport.a
870
%%QT_LIBDIR%%/libQt5FontDatabaseSupport.prl
870
%%X11%%%%QT_LIBDIR%%/libQt5FontDatabaseSupport.prl
871
%%QT_LIBDIR%%/libQt5GlxSupport.a
871
%%X11%%%%QT_LIBDIR%%/libQt5GlxSupport.a
872
%%QT_LIBDIR%%/libQt5GlxSupport.prl
872
%%X11%%%%QT_LIBDIR%%/libQt5GlxSupport.prl
873
%%QT_LIBDIR%%/libQt5Gui.prl
873
%%QT_LIBDIR%%/libQt5Gui.prl
874
%%QT_LIBDIR%%/libQt5Gui.so
874
%%QT_LIBDIR%%/libQt5Gui.so
875
%%QT_LIBDIR%%/libQt5Gui.so.5
875
%%QT_LIBDIR%%/libQt5Gui.so.5
Lines 876-964 Link Here
876
%%QT_LIBDIR%%/libQt5Gui.so.%%SHORTVER%%
876
%%QT_LIBDIR%%/libQt5Gui.so.%%SHORTVER%%
877
%%QT_LIBDIR%%/libQt5Gui.so.%%FULLVER%%
877
%%QT_LIBDIR%%/libQt5Gui.so.%%FULLVER%%
878
%%DEBUG%%%%QT_LIBDIR%%/libQt5Gui.so.%%FULLVER%%.debug
878
%%DEBUG%%%%QT_LIBDIR%%/libQt5Gui.so.%%FULLVER%%.debug
879
%%QT_LIBDIR%%/libQt5InputSupport.a
879
%%X11%%%%QT_LIBDIR%%/libQt5InputSupport.a
880
%%QT_LIBDIR%%/libQt5InputSupport.prl
880
%%X11%%%%QT_LIBDIR%%/libQt5InputSupport.prl
881
%%QT_LIBDIR%%/libQt5KmsSupport.a
881
%%X11%%%%QT_LIBDIR%%/libQt5KmsSupport.a
882
%%QT_LIBDIR%%/libQt5KmsSupport.prl
882
%%X11%%%%QT_LIBDIR%%/libQt5KmsSupport.prl
883
%%QT_LIBDIR%%/libQt5LinuxAccessibilitySupport.a
883
%%X11%%%%QT_LIBDIR%%/libQt5LinuxAccessibilitySupport.a
884
%%QT_LIBDIR%%/libQt5LinuxAccessibilitySupport.prl
884
%%X11%%%%QT_LIBDIR%%/libQt5LinuxAccessibilitySupport.prl
885
%%QT_LIBDIR%%/libQt5OpenGLExtensions.a
885
%%X11%%%%QT_LIBDIR%%/libQt5OpenGLExtensions.a
886
%%QT_LIBDIR%%/libQt5OpenGLExtensions.prl
886
%%X11%%%%QT_LIBDIR%%/libQt5OpenGLExtensions.prl
887
%%QT_LIBDIR%%/libQt5PlatformCompositorSupport.a
887
%%X11%%%%QT_LIBDIR%%/libQt5PlatformCompositorSupport.a
888
%%QT_LIBDIR%%/libQt5PlatformCompositorSupport.prl
888
%%X11%%%%QT_LIBDIR%%/libQt5PlatformCompositorSupport.prl
889
%%QT_LIBDIR%%/libQt5ServiceSupport.a
889
%%X11%%%%QT_LIBDIR%%/libQt5ServiceSupport.a
890
%%QT_LIBDIR%%/libQt5ServiceSupport.prl
890
%%X11%%%%QT_LIBDIR%%/libQt5ServiceSupport.prl
891
%%QT_LIBDIR%%/libQt5ThemeSupport.a
891
%%X11%%%%QT_LIBDIR%%/libQt5ThemeSupport.a
892
%%QT_LIBDIR%%/libQt5ThemeSupport.prl
892
%%X11%%%%QT_LIBDIR%%/libQt5ThemeSupport.prl
893
%%QT_LIBDIR%%/libQt5VulkanSupport.a
893
%%X11%%%%QT_LIBDIR%%/libQt5VulkanSupport.a
894
%%QT_LIBDIR%%/libQt5VulkanSupport.prl
894
%%X11%%%%QT_LIBDIR%%/libQt5VulkanSupport.prl
895
%%QT_LIBDIR%%/libQt5XcbQpa.prl
895
%%X11%%%%QT_LIBDIR%%/libQt5XcbQpa.prl
896
%%QT_LIBDIR%%/libQt5XcbQpa.so
896
%%X11%%%%QT_LIBDIR%%/libQt5XcbQpa.so
897
%%QT_LIBDIR%%/libQt5XcbQpa.so.5
897
%%X11%%%%QT_LIBDIR%%/libQt5XcbQpa.so.5
898
%%QT_LIBDIR%%/libQt5XcbQpa.so.%%SHORTVER%%
898
%%X11%%%%QT_LIBDIR%%/libQt5XcbQpa.so.%%SHORTVER%%
899
%%QT_LIBDIR%%/libQt5XcbQpa.so.%%FULLVER%%
899
%%X11%%%%QT_LIBDIR%%/libQt5XcbQpa.so.%%FULLVER%%
900
%%DEBUG%%%%QT_LIBDIR%%/libQt5XcbQpa.so.%%FULLVER%%.debug
900
%%X11%%%%DEBUG%%%%QT_LIBDIR%%/libQt5XcbQpa.so.%%FULLVER%%.debug
901
%%QT_LIBDIR%%/libQt5XkbCommonSupport.a
901
%%X11%%%%QT_LIBDIR%%/libQt5XkbCommonSupport.a
902
%%QT_LIBDIR%%/libQt5XkbCommonSupport.prl
902
%%X11%%%%QT_LIBDIR%%/libQt5XkbCommonSupport.prl
903
%%QT_LIBDIR%%/metatypes/qt5gui_metatypes.json
903
%%QT_LIBDIR%%/metatypes/qt5gui_metatypes.json
904
%%QT_MKSPECDIR%%/modules/qt_lib_accessibility_support_private.pri
904
%%X11%%%%QT_MKSPECDIR%%/modules/qt_lib_accessibility_support_private.pri
905
%%QT_MKSPECDIR%%/modules/qt_lib_devicediscovery_support_private.pri
905
%%X11%%%%QT_MKSPECDIR%%/modules/qt_lib_devicediscovery_support_private.pri
906
%%QT_MKSPECDIR%%/modules/qt_lib_edid_support_private.pri
906
%%X11%%%%QT_MKSPECDIR%%/modules/qt_lib_edid_support_private.pri
907
%%QT_MKSPECDIR%%/modules/qt_lib_egl_support_private.pri
907
%%X11%%%%QT_MKSPECDIR%%/modules/qt_lib_egl_support_private.pri
908
%%QT_MKSPECDIR%%/modules/qt_lib_eventdispatcher_support_private.pri
908
%%X11%%%%QT_MKSPECDIR%%/modules/qt_lib_eventdispatcher_support_private.pri
909
%%QT_MKSPECDIR%%/modules/qt_lib_fb_support_private.pri
909
%%X11%%%%QT_MKSPECDIR%%/modules/qt_lib_fb_support_private.pri
910
%%QT_MKSPECDIR%%/modules/qt_lib_fontdatabase_support_private.pri
910
%%X11%%%%QT_MKSPECDIR%%/modules/qt_lib_fontdatabase_support_private.pri
911
%%QT_MKSPECDIR%%/modules/qt_lib_glx_support_private.pri
911
%%X11%%%%QT_MKSPECDIR%%/modules/qt_lib_glx_support_private.pri
912
%%QT_MKSPECDIR%%/modules/qt_lib_gui.pri
912
%%QT_MKSPECDIR%%/modules/qt_lib_gui.pri
913
%%QT_MKSPECDIR%%/modules/qt_lib_gui_private.pri
913
%%QT_MKSPECDIR%%/modules/qt_lib_gui_private.pri
914
%%QT_MKSPECDIR%%/modules/qt_lib_input_support_private.pri
914
%%X11%%%%QT_MKSPECDIR%%/modules/qt_lib_input_support_private.pri
915
%%QT_MKSPECDIR%%/modules/qt_lib_kms_support_private.pri
915
%%X11%%%%QT_MKSPECDIR%%/modules/qt_lib_kms_support_private.pri
916
%%QT_MKSPECDIR%%/modules/qt_lib_linuxaccessibility_support_private.pri
916
%%X11%%%%QT_MKSPECDIR%%/modules/qt_lib_linuxaccessibility_support_private.pri
917
%%QT_MKSPECDIR%%/modules/qt_lib_openglextensions.pri
917
%%X11%%%%QT_MKSPECDIR%%/modules/qt_lib_openglextensions.pri
918
%%QT_MKSPECDIR%%/modules/qt_lib_openglextensions_private.pri
918
%%X11%%%%QT_MKSPECDIR%%/modules/qt_lib_openglextensions_private.pri
919
%%QT_MKSPECDIR%%/modules/qt_lib_platformcompositor_support_private.pri
919
%%X11%%%%QT_MKSPECDIR%%/modules/qt_lib_platformcompositor_support_private.pri
920
%%QT_MKSPECDIR%%/modules/qt_lib_service_support_private.pri
920
%%X11%%%%QT_MKSPECDIR%%/modules/qt_lib_service_support_private.pri
921
%%QT_MKSPECDIR%%/modules/qt_lib_theme_support_private.pri
921
%%X11%%%%QT_MKSPECDIR%%/modules/qt_lib_theme_support_private.pri
922
%%QT_MKSPECDIR%%/modules/qt_lib_vulkan_support_private.pri
922
%%X11%%%%QT_MKSPECDIR%%/modules/qt_lib_vulkan_support_private.pri
923
%%QT_MKSPECDIR%%/modules/qt_lib_xcb_qpa_lib_private.pri
923
%%X11%%%%QT_MKSPECDIR%%/modules/qt_lib_xcb_qpa_lib_private.pri
924
%%QT_MKSPECDIR%%/modules/qt_lib_xkbcommon_support_private.pri
924
%%X11%%%%QT_MKSPECDIR%%/modules/qt_lib_xkbcommon_support_private.pri
925
%%QT_PLUGINDIR%%/generic/libqbsdkeyboardplugin.so
925
%%X11%%%%QT_PLUGINDIR%%/generic/libqbsdkeyboardplugin.so
926
%%DEBUG%%%%QT_PLUGINDIR%%/generic/libqbsdkeyboardplugin.so.debug
926
%%X11%%%%DEBUG%%%%QT_PLUGINDIR%%/generic/libqbsdkeyboardplugin.so.debug
927
%%QT_PLUGINDIR%%/generic/libqbsdmouseplugin.so
927
%%X11%%%%QT_PLUGINDIR%%/generic/libqbsdmouseplugin.so
928
%%DEBUG%%%%QT_PLUGINDIR%%/generic/libqbsdmouseplugin.so.debug
928
%%X11%%%%DEBUG%%%%QT_PLUGINDIR%%/generic/libqbsdmouseplugin.so.debug
929
%%QT_PLUGINDIR%%/generic/libqevdevkeyboardplugin.so
929
%%X11%%%%QT_PLUGINDIR%%/generic/libqevdevkeyboardplugin.so
930
%%DEBUG%%%%QT_PLUGINDIR%%/generic/libqevdevkeyboardplugin.so.debug
930
%%X11%%%%DEBUG%%%%QT_PLUGINDIR%%/generic/libqevdevkeyboardplugin.so.debug
931
%%QT_PLUGINDIR%%/generic/libqevdevmouseplugin.so
931
%%X11%%%%QT_PLUGINDIR%%/generic/libqevdevmouseplugin.so
932
%%DEBUG%%%%QT_PLUGINDIR%%/generic/libqevdevmouseplugin.so.debug
932
%%X11%%%%DEBUG%%%%QT_PLUGINDIR%%/generic/libqevdevmouseplugin.so.debug
933
%%QT_PLUGINDIR%%/generic/libqevdevtabletplugin.so
933
%%X11%%%%QT_PLUGINDIR%%/generic/libqevdevtabletplugin.so
934
%%DEBUG%%%%QT_PLUGINDIR%%/generic/libqevdevtabletplugin.so.debug
934
%%X11%%%%DEBUG%%%%QT_PLUGINDIR%%/generic/libqevdevtabletplugin.so.debug
935
%%QT_PLUGINDIR%%/generic/libqevdevtouchplugin.so
935
%%X11%%%%QT_PLUGINDIR%%/generic/libqevdevtouchplugin.so
936
%%DEBUG%%%%QT_PLUGINDIR%%/generic/libqevdevtouchplugin.so.debug
936
%%X11%%%%DEBUG%%%%QT_PLUGINDIR%%/generic/libqevdevtouchplugin.so.debug
937
%%QT_PLUGINDIR%%/generic/libqtuiotouchplugin.so
937
%%X11%%%%QT_PLUGINDIR%%/generic/libqtuiotouchplugin.so
938
%%DEBUG%%%%QT_PLUGINDIR%%/generic/libqtuiotouchplugin.so.debug
938
%%X11%%%%DEBUG%%%%QT_PLUGINDIR%%/generic/libqtuiotouchplugin.so.debug
939
%%QT_PLUGINDIR%%/imageformats/libqgif.so
939
%%X11%%%%QT_PLUGINDIR%%/imageformats/libqgif.so
940
%%DEBUG%%%%QT_PLUGINDIR%%/imageformats/libqgif.so.debug
940
%%X11%%%%DEBUG%%%%QT_PLUGINDIR%%/imageformats/libqgif.so.debug
941
%%QT_PLUGINDIR%%/imageformats/libqico.so
941
%%X11%%%%QT_PLUGINDIR%%/imageformats/libqico.so
942
%%DEBUG%%%%QT_PLUGINDIR%%/imageformats/libqico.so.debug
942
%%X11%%%%DEBUG%%%%QT_PLUGINDIR%%/imageformats/libqico.so.debug
943
%%QT_PLUGINDIR%%/imageformats/libqjpeg.so
943
%%X11%%%%QT_PLUGINDIR%%/imageformats/libqjpeg.so
944
%%DEBUG%%%%QT_PLUGINDIR%%/imageformats/libqjpeg.so.debug
944
%%X11%%%%DEBUG%%%%QT_PLUGINDIR%%/imageformats/libqjpeg.so.debug
945
%%QT_PLUGINDIR%%/platforminputcontexts/libcomposeplatforminputcontextplugin.so
945
%%X11%%%%QT_PLUGINDIR%%/platforminputcontexts/libcomposeplatforminputcontextplugin.so
946
%%DEBUG%%%%QT_PLUGINDIR%%/platforminputcontexts/libcomposeplatforminputcontextplugin.so.debug
946
%%X11%%%%DEBUG%%%%QT_PLUGINDIR%%/platforminputcontexts/libcomposeplatforminputcontextplugin.so.debug
947
%%QT_PLUGINDIR%%/platforminputcontexts/libibusplatforminputcontextplugin.so
947
%%X11%%%%QT_PLUGINDIR%%/platforminputcontexts/libibusplatforminputcontextplugin.so
948
%%DEBUG%%%%QT_PLUGINDIR%%/platforminputcontexts/libibusplatforminputcontextplugin.so.debug
948
%%X11%%%%DEBUG%%%%QT_PLUGINDIR%%/platforminputcontexts/libibusplatforminputcontextplugin.so.debug
949
%%QT_PLUGINDIR%%/platforms/libqbsdfb.so
949
%%X11%%%%QT_PLUGINDIR%%/platforms/libqbsdfb.so
950
%%DEBUG%%%%QT_PLUGINDIR%%/platforms/libqbsdfb.so.debug
950
%%X11%%%%DEBUG%%%%QT_PLUGINDIR%%/platforms/libqbsdfb.so.debug
951
%%QT_PLUGINDIR%%/platforms/libqminimal.so
951
%%X11%%%%QT_PLUGINDIR%%/platforms/libqminimal.so
952
%%DEBUG%%%%QT_PLUGINDIR%%/platforms/libqminimal.so.debug
952
%%X11%%%%DEBUG%%%%QT_PLUGINDIR%%/platforms/libqminimal.so.debug
953
%%QT_PLUGINDIR%%/platforms/libqoffscreen.so
953
%%X11%%%%QT_PLUGINDIR%%/platforms/libqoffscreen.so
954
%%DEBUG%%%%QT_PLUGINDIR%%/platforms/libqoffscreen.so.debug
954
%%X11%%%%DEBUG%%%%QT_PLUGINDIR%%/platforms/libqoffscreen.so.debug
955
%%QT_PLUGINDIR%%/platforms/libqvnc.so
955
%%X11%%%%QT_PLUGINDIR%%/platforms/libqvnc.so
956
%%DEBUG%%%%QT_PLUGINDIR%%/platforms/libqvnc.so.debug
956
%%X11%%%%DEBUG%%%%QT_PLUGINDIR%%/platforms/libqvnc.so.debug
957
%%QT_PLUGINDIR%%/platforms/libqxcb.so
957
%%X11%%%%QT_PLUGINDIR%%/platforms/libqxcb.so
958
%%DEBUG%%%%QT_PLUGINDIR%%/platforms/libqxcb.so.debug
958
%%X11%%%%DEBUG%%%%QT_PLUGINDIR%%/platforms/libqxcb.so.debug
959
%%QT_PLUGINDIR%%/xcbglintegrations/libqxcb-egl-integration.so
959
%%X11%%%%QT_PLUGINDIR%%/xcbglintegrations/libqxcb-egl-integration.so
960
%%DEBUG%%%%QT_PLUGINDIR%%/xcbglintegrations/libqxcb-egl-integration.so.debug
960
%%X11%%%%DEBUG%%%%QT_PLUGINDIR%%/xcbglintegrations/libqxcb-egl-integration.so.debug
961
%%QT_PLUGINDIR%%/xcbglintegrations/libqxcb-glx-integration.so
961
%%X11%%%%QT_PLUGINDIR%%/xcbglintegrations/libqxcb-glx-integration.so
962
%%DEBUG%%%%QT_PLUGINDIR%%/xcbglintegrations/libqxcb-glx-integration.so.debug
962
%%X11%%%%DEBUG%%%%QT_PLUGINDIR%%/xcbglintegrations/libqxcb-glx-integration.so.debug
963
libdata/pkgconfig/Qt5Gui.pc
963
libdata/pkgconfig/Qt5Gui.pc
964
libdata/pkgconfig/Qt5OpenGLExtensions.pc
964
%%X11%%libdata/pkgconfig/Qt5OpenGLExtensions.pc

Return to bug 247994