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
after cloning meh from git and typing 'make' rather than making it gives this error:
`% make
cc -O3 -DNDEBUG -MMD -MP -MT "src/bmp.d" -c -o src/bmp.o src/bmp.c
In file included from src/bmp.c:5:
src/meh.h:50:15: error: unknown type name 'fd_set'
int setup_fds(fd_set *fds); ^ src/meh.h:51:17: error: unknown type name 'fd_set'
int process_fds(fd_set *fds); ^ 2 errors generated.`
The text was updated successfully, but these errors were encountered:
69f653a fixes that with an
#include <sys/select.h>
Sorry, something went wrong.
No branches or pull requests
after cloning meh from git and typing 'make' rather than making it gives this error:
`% make
cc -O3 -DNDEBUG -MMD -MP -MT "src/bmp.d" -c -o src/bmp.o src/bmp.c
In file included from src/bmp.c:5:
src/meh.h:50:15: error: unknown type name 'fd_set'
int setup_fds(fd_set *fds);
^
src/meh.h:51:17: error: unknown type name 'fd_set'
int process_fds(fd_set *fds);
^
2 errors generated.`
The text was updated successfully, but these errors were encountered: