diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2022-01-29 11:47:36 -0800 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2022-01-29 11:47:36 -0800 |
commit | f93c9fd759f98833311b6d7738bc9c59f88ec193 (patch) | |
tree | 41d9d6558984b92dc29b81fd51c5169f5cbef8c9 | |
parent | 211f8163b0eb669567ec92b44857c1c96f22208f (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/tcx_cursor.c:31:
../../src/tcx.h:29:10: fatal error: xf86RamDac.h: No such file or directory
29 | #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/tcx.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -26,7 +26,7 @@ #include "xf86.h" #include "xf86_OSproc.h" -#include "xf86RamDac.h" +#include "xf86Cursor.h" #include <X11/Xmd.h> #include "gcstruct.h" #include "xf86sbusBus.h" |