Blame SOURCES/0001-saa-Build-compatibility-with-xserver-1.20.patch

586667
From 7e5237dd08f2a469d0bc699cbcde763cc93c7407 Mon Sep 17 00:00:00 2001
586667
From: Adam Jackson <ajax@redhat.com>
586667
Date: Tue, 7 Nov 2017 15:42:59 -0500
586667
Subject: [PATCH xf86-video-vmware] saa: Build compatibility with xserver 1.20
586667
586667
fbGetRotatedPixmap went away with 24bpp support, just treat it as NULL
586667
and we'll do the right thing.
586667
586667
Signed-off-by: Adam Jackson <ajax@redhat.com>
586667
---
586667
 saa/saa.c | 5 +++++
586667
 1 file changed, 5 insertions(+)
586667
586667
diff --git a/saa/saa.c b/saa/saa.c
586667
index be9520e..d956853 100644
586667
--- a/saa/saa.c
586667
+++ b/saa/saa.c
586667
@@ -370,6 +370,11 @@ saa_op_reads_destination(CARD8 op)
586667
     }
586667
 }
586667
 
586667
+/* compatibility with xserver >= 1.20 */
586667
+#ifndef fbGetRotatedPixmap
586667
+#define fbGetRotatedPixmap(pGC) NULL
586667
+#endif
586667
+
586667
 static void
586667
 saa_validate_gc(GCPtr pGC, unsigned long changes, DrawablePtr pDrawable)
586667
 {
586667
-- 
586667
2.16.2
586667