From: Serhiy Storchaka Date: Mon, 20 Apr 2015 11:07:41 +0000 (+0300) Subject: Issue #16840: Turn on support of bignums only in final release of Tcl 8.5. X-Git-Tag: v3.5.0b1~319 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=629d697f969cef4e5b5ec986700ac10908a0d075;p=thirdparty%2FPython%2Fcpython.git Issue #16840: Turn on support of bignums only in final release of Tcl 8.5. --- 629d697f969cef4e5b5ec986700ac10908a0d075 diff --cc Modules/_tkinter.c index 241c1a0a4d87,491a8fe283a2..3f5835363ab6 --- a/Modules/_tkinter.c +++ b/Modules/_tkinter.c @@@ -52,11 -58,18 +52,11 @@@ Copyright (C) 1994 Steen Lumholt #include "tkinter.h" -/* For Tcl 8.2 and 8.3, CONST* is not defined (except on Cygwin). */ -#ifndef CONST84_RETURN -#define CONST84_RETURN -#undef CONST -#define CONST -#endif - -#if TK_VERSION_HEX < 0x08030102 -#error "Tk older than 8.3.1 not supported" +#if TK_VERSION_HEX < 0x08040002 +#error "Tk older than 8.4 not supported" #endif - #if TK_VERSION_HEX >= 0x08050000 + #if TK_VERSION_HEX >= 0x08050002 #define HAVE_LIBTOMMAMTH #include #endif