diff options
author | dgp <dgp@users.sourceforge.net> | 2008-06-19 19:48:26 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2008-06-19 19:48:26 (GMT) |
commit | 6e922c5172262862308c81acded32fc06f05709d (patch) | |
tree | 5b63f94abe512f00ac199f4e46d21d6caecbef3e /generic | |
parent | d0dc88b51a52449287daaa05e732e49d8b466dc9 (diff) | |
download | tk-6e922c5172262862308c81acded32fc06f05709d.zip tk-6e922c5172262862308c81acded32fc06f05709d.tar.gz tk-6e922c5172262862308c81acded32fc06f05709d.tar.bz2 |
* generic/tk.h: TIP 285 additions make Tk 8.6 call the new
* library/tk.tcl: Tcl_Canceled() routine, available only in
Tcl 8.6, so bump our Tcl dependencies to version 8.6. Tk 8.6a1 will
no longer [load] into a Tcl 8.5 interp.
Diffstat (limited to 'generic')
-rw-r--r-- | generic/tk.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tk.h b/generic/tk.h index 161139e..a4e8ca7 100644 --- a/generic/tk.h +++ b/generic/tk.h @@ -12,15 +12,15 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tk.h,v 1.111 2008/06/19 19:37:58 dgp Exp $ + * RCS: @(#) $Id: tk.h,v 1.112 2008/06/19 19:48:26 dgp Exp $ */ #ifndef _TK #define _TK #include <tcl.h> -#if (TCL_MAJOR_VERSION != 8) || (TCL_MINOR_VERSION < 5) -# error Tk 8.6 must be compiled with tcl.h from Tcl 8.5 or better +#if (TCL_MAJOR_VERSION != 8) || (TCL_MINOR_VERSION < 6) +# error Tk 8.6 must be compiled with tcl.h from Tcl 8.6 or better #endif /* |