diff options
author | dgp <dgp@users.sourceforge.net> | 2008-04-01 16:23:33 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2008-04-01 16:23:33 (GMT) |
commit | a0ec1a39d88a25470246b6554c5901fde0682bb6 (patch) | |
tree | 88e6f1d2a4e02352b1f81c9c23212f7119e55d8e /win/configure.in | |
parent | fc0be09a4c67fde682808e0d83d033499c255e04 (diff) | |
download | tcl-a0ec1a39d88a25470246b6554c5901fde0682bb6.zip tcl-a0ec1a39d88a25470246b6554c5901fde0682bb6.tar.gz tcl-a0ec1a39d88a25470246b6554c5901fde0682bb6.tar.bz2 |
* README: Bump version number to 8.6a0
* generic/tcl.h:
* library/init.tcl:
* macosx/Tcl-Common.xcconfig:
* macosx/Tcl.pbproj/default.pbxuser:
* macosx/Tcl.pbproj/project.pbxproj:
* tools/tcl.wse.in:
* unix/configure.in:
* unix/tcl.spec:
* win/README:
* win/configure.in:
* win/makefile.bc:
* win/tcl.m4:
* unix/configure: autoconf-2.59
* win/configure:
* generic/tclBasic.c: Revised stubs-generation tool and interp
* tools/genStubs.tcl: creation so that "tclStubsPtr" is not present
* unix/Makefile.in: in libtcl.so, but is present only in
libtclstub.a. This tightens up the rules for users of the stubs
interfaces. [Bug 1819422]
* generic/tclDecls.h: make genstubs
* generic/tclIntDecls.h:
* generic/tclIntPlatDecls.h:
* generic/tclPlatDecls.h:
* generic/tclTomMathDecls.h:
Diffstat (limited to 'win/configure.in')
-rw-r--r-- | win/configure.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/win/configure.in b/win/configure.in index 750c1b9..8beb3af 100644 --- a/win/configure.in +++ b/win/configure.in @@ -3,7 +3,7 @@ # generate the file "configure", which is run during Tcl installation # to configure the system for the local environment. # -# RCS: @(#) $Id: configure.in,v 1.104 2008/03/28 17:31:48 dgp Exp $ +# RCS: @(#) $Id: configure.in,v 1.105 2008/04/01 16:23:45 dgp Exp $ AC_INIT(../generic/tcl.h) AC_PREREQ(2.59) @@ -13,10 +13,10 @@ AC_PREREQ(2.59) # /bin/sh. The bash shell seems to suffer from some strange failures. SHELL=/bin/sh -TCL_VERSION=8.5 +TCL_VERSION=8.6 TCL_MAJOR_VERSION=8 -TCL_MINOR_VERSION=5 -TCL_PATCH_LEVEL=".2" +TCL_MINOR_VERSION=6 +TCL_PATCH_LEVEL="a0" VER=$TCL_MAJOR_VERSION$TCL_MINOR_VERSION TCL_DDE_VERSION=1.3 |