diff options
author | Zach van Rijn <me@zv.io> | 2022-09-04 22:30:47 -0500 |
---|---|---|
committer | Zach van Rijn <me@zv.io> | 2022-10-21 18:34:02 -0500 |
commit | 48a9d0a5b86dddb885044dddeb8af63de39f0586 (patch) | |
tree | 8f3f2f9b0fde32057cf775a22e802ebeae9bd635 /user/xf86-video-qxl/libdrm.patch | |
parent | 2b53b0d584457a020d79ba5f61ffeb976131e079 (diff) | |
download | packages-48a9d0a5b86dddb885044dddeb8af63de39f0586.tar.gz packages-48a9d0a5b86dddb885044dddeb8af63de39f0586.tar.bz2 packages-48a9d0a5b86dddb885044dddeb8af63de39f0586.tar.xz packages-48a9d0a5b86dddb885044dddeb8af63de39f0586.zip |
user/xf86-video-qxl: patch libdrm include. fixes #792.
Diffstat (limited to 'user/xf86-video-qxl/libdrm.patch')
-rw-r--r-- | user/xf86-video-qxl/libdrm.patch | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/user/xf86-video-qxl/libdrm.patch b/user/xf86-video-qxl/libdrm.patch new file mode 100644 index 000000000..8e95dd77a --- /dev/null +++ b/user/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); + |