| Summary: | failure to build test/loopwavequeue.c on Linux | ||
|---|---|---|---|
| Product: | SDL | Reporter: | Benoit Pierre <benoit.pierre> |
| Component: | *don't know* | Assignee: | Ryan C. Gordon <icculus> |
| Status: | RESOLVED FIXED | QA Contact: | Sam Lantinga <slouken> |
| Severity: | normal | ||
| Priority: | P2 | CC: | gabomdq |
| Version: | 2.0.3 | ||
| Hardware: | x86_64 | ||
| OS: | Linux | ||
| Attachments: | patch to fix test/loopwavequeue.c compilation | ||
This seems to have been fixed at some point. |
Created attachment 1826 [details] patch to fix test/loopwavequeue.c compilation Compiler output: loopwavequeue.c: In function ‘main’: loopwavequeue.c:81:12: error: ‘SIGINT’ undeclared (first use in this function) signal(SIGINT, poked); ^ loopwavequeue.c:81:12: note: each undeclared identifier is reported only once for each function it appears in loopwavequeue.c:85:12: error: ‘SIGTERM’ undeclared (first use in this function) signal(SIGTERM, poked); ^ The attached patch fix this by moving the conditional signal.h include after the SDL.h include.