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:
Richard Frith-MacDonald 2000-04-20 08:23:58 +00:00
parent 66657e7e66
commit ec02726c53
2 changed files with 9 additions and 0 deletions

View file

@ -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

View file

@ -72,6 +72,10 @@ extern int errno;
#include <errno.h>
#endif /* !__WIN32__ */
#ifndef INADDR_NONE
#define INADDR_NONE -1
#endif
@class GSTcpPort;
/*