diff options
author | Matteo Bernardini <ponce@slackbuilds.org> | 2022-02-10 09:08:16 +0100 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2022-02-12 00:29:41 +0700 |
commit | a8f638cd023abde226ea045ef0e26a9a5b3a6cf2 (patch) | |
tree | feb545fef995df33a680da194cfe73cb3a7df520 /system/xf86-video-qxl/libdrm.patch | |
parent | 5afe75979480a1931d8d5a24b2f416205ad352d7 (diff) |
system/xf86-video-qxl: Patch for the newer libdrm.
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/xf86-video-qxl/libdrm.patch')
-rw-r--r-- | system/xf86-video-qxl/libdrm.patch | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/system/xf86-video-qxl/libdrm.patch b/system/xf86-video-qxl/libdrm.patch new file mode 100644 index 0000000000000..8e95dd77ac4d0 --- /dev/null +++ b/system/xf86-video-qxl/libdrm.patch @@ -0,0 +1,25 @@ +From: Matteo Bernardini <ponce@slackbuilds.org> +Subject: Change header inclusion order to avoid xorg headers catching stdbool.h + +libdrm commit e641e2a632d779f638ac2ba983b9fceb20b3fac4 added +stdbool.h to the library headers which conflicts with xorg headers. + +diff -Naur xf86-video-qxl-0.1.5.orig/src/qxl_drmmode.c xf86-video-qxl-0.1.5/src/qxl_drmmode.c +--- xf86-video-qxl-0.1.5.orig/src/qxl_drmmode.c 2015-03-30 16:58:56.000000000 +0200 ++++ xf86-video-qxl-0.1.5/src/qxl_drmmode.c 2022-02-10 08:59:13.221017000 +0100 +@@ -33,7 +33,6 @@ + #ifdef XF86DRM_MODE + + #include <sys/ioctl.h> +-#include "qxl_drmmode.h" + #include "X11/Xatom.h" + #include "xf86DDC.h" + /* DPMS */ +@@ -47,6 +46,7 @@ + + #include "qxl.h" + #include "qxl_surface.h" ++#include "qxl_drmmode.h" + + static void drmmode_show_cursor (xf86CrtcPtr crtc); + |