projects
/
qtbase-opensource-src.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b1b7b25
)
properly cast types for libglvnd 1.3.4
author
Rex Dieter
<rdieter@gmail.com>
Wed, 12 Apr 2023 23:24:34 +0000
(
00:24
+0100)
committer
Lisandro Damián Nicanor Pérez Meyer
<lisandro@debian.org>
Wed, 12 Apr 2023 23:24:34 +0000
(
00:24
+0100)
Origin: https://src.fedoraproject.org/rpms/qt5-qtbase/blob/rawhide/f/qtbase-everywhere-src-5.15.2-libglvnd.patch
Gbp-Pq: Name cast_types_for_egl_x11_test.diff
src/gui/configure.json
patch
|
blob
|
history
diff --git
a/src/gui/configure.json
b/src/gui/configure.json
index 1f08795c57b4c62e6e0eeef149844e30fb3eccc0..f159568f61ac41394bf3ee319fe0e037eb4c46eb 100644
(file)
--- a/
src/gui/configure.json
+++ b/
src/gui/configure.json
@@
-838,9
+838,9
@@
],
"include": [ "EGL/egl.h", "X11/Xlib.h" ],
"main": [
- "Display *dpy =
EGL_DEFAULT_DISPLAY
;",
+ "Display *dpy =
reinterpret_cast<Display *>(EGL_DEFAULT_DISPLAY)
;",
"EGLNativeDisplayType egldpy = XOpenDisplay(\"\");",
- "dpy =
egldpy
;",
+ "dpy =
reinterpret_cast<Display *>(egldpy)
;",
"EGLNativeWindowType w = XCreateWindow(dpy, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);",
"XDestroyWindow(dpy, w);",
"XCloseDisplay(dpy);"