diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2016-01-02 23:42:54 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2016-01-02 23:42:54 (GMT) |
commit | 48c7828e9788d661962a80a5e77b52a30ee06168 (patch) | |
tree | 7d8e147a4851abae6d82fada2089504958f28cb8 | |
parent | 0069755ea6e487b4f04b99a49d1307f8cbe3abde (diff) | |
download | tcl-48c7828e9788d661962a80a5e77b52a30ee06168.zip tcl-48c7828e9788d661962a80a5e77b52a30ee06168.tar.gz tcl-48c7828e9788d661962a80a5e77b52a30ee06168.tar.bz2 |
More 8.6 -> 8.7
-rw-r--r-- | .project | 2 | ||||
-rw-r--r-- | macosx/README | 6 | ||||
-rw-r--r-- | macosx/Tcl-Common.xcconfig | 2 | ||||
-rw-r--r-- | tools/configure.in | 2 | ||||
-rwxr-xr-x | tools/tcltk-man2html.tcl | 4 | ||||
-rw-r--r-- | unix/Makefile.in | 2 | ||||
-rw-r--r-- | win/README | 4 |
7 files changed, 11 insertions, 11 deletions
@@ -1,6 +1,6 @@ <?xml version="1.0" encoding="UTF-8"?> <projectDescription> - <name>tcl8.6</name> + <name>tcl8.7</name> <comment></comment> <projects> </projects> diff --git a/macosx/README b/macosx/README index bcffde3..decf38f 100644 --- a/macosx/README +++ b/macosx/README @@ -113,7 +113,7 @@ The following build configurations are available: The Xcode projects refer to the toplevel tcl source directory via the TCL_SRCROOT user build setting, by default this is set to the project-relative path '../../tcl', if your tcl source directory is named differently, e.g. -'../../tcl8.6', you need to manually change the TCL_SRCROOT setting by editing +'../../tcl8.7', you need to manually change the TCL_SRCROOT setting by editing your ${USER}.pbxuser file (located inside the Tcl.xcodeproj bundle directory) with a text editor. @@ -141,9 +141,9 @@ Detailed Instructions for building with macosx/GNUmakefile - Unpack the Tcl source release archive. - The following instructions assume the Tcl source tree is named "tcl${ver}", -(where ${ver} is a shell variable containing the Tcl version number e.g. '8.6'). +(where ${ver} is a shell variable containing the Tcl version number e.g. '8'). Setup this shell variable as follows: - ver="8.6" + ver="8" If you are building from CVS, omit this step (CVS source tree names usually do not contain a version number). diff --git a/macosx/Tcl-Common.xcconfig b/macosx/Tcl-Common.xcconfig index 9c47547..6d5a18c 100644 --- a/macosx/Tcl-Common.xcconfig +++ b/macosx/Tcl-Common.xcconfig @@ -34,4 +34,4 @@ TCL_CONFIGURE_ARGS = --enable-threads --enable-dtrace TCL_LIBRARY = $(LIBDIR)/tcl$(VERSION) TCL_PACKAGE_PATH = "$(LIBDIR)" TCL_DEFS = HAVE_TCL_CONFIG_H -VERSION = 8.6 +VERSION = 8 diff --git a/tools/configure.in b/tools/configure.in index 6aebcaa..d2247b8 100644 --- a/tools/configure.in +++ b/tools/configure.in @@ -11,7 +11,7 @@ AC_PREREQ(2.59) # not, assume that its top-level directory is a sibling of ours. #-------------------------------------------------------------------- -DEF_VER=8.6 +DEF_VER=8.7 AC_ARG_WITH(tcl, [ --with-tcl=DIR use Tcl $DEF_VER binaries from DIR], TCL_BIN_DIR=$withval, TCL_BIN_DIR=`cd ../../tcl$DEF_VER$TCL_PATCH_LEVEL/unix; pwd`) if test ! -d $TCL_BIN_DIR; then diff --git a/tools/tcltk-man2html.tcl b/tools/tcltk-man2html.tcl index 1ceceb9..be89d28 100755 --- a/tools/tcltk-man2html.tcl +++ b/tools/tcltk-man2html.tcl @@ -4,7 +4,7 @@ if {[catch {package require Tcl 8.6} msg]} { puts stderr "ERROR: $msg" puts stderr "If running this script from 'make html', set the\ NATIVE_TCLSH environment\nvariable to point to an installed\ - tclsh8.6 (or the equivalent tclsh86.exe\non Windows)." + tclsh8 (or the equivalent tclsh8.exe\non Windows)." exit 1 } @@ -22,7 +22,7 @@ if {[catch {package require Tcl 8.6} msg]} { # Copyright (c) 1995-1997 Roger E. Critchlow Jr # Copyright (c) 2004-2010 Donal K. Fellows -set ::Version "50/8.6" +set ::Version "50/8" set ::CSSFILE "docs.css" ## diff --git a/unix/Makefile.in b/unix/Makefile.in index 717d16f..a7d7767 100644 --- a/unix/Makefile.in +++ b/unix/Makefile.in @@ -2081,7 +2081,7 @@ alldist: dist # such, this rule is not guaranteed to work well on all systems; it only needs # to function on those of the Tcl/Tk maintainers. # -# Also note that the 8.6 tool build requires an installed 8.6 native Tcl +# Also note that the 8.7 tool build requires an installed 8.7 native Tcl # interpreter in order to be able to run. #-------------------------------------------------------------------------- @@ -1,4 +1,4 @@ -Tcl 8.6 for Windows +Tcl 8.7 for Windows 1. Introduction --------------- @@ -16,7 +16,7 @@ The information in this file is maintained on the web at: In order to compile Tcl for Windows, you need the following: - Tcl 8.6 Source Distribution (plus any patches) + Tcl 8.7 Source Distribution (plus any patches) and |