diff options
author | vbwagner <vbwagner> | 2004-03-05 14:06:55 (GMT) |
---|---|---|
committer | vbwagner <vbwagner> | 2004-03-05 14:06:55 (GMT) |
commit | cf1e468be705db2cb0be93a9aa28aacdb838550c (patch) | |
tree | 071856109fec29152f3bcfd3d92535ae562585e5 /unix/tclUnixPort.h | |
parent | 9472fc9496ffa1b561e42b87aba86e26c96e993f (diff) | |
download | tcl-cf1e468be705db2cb0be93a9aa28aacdb838550c.zip tcl-cf1e468be705db2cb0be93a9aa28aacdb838550c.tar.gz tcl-cf1e468be705db2cb0be93a9aa28aacdb838550c.tar.bz2 |
hidden unix-specific implementations of file volumes and file attributes
under
#ifndef DJGPP.
Added couple of undefs into tclUnixPort.h to avoid
confilct between Waterloo TCP and DJGPP system error constants
Diffstat (limited to 'unix/tclUnixPort.h')
-rw-r--r-- | unix/tclUnixPort.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/unix/tclUnixPort.h b/unix/tclUnixPort.h index 3dfd708..55d2512 100644 --- a/unix/tclUnixPort.h +++ b/unix/tclUnixPort.h @@ -19,7 +19,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclUnixPort.h,v 1.32 2003/12/09 15:27:48 dkf Exp $ + * RCS: @(#) $Id: tclUnixPort.h,v 1.33 2004/03/05 14:06:55 vbwagner Exp $ */ #ifndef _TCLUNIXPORT @@ -135,7 +135,12 @@ EXTERN Tcl_WideUInt strtoull _ANSI_ARGS_((CONST char *string, * Socket support stuff: This likely needs more work to parameterize for * each system. */ - +#ifdef DJGPP +/* ELOOP is defined in both WatTCP includes and DJGPP system includes*/ +#undef ELOOP +#undef EILSEQ +#undef EOVERFLOW +#endif #include <sys/socket.h> /* struct sockaddr, SOCK_STREAM, ... */ #ifndef NO_UNAME # include <sys/utsname.h> /* uname system call. */ |