diff options
author | stanton <stanton> | 1999-02-02 22:27:16 (GMT) |
---|---|---|
committer | stanton <stanton> | 1999-02-02 22:27:16 (GMT) |
commit | a26fbfadc3ddf551d4c89b2febaf94080ca4954f (patch) | |
tree | 2ed3129031ec14e001064caba092dd27224b495c /generic/tclPosixStr.c | |
parent | cc6752c3c066ff4d784d60ac2f3b6eb7c5c8d926 (diff) | |
download | tcl-a26fbfadc3ddf551d4c89b2febaf94080ca4954f.zip tcl-a26fbfadc3ddf551d4c89b2febaf94080ca4954f.tar.gz tcl-a26fbfadc3ddf551d4c89b2febaf94080ca4954f.tar.bz2 |
* generic/tclPosixStr.c (Tcl_ErrnoId, Tcl_ErrnoMsg): When using
egcs, ENOTSUP and EOPNOTSUPP are the same, so now we handle that
case. [Bug: 1137]
Diffstat (limited to 'generic/tclPosixStr.c')
-rw-r--r-- | generic/tclPosixStr.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tclPosixStr.c b/generic/tclPosixStr.c index 8c7c5ad..84f2d1a 100644 --- a/generic/tclPosixStr.c +++ b/generic/tclPosixStr.c @@ -11,7 +11,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclPosixStr.c,v 1.2 1998/09/14 18:40:01 stanton Exp $ + * RCS: @(#) $Id: tclPosixStr.c,v 1.3 1999/02/02 22:27:16 stanton Exp $ */ #include "tclInt.h" @@ -336,7 +336,7 @@ Tcl_ErrnoId() #ifdef ENXIO case ENXIO: return "ENXIO"; #endif -#ifdef EOPNOTSUPP +#if defined(EOPNOTSUPP) && (!defined(ENOTSUP) || (ENOTSUP != EOPNOTSUPP)) case EOPNOTSUPP: return "EOPNOTSUPP"; #endif #ifdef EPERM @@ -783,7 +783,7 @@ Tcl_ErrnoMsg(err) #ifdef ENXIO case ENXIO: return "no such device or address"; #endif -#ifdef EOPNOTSUPP +#if defined(EOPNOTSUPP) && (!defined(ENOTSUP) || (ENOTSUP != EOPNOTSUPP)) case EOPNOTSUPP: return "operation not supported on socket"; #endif #ifdef EPERM |