-
Notifications
You must be signed in to change notification settings - Fork 28
New issue
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
redirect path of missing/wrong headers #22
base: master
Are you sure you want to change the base?
Conversation
gcc -I/usr/src/gpm-1.20.7/src -DHAVE_CONFIG_H -include headers/config.h -Wall -DSYSCONFDIR="\"/etc\"" -DSBINDIR="\"/usr/sbin\"" -D_GNU_SOURCE -g -O2 -c -o daemon/gpm.o daemon/gpm.c In file included from daemon/gpm.c:32:0: /usr/include/sys/fcntl.h:1:2: warning: #warning redirecting incorrect #include <sys/fcntl.h> to <fcntl.h> [-Wcpp]
Previously: for DEPS in `echo *.c */*.c`; do \ gcc -I. -I /usr/src/gpm-1.20.7/src -M -I/usr/src/gpm-1.20.7/src -DHAVE_CONFIG_H -include headers/config.h -Wall -DSYSCONFDIR="\"/etc\"" -DSBINDIR="\"/usr/sbin\"" -D_GNU_SOURCE $DEPS | \ /bin/sed 's/^\(.*\)\.o\([ :]+\)/\1.o \1.lo\2/g' >> .depend ; done prog/display-buttons.c:39:57: fatal error: gpm.h: No such file or directory #include <gpm.h> /* gpm information */ ^ compilation terminated. prog/display-coords.c:40:57: fatal error: gpm.h: No such file or directory #include <gpm.h> /* gpm information */ ^ compilation terminated. prog/get-versions.c:25:57: fatal error: gpm.h: No such file or directory #include <gpm.h> /* gpm information */ ^ compilation terminated.
@selkfoster Can you resolve conflicts? Thanks! |
@darko-poljak Hello. Yes, I will make the update, tomorrow (due to the lack of time now). |
@darko-poljak Done. :-) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove conflict requested by @darko-poljak from Pull Request #22
UPDATE: It looks like gpm does not build without the fcntl.h header: lib/liblow.c: In function 'Gpm_Open': Looks like we can ignore and close this PR. P.S: I am testing and building the latest source from the -master branch (17 Jun). Seems to be working fine. |
this should be fixed, the issue with headers with #14 in master |
No description provided.