$ gmake
cc -std=c99 -march=native -O3 -pipe -Wall -Wconversion -Wdouble-promotion -Wextra -Wmissing-prototypes -Wold-style-definition -Wpedantic -Wshadow -o xhidecursor main.c -lX11 -lXfixes -lXi
main.c:1:10: fatal error: 'X11/extensions/XInput2.h' file not found
1 | #include <X11/extensions/XInput2.h>
| ^~~~~~~~~~~~~~~~~~~~~~~~~~
1 error generated.
gmake: *** [Makefile:18: xhidecursor] Error 1
$
That's pretty much it. I'm unsure why this doesn't work, according to man.openbsd.org/man3/XIDefineCursor.3 it should?
$ gmake
cc -std=c99 -march=native -O3 -pipe -Wall -Wconversion -Wdouble-promotion -Wextra -Wmissing-prototypes -Wold-style-definition -Wpedantic -Wshadow -o xhidecursor main.c -lX11 -lXfixes -lXi
main.c:1:10: fatal error: 'X11/extensions/XInput2.h' file not found
1 | #include <X11/extensions/XInput2.h>
| ^~~~~~~~~~~~~~~~~~~~~~~~~~
1 error generated.
gmake: *** [Makefile:18: xhidecursor] Error 1
$
That's pretty much it. I'm unsure why this doesn't work, according to man.openbsd.org/man3/XIDefineCursor.3 it should?