mirror of
https://github.com/gnustep/libs-back.git
synced 2025-04-22 15:31:14 +00:00
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:
parent
24779c0c48
commit
fbe8cc5972
2 changed files with 8 additions and 0 deletions
|
@ -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
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue