diff options
author | Karsten Blees <karsten.blees@gmail.com> | 2014-07-16 00:53:27 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-07-16 10:42:49 -0700 |
commit | e0a064a10749a8039f28e9bd3de0ffb5cf99e678 (patch) | |
tree | 5dcf733bfd8bb6f25ea48a2c26952441dbae815e /compat | |
parent | 3d15f536a7f5215eddae20214fb8eaeeb6baaf27 (diff) | |
download | git-e0a064a10749a8039f28e9bd3de0ffb5cf99e678.tar.gz |
MinGW: fix compile error due to missing ELOOP
MinGW and MSVC before 2010 don't define ELOOP, use EMLINK (aka "Too many
links") instead.
Signed-off-by: Karsten Blees <blees@dcon.de>
Reviewed-by: Jonathan Nieder <jrnieder@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'compat')
-rw-r--r-- | compat/mingw.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/compat/mingw.h b/compat/mingw.h index 8dac6f9d6b..7ff2376335 100644 --- 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 |