We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I installed GNU make and run gmake, but compilation fails with:
CC util.c util.c:4:10: fatal error: 'xcb/xcb.h' file not found #include <xcb/xcb.h> ^ 1 error generated. Makefile:37: recipe for target 'util.o' failed gmake: *** [util.o] Error 1
So I tried to export INCLUDEDIR as /usr/local/include. Also ran gmake -I /usr/local/include. And tried PREFIX=/usr/local.
gmake -I /usr/local/include
I have xcb and libxcb packages installed. xcb.h exists in /usr/local/include/xcb
The text was updated successfully, but these errors were encountered:
Edit config.mk And add -I/usr/local/include to CFLAGS And -L/usr/local/lib to LDFLAGS
Sorry, something went wrong.
Thanks. Fixed.
No branches or pull requests
I installed GNU make and run gmake, but compilation fails with:
So I tried to export INCLUDEDIR as /usr/local/include. Also ran
gmake -I /usr/local/include
. And tried PREFIX=/usr/local.I have xcb and libxcb packages installed. xcb.h exists in /usr/local/include/xcb
The text was updated successfully, but these errors were encountered: