8000 Cope with Tcl versions that do not create a tclsh symlink to the vers… · postgres/postgres@49f001d · GitHub
[go: up one dir, main page]

Skip to content
  • Commit 49f001d

    Browse files
    committed
    Cope with Tcl versions that do not create a tclsh symlink to the version-
    numbered program. Per persistent buildfarm failures. Tom Lane
    1 parent e36e6b1 commit 49f001d

    File tree

    2 files changed

    +3
    -3
    lines changed

    2 files changed

    +3
    -3
    lines changed

    config/tcl.m4

    Lines changed: 2 additions & 2 deletions
    Original file line numberDiff line numberDiff line change
    @@ -1,10 +1,10 @@
    1-
    # $PostgreSQL: pgsql/config/tcl.m4,v 1.6 2008/07/23 17:07:49 petere Exp $
    1+
    # $PostgreSQL: pgsql/config/tcl.m4,v 1.7 2008/08/01 13:50:52 alvherre Exp $
    22

    33
    # Autoconf macros to check for Tcl related things
    44

    55

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

    configure

    Lines changed: 1 addition & 1 deletion
    Original file line numberDiff line numberDiff line change
    @@ -24987,7 +24987,7 @@ fi
    2498724987

    2498824988
    # Check for Tcl configuration script tclConfig.sh
    2498924989
    if test "$with_tcl" = yes; then
    24990-
    for ac_prog in tclsh tcl
    24990+
    for ac_prog in tclsh tcl tclsh8.5 tclsh8.4 tclsh8.3
    2499124991
    do
    2499224992
    # Extract the first word of "$ac_prog", so it can be a program name with args.
    2499324993
    set dummy $ac_prog; ac_word=$2

    0 commit comments

    Comments
     (0)
    0