diff options
| author | andreas_kupries <akupries@shaw.ca> | 2005-06-22 16:49:23 (GMT) |
|---|---|---|
| committer | andreas_kupries <akupries@shaw.ca> | 2005-06-22 16:49:23 (GMT) |
| commit | 8befaa6c3171251d5dc1846a738b09e8b391eeb9 (patch) | |
| tree | cd038e4a40c6b677bad042e8db2cd2ba58defe40 | |
| parent | d672f8d27402a70b7a6e2c6216302c1d29affe2c (diff) | |
| download | tcl-8befaa6c3171251d5dc1846a738b09e8b391eeb9.zip tcl-8befaa6c3171251d5dc1846a738b09e8b391eeb9.tar.gz tcl-8befaa6c3171251d5dc1846a738b09e8b391eeb9.tar.bz2 | |
* generic/tclInt.h: Followup to change made on 2005-06-18 by
Daniel Steffen. There are compilers (*) who error out on the
redefinition of WORDS_BIGENDIAN. We have to undef the previous
definition (on the command line) first to make this
acceptable. (*): AIX native.
| -rw-r--r-- | ChangeLog | 8 | ||||
| -rw-r--r-- | generic/tclInt.h | 3 |
2 files changed, 10 insertions, 1 deletions
@@ -1,3 +1,11 @@ +2005-06-22 Andreas Kupries <andreask@activestate.com> + + * generic/tclInt.h: Followup to change made on 2005-06-18 by + Daniel Steffen. There are compilers (*) who error out on the + redefinition of WORDS_BIGENDIAN. We have to undef the previous + definition (on the command line) first to make this + acceptable. (*): AIX native. + 2005-06-22 Don Porter <dgp@users.sourceforge.net> *** 8.4.11 TAGGED FOR RELEASE *** diff --git a/generic/tclInt.h b/generic/tclInt.h index 45eb8ff..c0f1982 100644 --- a/generic/tclInt.h +++ b/generic/tclInt.h @@ -12,7 +12,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclInt.h,v 1.118.2.12 2005/06/21 17:19:43 dgp Exp $ + * RCS: @(#) $Id: tclInt.h,v 1.118.2.13 2005/06/22 16:49:28 andreas_kupries Exp $ */ #ifndef _TCLINT @@ -66,6 +66,7 @@ #ifdef BYTE_ORDER # ifdef BIG_ENDIAN # if BYTE_ORDER == BIG_ENDIAN +# undef WORDS_BIGENDIAN # define WORDS_BIGENDIAN # endif # endif |
