diff options
| -rw-r--r-- | generic/tclPosixStr.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/generic/tclPosixStr.c b/generic/tclPosixStr.c index 52d5f09..ceddddd 100644 --- a/generic/tclPosixStr.c +++ b/generic/tclPosixStr.c @@ -31,6 +31,14 @@ *---------------------------------------------------------------------- */ +#ifdef __CYGWIN__ +/* Those are deprecated in Cygwin, but still might be used by Cygwin applications */ +# undef ENOSHARE +# define ENOSHARE 136 +# undef ECASECLASH +# define ECASECLASH 137 +#endif + const char * Tcl_ErrnoId(void) { |
