diff options
author | Alvaro Herrera | 2008-08-01 13:50:52 +0000 |
---|---|---|
committer | Alvaro Herrera | 2008-08-01 13:50:52 +0000 |
commit | 49f001d81ed635747c4439f38ae1fc6090887452 (patch) | |
tree | ebfb93eb5bb182c28dcd7764c07bb1a5d9f5b815 | |
parent | e36e6b1cabfe9a1c59226d4767ca924b6ed74908 (diff) |
Cope with Tcl versions that do not create a tclsh symlink to the version-
numbered program. Per persistent buildfarm failures.
Tom Lane
-rw-r--r-- | config/tcl.m4 | 4 | ||||
-rwxr-xr-x | configure | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/config/tcl.m4 b/config/tcl.m4 index 094dcd1299..398bf78812 100644 --- a/config/tcl.m4 +++ b/config/tcl.m4 @@ -1,10 +1,10 @@ -# $PostgreSQL: pgsql/config/tcl.m4,v 1.6 2008/07/23 17:07:49 petere Exp $ +# $PostgreSQL: pgsql/config/tcl.m4,v 1.7 2008/08/01 13:50:52 alvherre Exp $ # Autoconf macros to check for Tcl related things AC_DEFUN([PGAC_PATH_TCLSH], -[AC_PATH_PROGS(TCLSH, [tclsh tcl]) +[AC_PATH_PROGS(TCLSH, [tclsh tcl tclsh8.5 tclsh8.4 tclsh8.3]) if test x"$TCLSH" = x""; then AC_MSG_ERROR([Tcl shell not found]) fi @@ -24987,7 +24987,7 @@ fi # Check for Tcl configuration script tclConfig.sh if test "$with_tcl" = yes; then - for ac_prog in tclsh tcl + for ac_prog in tclsh tcl tclsh8.5 tclsh8.4 tclsh8.3 do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 |