Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- make API=sdl2
- fatal: Invalid revision range 1af8c74f53110e349d8f0d19b14599281913f71f..
- fatal: Invalid revision range 1af8c74f53110e349d8f0d19b14599281913f71f..
- fatal: Invalid revision range 1af8c74f53110e349d8f0d19b14599281913f71f..
- fatal: Invalid revision range 1af8c74f53110e349d8f0d19b14599281913f71f..
- Building dependencies for help.c
- Building dependencies for loadrecoil.c
- Building dependencies for recoil.c
- fatal: Invalid revision range 1af8c74f53110e349d8f0d19b14599281913f71f..
- fatal: Invalid revision range 1af8c74f53110e349d8f0d19b14599281913f71f..
- fatal: Invalid revision range 1af8c74f53110e349d8f0d19b14599281913f71f..
- fatal: Invalid revision range 1af8c74f53110e349d8f0d19b14599281913f71f..
- Compiling init.c
- init.c:2403:24: error: unknown type name '__sighandler_t'
- 2403 | #define SIGHANDLER_T __sighandler_t
- | ^~~~~~~~~~~~~~
- init.c:2407:1: note: in expansion of macro 'SIGHANDLER_T'
- 2407 | SIGHANDLER_T Handler_TERM=SIG_DFL;
- | ^~~~~~~~~~~~
- init.c:2407:27: warning: initialization of 'int' from 'void (*)(int)' makes integer from pointer without a cast [-Wint-conversion]
- 2407 | SIGHANDLER_T Handler_TERM=SIG_DFL;
- | ^~~~~~~
- init.c:2403:24: error: unknown type name '__sighandler_t'
- 2403 | #define SIGHANDLER_T __sighandler_t
- | ^~~~~~~~~~~~~~
- init.c:2408:1: note: in expansion of macro 'SIGHANDLER_T'
- 2408 | SIGHANDLER_T Handler_INT=SIG_DFL;
- | ^~~~~~~~~~~~
- init.c:2408:26: warning: initialization of 'int' from 'void (*)(int)' makes integer from pointer without a cast [-Wint-conversion]
- 2408 | SIGHANDLER_T Handler_INT=SIG_DFL;
- | ^~~~~~~
- init.c:2403:24: error: unknown type name '__sighandler_t'
- 2403 | #define SIGHANDLER_T __sighandler_t
- | ^~~~~~~~~~~~~~
- init.c:2409:1: note: in expansion of macro 'SIGHANDLER_T'
- 2409 | SIGHANDLER_T Handler_ABRT=SIG_DFL;
- | ^~~~~~~~~~~~
- init.c:2409:27: warning: initialization of 'int' from 'void (*)(int)' makes integer from pointer without a cast [-Wint-conversion]
- 2409 | SIGHANDLER_T Handler_ABRT=SIG_DFL;
- | ^~~~~~~
- init.c:2403:24: error: unknown type name '__sighandler_t'
- 2403 | #define SIGHANDLER_T __sighandler_t
- | ^~~~~~~~~~~~~~
- init.c:2410:1: note: in expansion of macro 'SIGHANDLER_T'
- 2410 | SIGHANDLER_T Handler_SEGV=SIG_DFL;
- | ^~~~~~~~~~~~
- init.c:2410:27: warning: initialization of 'int' from 'void (*)(int)' makes integer from pointer without a cast [-Wint-conversion]
- 2410 | SIGHANDLER_T Handler_SEGV=SIG_DFL;
- | ^~~~~~~
- init.c:2403:24: error: unknown type name '__sighandler_t'
- 2403 | #define SIGHANDLER_T __sighandler_t
- | ^~~~~~~~~~~~~~
- init.c:2411:1: note: in expansion of macro 'SIGHANDLER_T'
- 2411 | SIGHANDLER_T Handler_FPE=SIG_DFL;
- | ^~~~~~~~~~~~
- init.c:2411:26: warning: initialization of 'int' from 'void (*)(int)' makes integer from pointer without a cast [-Wint-conversion]
- 2411 | SIGHANDLER_T Handler_FPE=SIG_DFL;
- | ^~~~~~~
- init.c: In function 'Sig_handler':
- init.c:2416:19: warning: passing argument 2 of 'signal' makes pointer from integer without a cast [-Wint-conversion]
- 2416 | signal(SIGTERM, Handler_TERM);
- | ^~~~~~~~~~~~
- | |
- | int
- In file included from init.c:51:
- /usr/include/signal.h:289:20: note: expected 'void (*)(int)' but argument is of type 'int'
- 289 | void (*signal(int, void (*)(int)))(int);
- | ^~~~~~~~~~~~~
- init.c:2417:18: warning: passing argument 2 of 'signal' makes pointer from integer without a cast [-Wint-conversion]
- 2417 | signal(SIGINT, Handler_INT);
- | ^~~~~~~~~~~
- | |
- | int
- /usr/include/signal.h:289:20: note: expected 'void (*)(int)' but argument is of type 'int'
- 289 | void (*signal(int, void (*)(int)))(int);
- | ^~~~~~~~~~~~~
- init.c:2418:19: warning: passing argument 2 of 'signal' makes pointer from integer without a cast [-Wint-conversion]
- 2418 | signal(SIGABRT, Handler_ABRT);
- | ^~~~~~~~~~~~
- | |
- | int
- /usr/include/signal.h:289:20: note: expected 'void (*)(int)' but argument is of type 'int'
- 289 | void (*signal(int, void (*)(int)))(int);
- | ^~~~~~~~~~~~~
- init.c:2419:19: warning: passing argument 2 of 'signal' makes pointer from integer without a cast [-Wint-conversion]
- 2419 | signal(SIGSEGV, Handler_SEGV);
- | ^~~~~~~~~~~~
- | |
- | int
- /usr/include/signal.h:289:20: note: expected 'void (*)(int)' but argument is of type 'int'
- 289 | void (*signal(int, void (*)(int)))(int);
- | ^~~~~~~~~~~~~
- init.c:2420:18: warning: passing argument 2 of 'signal' makes pointer from integer without a cast [-Wint-conversion]
- 2420 | signal(SIGFPE, Handler_FPE);
- | ^~~~~~~~~~~
- | |
- | int
- /usr/include/signal.h:289:20: note: expected 'void (*)(int)' but argument is of type 'int'
- 289 | void (*signal(int, void (*)(int)))(int);
- | ^~~~~~~~~~~~~
- init.c: In function 'Init_sighandler':
- init.c:2438:15: warning: assignment to 'int' from 'void (*)(int)' makes integer from pointer without a cast [-Wint-conversion]
- 2438 | Handler_TERM=signal(SIGTERM,Sig_handler);
- | ^
- init.c:2439:15: warning: assignment to 'int' from 'void (*)(int)' makes integer from pointer without a cast [-Wint-conversion]
- 2439 | Handler_INT =signal(SIGINT,Sig_handler);
- | ^
- init.c:2440:15: warning: assignment to 'int' from 'void (*)(int)' makes integer from pointer without a cast [-Wint-conversion]
- 2440 | Handler_ABRT=signal(SIGABRT,Sig_handler);
- | ^
- init.c:2441:15: warning: assignment to 'int' from 'void (*)(int)' makes integer from pointer without a cast [-Wint-conversion]
- 2441 | Handler_SEGV=signal(SIGSEGV,Sig_handler);
- | ^
- init.c:2442:15: warning: assignment to 'int' from 'void (*)(int)' makes integer from pointer without a cast [-Wint-conversion]
- 2442 | Handler_FPE =signal(SIGFPE,Sig_handler);
- | ^
- make: *** [Makefile:1203: ../obj/unix-sdl2/init.o] Error 1
Advertisement
Add Comment
Please, Sign In to add comment