*** pgsql/configure.in 2001/08/09 16:39:19 1.120.2.2 --- pgsql/configure.in 2001/05/09 19:19:00 1.121 *************** AC_CONFIG_HEADER(src/include/config.h) *** 28,34 **** AC_PREREQ(2.13) AC_CONFIG_AUX_DIR(config) ! VERSION='7.1.3' AC_SUBST(VERSION) AC_DEFINE_UNQUOTED(PG_VERSION, "$VERSION") --- 28,34 ---- AC_PREREQ(2.13) AC_CONFIG_AUX_DIR(config) ! VERSION='7.1.1' AC_SUBST(VERSION) AC_DEFINE_UNQUOTED(PG_VERSION, "$VERSION") *************** PGAC_ARG_BOOL(with, tcl, no, [ --with-t *** 359,364 **** --- 359,374 ---- AC_MSG_RESULT([$with_tcl]) AC_SUBST([with_tcl]) + # If Tcl is enabled (above) then check for pltcl_unknown_support + AC_MSG_CHECKING([whether to build with pl/tcl unknown support]) + if test "$with_tcl" = yes; then + PGAC_ARG_BOOL(with, pltcl_unknown, no, [ --with-pltcl-unknown build pl/tcl unknown support if Tcl is enabled]) + else + with_pltcl_unknown=no + fi + AC_MSG_RESULT([$with_pltcl_unknown]) + AC_SUBST([with_pltcl_unknown]) + # If Tcl is enabled (above) then Tk is also, unless the user disables it using --without-tk AC_MSG_CHECKING([whether to build with Tk]) if test "$with_tcl" = yes; then *************** AC_OUTPUT( *** 1165,1170 **** --- 1175,1183 ---- src/GNUmakefile src/Makefile.global src/backend/port/Makefile + src/pl/tcl/modules/pltcl_listmod + src/pl/tcl/modules/pltcl_loadmod + src/pl/tcl/modules/pltcl_delmod ], [ # Update timestamp for config.h (see Makefile.global)