mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
Define INADDR_NONE if necessary
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@6485 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
66657e7e66
commit
ec02726c53
2 changed files with 9 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
2000-04-20 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* Source/GSTcpPort.m: define INADDR_NONE to be -1 on systems where
|
||||
it is not defined.
|
||||
|
||||
2000-04-19 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* Source/NSThread.m: rewrite
|
||||
|
|
|
@ -72,6 +72,10 @@ extern int errno;
|
|||
#include <errno.h>
|
||||
#endif /* !__WIN32__ */
|
||||
|
||||
#ifndef INADDR_NONE
|
||||
#define INADDR_NONE -1
|
||||
#endif
|
||||
|
||||
@class GSTcpPort;
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in a new issue