mirror of
https://github.com/gnustep/libs-back.git
synced 2025-02-23 11:51:27 +00:00
Don't mess with file descriptors on MinGW.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/back/trunk@17609 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
53368abdeb
commit
192c40fd17
2 changed files with 6 additions and 0 deletions
|
@ -1,3 +1,7 @@
|
|||
2003-09-02 Adam Fedor <fedor@gnu.org>
|
||||
|
||||
* Tools/gpbs.m (init): Don't mess with file descriptors on MinGW.
|
||||
|
||||
2003-09-02 Fred Kiefer <FredKiefer@gmx.de>
|
||||
|
||||
* Tools/xpbs.m
|
||||
|
|
|
@ -1216,6 +1216,7 @@ init(int argc, char** argv)
|
|||
#endif
|
||||
}
|
||||
|
||||
#ifndef __MINGW__
|
||||
/*
|
||||
* Ensure we don't have any open file descriptors which may refer
|
||||
* to sockets bound to ports we may try to use.
|
||||
|
@ -1250,6 +1251,7 @@ init(int argc, char** argv)
|
|||
gpbs_log(LOG_CRIT);
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
#endif
|
||||
|
||||
/*
|
||||
* Make gpbs logging go to syslog unless overridden by user.
|
||||
|
|
Loading…
Reference in a new issue