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>
This commit is contained in:
Matteo Bernardini 2022-02-10 09:08:16 +01:00 committed by Willy Sudiarto Raharjo
parent 5afe759794
commit a8f638cd02
No known key found for this signature in database
GPG key ID: 3F617144D7238786
2 changed files with 27 additions and 0 deletions

View file

@ -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);

View file

@ -84,6 +84,8 @@ find -L . \
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
-exec chmod 644 {} \;
patch -p1 < $CWD/libdrm.patch
# autogen.sh can be used in place of configure
CFLAGS="$SLKCFLAGS" \
CXXFLAGS="$SLKCFLAGS" \