network: Define ENOTCONN as WSAENOTCONN if not defined
This fixes compilation with old mingw.org toolchains, which has got much fewer errno.h entries. Signed-off-by: Martin Storsjö <martin@martin.st> (cherry picked from commit 6569e9505c781468092c15fa84d034c9e37d26ca) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
36f962f3c2
commit
fc76c6037a
@ -50,6 +50,9 @@
|
|||||||
#ifndef EINPROGRESS
|
#ifndef EINPROGRESS
|
||||||
#define EINPROGRESS WSAEINPROGRESS
|
#define EINPROGRESS WSAEINPROGRESS
|
||||||
#endif
|
#endif
|
||||||
|
#ifndef ENOTCONN
|
||||||
|
#define ENOTCONN WSAENOTCONN
|
||||||
|
#endif
|
||||||
|
|
||||||
#define getsockopt(a, b, c, d, e) getsockopt(a, b, c, (char*) d, e)
|
#define getsockopt(a, b, c, d, e) getsockopt(a, b, c, (char*) d, e)
|
||||||
#define setsockopt(a, b, c, d, e) setsockopt(a, b, c, (const char*) d, e)
|
#define setsockopt(a, b, c, d, e) setsockopt(a, b, c, (const char*) d, e)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user