diff options
author | Martin Storsjö <martin@martin.st> | 2019-12-11 14:18:43 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2021-10-09 22:02:21 +0200 |
commit | 20d93dd9e8d17e29c9d16f3da11110e767539efe (patch) | |
tree | 2cfca82566b3cb31136c811f8bd7a77fb32c6d10 | |
parent | a52654555467d20a04a32f47232a8c009b38face (diff) | |
download | ffmpeg-20d93dd9e8d17e29c9d16f3da11110e767539efe.tar.gz |
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>
-rw-r--r-- | libavformat/network.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavformat/network.h b/libavformat/network.h index f83c796a95..1b3e0f184c 100644 --- a/libavformat/network.h +++ b/libavformat/network.h @@ -50,6 +50,9 @@ #ifndef EINPROGRESS #define EINPROGRESS WSAEINPROGRESS #endif +#ifndef ENOTCONN +#define ENOTCONN WSAENOTCONN +#endif #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) |