summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2022-01-29 11:05:25 -0800
committerAlan Coopersmith <alan.coopersmith@oracle.com>2022-01-29 11:05:25 -0800
commit656dd83b489e7bdc72d6c1990025d20dea26dc22 (patch)
tree30b657ef88e5f08ea695eef8ec777bdd9c7d4e4f
parent688b7b059db391c28d530c97da0af12772e80f4d (diff)
Include xf86Cursor.h instead of xf86RamDac.h
ramdac drivers have been removed from xserver since version 21.0.99.1 and xorg/xserver@f0385fb4 resulting in the following build failure: In file included from ../../src/ffb_accel.c:39: ../../src/ffb.h:33:10: fatal error: xf86RamDac.h: No such file or directory 33 | #include "xf86RamDac.h" | ^~~~~~~~~~~~~~ but xf86RamDac.h in turn included xf86Cursor.h which we still need. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r--src/ffb.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ffb.h b/src/ffb.h
index 67a2d87..d870240 100644
--- a/src/ffb.h
+++ b/src/ffb.h
@@ -30,7 +30,7 @@
#include "xf86.h"
#include "xf86_OSproc.h"
-#include "xf86RamDac.h"
+#include "xf86Cursor.h"
#ifdef HAVE_XAA_H
#include "xaa.h"
#endif