diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-03-28 07:36:44 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-03-28 07:36:44 (GMT) |
commit | 808993cdaa2d0aab03da0227e2e0b083ce58ac79 (patch) | |
tree | 209d2a079e30e4becaca7dbdbdc4f8575328eb14 /generic/tkMain.c | |
parent | 800655b57e0e8d0b20645712afffb553f65aecf2 (diff) | |
download | tk-808993cdaa2d0aab03da0227e2e0b083ce58ac79.zip tk-808993cdaa2d0aab03da0227e2e0b083ce58ac79.tar.gz tk-808993cdaa2d0aab03da0227e2e0b083ce58ac79.tar.bz2 |
Easier solution, with proper protection and configure warnings.
Diffstat (limited to 'generic/tkMain.c')
-rw-r--r-- | generic/tkMain.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tkMain.c b/generic/tkMain.c index cb1fb5e..8bebb3d 100644 --- a/generic/tkMain.c +++ b/generic/tkMain.c @@ -135,7 +135,7 @@ Tk_MainEx( * Ensure that we are getting a compatible version of Tcl. */ - if (Tcl_InitStubs(interp, "8.5.0", 0) == NULL) { + if (Tcl_InitStubs(interp, TCL_VERSION ".0", 0) == NULL) { if (Tcl_InitStubs(interp, "8.1", 0) == NULL) { abort(); } else { |