1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-28 23:42:10 +03:00

Abort if Tcl support was configured and no tcl shell was found.

This is required because the value is substituted into the pltcl_*mod
scripts.
This commit is contained in:
Peter Eisentraut
2008-07-23 17:07:50 +00:00
parent 64d84adf03
commit 509303a597
3 changed files with 15 additions and 4 deletions

View File

@ -1,10 +1,14 @@
# $PostgreSQL: pgsql/config/tcl.m4,v 1.5 2003/11/29 19:51:17 pgsql Exp $
# $PostgreSQL: pgsql/config/tcl.m4,v 1.6 2008/07/23 17:07:49 petere 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])
if test x"$TCLSH" = x""; then
AC_MSG_ERROR([Tcl shell not found])
fi
])
# PGAC_PATH_TCLCONFIGSH([SEARCH-PATH])