diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2022-01-29 11:05:25 -0800 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2022-01-29 11:05:25 -0800 |
commit | 656dd83b489e7bdc72d6c1990025d20dea26dc22 (patch) | |
tree | 30b657ef88e5f08ea695eef8ec777bdd9c7d4e4f /src | |
parent | 688b7b059db391c28d530c97da0af12772e80f4d (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>
Diffstat (limited to 'src')
-rw-r--r-- | src/ffb.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |