Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 9da70ef

Browse files
committed
Mop-up for setting minimum Tcl version to 8.4.
Commit e260932 set the minimum Tcl version we support to 8.4, but I forgot to adjust the documentation to say the same. Some nosing around for other consequences found that the configure script could be simplified slightly as well.
1 parent ab4ff28 commit 9da70ef

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

config/tcl.m4

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55

66
AC_DEFUN([PGAC_PATH_TCLSH],
7-
[AC_PATH_PROGS(TCLSH, [tclsh tcl tclsh8.6 tclsh86 tclsh8.5 tclsh85 tclsh8.4 tclsh84 tclsh8.3 tclsh83])
7+
[AC_PATH_PROGS(TCLSH, [tclsh tcl tclsh8.6 tclsh86 tclsh8.5 tclsh85 tclsh8.4 tclsh84])
88
if test x"$TCLSH" = x""; then
99
AC_MSG_ERROR([Tcl shell not found])
1010
fi

configure

+1-1
Original file line numberDiff line numberDiff line change
@@ -14955,7 +14955,7 @@ fi
1495514955

1495614956
# Check for Tcl configuration script tclConfig.sh
1495714957
if test "$with_tcl" = yes; then
14958-
for ac_prog in tclsh tcl tclsh8.6 tclsh86 tclsh8.5 tclsh85 tclsh8.4 tclsh84 tclsh8.3 tclsh83
14958+
for ac_prog in tclsh tcl tclsh8.6 tclsh86 tclsh8.5 tclsh85 tclsh8.4 tclsh84
1495914959
do
1496014960
# Extract the first word of "$ac_prog", so it can be a program name with args.
1496114961
set dummy $ac_prog; ac_word=$2

doc/src/sgml/installation.sgml

+2-3
Original file line numberDiff line numberDiff line change
@@ -226,9 +226,8 @@ su - postgres
226226
<para>
227227
To build the <application>PL/Tcl</application>
228228
procedural language, you of course need a <productname>Tcl</>
229-
installation. If you are using a pre-8.4 release of
230-
<productname>Tcl</>, ensure that it was built without multithreading
231-
support.
229+
installation. The minimum required version is
230+
<productname>Tcl</productname> 8.4.
232231
</para>
233232
</listitem>
234233

0 commit comments

Comments
 (0)