Fix for mingw

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/back/trunk@15898 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-Macdonald 2003-02-06 11:28:54 +00:00
parent ad3d8e3e35
commit 00477f2f07
2 changed files with 8 additions and 0 deletions

View file

@ -1,3 +1,7 @@
2003-02-06 Richard Frith-Macdonald <rfm@gnu.org>
* Tools/gpbs.m (ihandler): Fix for mingw, which doesn't have kill()
2003-02-02 22:00 Alexander Malmberg <alexander@malmberg.org>
* Source/art/ftfont.m (-initWithFontName:matrix:screenFont:): Use

View file

@ -1028,6 +1028,9 @@ ihandler(int sig)
*/
if ( sig > 0 )
{
#ifdef __MINGW__
abort();
#else
NSLog(@"Re-raising signal %d.", sig);
if( -1 == kill(getpid(), sig) )
@ -1036,6 +1039,7 @@ ihandler(int sig)
abort();
}
#endif
}
exit(EXIT_FAILURE);