Skip to content
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

Open
wants to merge 5 commits into
base: master
Choose a base branch
from

Commits on Aug 9, 2017

  1. redirect <sys/fcntl.h> to <fcntl.h> as the GCC compiler suggest

    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]
    selkfoster committed Aug 9, 2017
    Configuration menu
    Copy the full SHA
    c26a6e1 View commit details
    Browse the repository at this point in the history
  2. Change path for missing headers of some progs/*.c

    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 committed Aug 9, 2017
    Configuration menu
    Copy the full SHA
    54651a0 View commit details
    Browse the repository at this point in the history

Commits on Oct 3, 2019

  1. Configuration menu
    Copy the full SHA
    39c4f25 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    baeffb3 View commit details
    Browse the repository at this point in the history

Commits on Jun 19, 2020

  1. Configuration menu
    Copy the full SHA
    11bc65f View commit details
    Browse the repository at this point in the history