git.99rst.org
/
git.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
| inline |
side by side
(parent:
3d15f53
)
MinGW: fix compile error due to missing ELOOP
author
Karsten Blees
<redacted>
Tue, 15 Jul 2014 22:53:27 +0000
(
00:53
+0200)
committer
Junio C Hamano
<redacted>
Wed, 16 Jul 2014 17:42:49 +0000
(10:42 -0700)
MinGW and MSVC before 2010 don't define ELOOP, use EMLINK (aka "Too many
links") instead.
Signed-off-by: Karsten Blees <redacted>
Reviewed-by: Jonathan Nieder <redacted>
Signed-off-by: Junio C Hamano <redacted>
compat/mingw.h
patch
|
blob
|
history
diff --git
a/compat/mingw.h
b/compat/mingw.h
index 8dac6f9d6bc91c7949533d5d6d987530d6993b01..7ff2376335dea7a092c626f74f52413be1c81e74 100644
(file)
--- a/
compat/mingw.h
+++ b/
compat/mingw.h
@@
-35,6
+35,9
@@
typedef int socklen_t;
#ifndef EWOULDBLOCK
#define EWOULDBLOCK EAGAIN
#endif
+#ifndef ELOOP
+#define ELOOP EMLINK
+#endif
#define SHUT_WR SD_SEND
#define SIGHUP 1
git clone https://git.99rst.org/PROJECT