diff options
author | dgp <dgp@users.sourceforge.net> | 2011-07-27 17:26:36 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2011-07-27 17:26:36 (GMT) |
commit | 0800af49de60cffa651e222f74633f4aa1905863 (patch) | |
tree | a3e087b34e48d167b13004ef21901441c1435c40 /win | |
parent | f290555a7143813d38b1c606c489ee0d86844bbf (diff) | |
parent | d7019b7df70dfd4375c7952850fe26f1bec79520 (diff) | |
download | tcl-0800af49de60cffa651e222f74633f4aa1905863.zip tcl-0800af49de60cffa651e222f74633f4aa1905863.tar.gz tcl-0800af49de60cffa651e222f74633f4aa1905863.tar.bz2 |
merge to rc
Diffstat (limited to 'win')
-rw-r--r-- | win/tclWinPort.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/win/tclWinPort.h b/win/tclWinPort.h index 4fe8754..ca58470 100644 --- a/win/tclWinPort.h +++ b/win/tclWinPort.h @@ -454,7 +454,9 @@ #if defined(_MSC_VER) || defined(__MINGW32__) # define environ _environ -# define hypot _hypot +# if defined(_MSC_VER) && (_MSC_VER < 1600) +# define hypot _hypot +# endif # define exception _exception # undef EDEADLOCK # if defined(__MINGW32__) && !defined(__MSVCRT__) |