diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2002-09-24 09:15:04 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2002-09-24 09:15:04 (GMT) |
commit | acbd6572bf54e80f38d0b6c8bef872cb4356454f (patch) | |
tree | f2659a5c4721784e24f967c6fd9e0b8a6c38f6af | |
parent | 0d9b9d1f8a5231d790f9d82e12472a9429f2f43c (diff) | |
download | tcl-acbd6572bf54e80f38d0b6c8bef872cb4356454f.zip tcl-acbd6572bf54e80f38d0b6c8bef872cb4356454f.tar.gz tcl-acbd6572bf54e80f38d0b6c8bef872cb4356454f.tar.bz2 |
* unix/tcl.m4: Forgot to define TCL_WIDE_INT_IS_LONG at the
appropriate moment. I believe this is the cause of [Bug 613117]
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | unix/tcl.m4 | 1 |
2 files changed, 4 insertions, 0 deletions
@@ -1,5 +1,8 @@ 2002-09-24 Donal K. Fellows <fellowsd@cs.man.ac.uk> + * unix/tcl.m4: Forgot to define TCL_WIDE_INT_IS_LONG at the + appropriate moment. I believe this is the cause of [Bug 613117] + * doc/lset.n: Changed 'list' to 'varName' for consistency with lappend documentation. Thanks to Glenn Jackman [Bug 611719] diff --git a/unix/tcl.m4 b/unix/tcl.m4 index 45ccfe0..c476bb3 100644 --- a/unix/tcl.m4 +++ b/unix/tcl.m4 @@ -2389,6 +2389,7 @@ AC_DEFUN(SC_TCL_64BIT_FLAGS, [ int main() {exit(!(sizeof(long long) > sizeof(long)));} ], tcl_cv_type_64bit="long long"))]) if test "${tcl_cv_type_64bit}" = none ; then + AC_DEFINE(TCL_WIDE_INT_IS_LONG) AC_MSG_RESULT(using long) else AC_DEFINE_UNQUOTED(TCL_WIDE_INT_TYPE,${tcl_cv_type_64bit}) |