diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2017-09-08 12:48:35 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2017-09-08 12:48:35 (GMT) |
commit | 36098aafd9bbd015808f0607f94acc590d192e0d (patch) | |
tree | 9381bb4c2640a933674027bc6032b2d3b65cc3cb /unix/tcl.m4 | |
parent | 48ce21e3a9c2c9da4e4674bf08275e378629a0e3 (diff) | |
parent | c561dfd719f6be6ea7616f20cbdba31798e31539 (diff) | |
download | tcl-36098aafd9bbd015808f0607f94acc590d192e0d.zip tcl-36098aafd9bbd015808f0607f94acc590d192e0d.tar.gz tcl-36098aafd9bbd015808f0607f94acc590d192e0d.tar.bz2 |
Rebase to trunk
Diffstat (limited to 'unix/tcl.m4')
-rw-r--r-- | unix/tcl.m4 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/unix/tcl.m4 b/unix/tcl.m4 index 45922e0..f37aabf 100644 --- a/unix/tcl.m4 +++ b/unix/tcl.m4 @@ -2495,15 +2495,15 @@ AC_DEFUN([SC_TCL_64BIT_FLAGS], [ # See if the compiler knows natively about __int64 AC_TRY_COMPILE(,[__int64 value = (__int64) 0;], tcl_type_64bit=__int64, tcl_type_64bit="long long") - # See if we should use long anyway Note that we substitute in the + # See if we could use long anyway Note that we substitute in the # type that is our current guess for a 64-bit type inside this check # program, so it should be modified only carefully... AC_TRY_COMPILE(,[switch (0) { case 1: case (sizeof(]${tcl_type_64bit}[)==sizeof(long)): ; }],tcl_cv_type_64bit=${tcl_type_64bit})]) if test "${tcl_cv_type_64bit}" = none ; then - AC_DEFINE(TCL_WIDE_INT_IS_LONG, 1, [Are wide integers to be implemented with C 'long's?]) - AC_MSG_RESULT([using long]) + AC_DEFINE(TCL_WIDE_INT_IS_LONG, 1, [Do 'long' and 'long long' have the same size (64-bit)?]) + AC_MSG_RESULT([yes]) else AC_DEFINE_UNQUOTED(TCL_WIDE_INT_TYPE,${tcl_cv_type_64bit}, [What type should be used to define wide integers?]) |