summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorandreas_kupries <akupries@shaw.ca>2005-06-21 19:49:13 (GMT)
committerandreas_kupries <akupries@shaw.ca>2005-06-21 19:49:13 (GMT)
commit7ee7db08b5e81da44b8fe1bbdfc8d44c8d5791cc (patch)
tree156109c8f472e8ec524d9e6d91391f24d449a774
parent56f28b758b4acc2645154511abadd810ef8244c4 (diff)
downloadtcl-7ee7db08b5e81da44b8fe1bbdfc8d44c8d5791cc.zip
tcl-7ee7db08b5e81da44b8fe1bbdfc8d44c8d5791cc.tar.gz
tcl-7ee7db08b5e81da44b8fe1bbdfc8d44c8d5791cc.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--ChangeLog8
-rw-r--r--generic/tclInt.h3
2 files changed, 10 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 2c17918d..62b3e62 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2005-06-21 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-21 Kevin B. Kenny <kennykb@acm.org>
* generic/tclFileName.c: Changed [file split] and [file join]
diff --git a/generic/tclInt.h b/generic/tclInt.h
index aaef1a9..f431d35 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.237 2005/06/21 18:33:04 dgp Exp $
+ * RCS: @(#) $Id: tclInt.h,v 1.238 2005/06/21 19:49:25 andreas_kupries Exp $
*/
#ifndef _TCLINT
@@ -74,6 +74,7 @@ typedef int ptrdiff_t;
#ifdef BYTE_ORDER
# ifdef BIG_ENDIAN
# if BYTE_ORDER == BIG_ENDIAN
+# undef WORDS_BIGENDIAN
# define WORDS_BIGENDIAN
# endif
# endif