mirror of https://github.com/encounter/SDL.git
Fixed building on platforms without __sighandler_t
This commit is contained in:
parent
90e72bf4e2
commit
330b19c968
|
@ -55,7 +55,7 @@ SDL_QuitInit_Internal(void)
|
||||||
struct sigaction action;
|
struct sigaction action;
|
||||||
sigaction(SIGINT, NULL, &action);
|
sigaction(SIGINT, NULL, &action);
|
||||||
#ifdef HAVE_SA_SIGACTION
|
#ifdef HAVE_SA_SIGACTION
|
||||||
if ( action.sa_handler == SIG_DFL && (__sighandler_t)action.sa_sigaction == SIG_DFL ) {
|
if ( action.sa_handler == SIG_DFL && (void (*)(int))action.sa_sigaction == SIG_DFL ) {
|
||||||
#else
|
#else
|
||||||
if ( action.sa_handler == SIG_DFL ) {
|
if ( action.sa_handler == SIG_DFL ) {
|
||||||
#endif
|
#endif
|
||||||
|
@ -65,7 +65,7 @@ SDL_QuitInit_Internal(void)
|
||||||
sigaction(SIGTERM, NULL, &action);
|
sigaction(SIGTERM, NULL, &action);
|
||||||
|
|
||||||
#ifdef HAVE_SA_SIGACTION
|
#ifdef HAVE_SA_SIGACTION
|
||||||
if ( action.sa_handler == SIG_DFL && (__sighandler_t)action.sa_sigaction == SIG_DFL ) {
|
if ( action.sa_handler == SIG_DFL && (void (*)(int))action.sa_sigaction == SIG_DFL ) {
|
||||||
#else
|
#else
|
||||||
if ( action.sa_handler == SIG_DFL ) {
|
if ( action.sa_handler == SIG_DFL ) {
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue