mirror of
https://github.com/postgres/postgres.git
synced 2025-07-07 00:36:50 +03:00
--without fix from Brook
This commit is contained in:
@ -222,8 +222,13 @@ AC_MSG_CHECKING(setting USE_TCL)
|
|||||||
AC_ARG_WITH(
|
AC_ARG_WITH(
|
||||||
tcl,
|
tcl,
|
||||||
[ --with-tcl use tcl ],
|
[ --with-tcl use tcl ],
|
||||||
USE_TCL=true; AC_MSG_RESULT(enabled),
|
[
|
||||||
USE_TCL=false; AC_MSG_RESULT(disabled)
|
case "$withval" in
|
||||||
|
y | ye | yes) USE_TCL=true; AC_MSG_RESULT(enabled) ;;
|
||||||
|
*) USE_TCL=false; AC_MSG_RESULT(disabled) ;;
|
||||||
|
esac
|
||||||
|
],
|
||||||
|
[ USE_TCL=false; AC_MSG_RESULT(disabled) ]
|
||||||
)
|
)
|
||||||
|
|
||||||
dnl Add tcl/tk candidate directories to CPPFLAGS
|
dnl Add tcl/tk candidate directories to CPPFLAGS
|
||||||
@ -254,8 +259,13 @@ AC_MSG_CHECKING(setting USE_PERL)
|
|||||||
AC_ARG_WITH(
|
AC_ARG_WITH(
|
||||||
perl,
|
perl,
|
||||||
[ --with-perl use perl ],
|
[ --with-perl use perl ],
|
||||||
USE_PERL=true; AC_MSG_RESULT(enabled),
|
[
|
||||||
USE_PERL=false; AC_MSG_RESULT(disabled)
|
case "$withval" in
|
||||||
|
y | ye | yes) USE_PERL=true; AC_MSG_RESULT(enabled) ;;
|
||||||
|
*) USE_PERL=false; AC_MSG_RESULT(disabled) ;;
|
||||||
|
esac
|
||||||
|
],
|
||||||
|
[ USE_PERL=false; AC_MSG_RESULT(disabled) ]
|
||||||
)
|
)
|
||||||
|
|
||||||
#dnl Verify that postgres is already installed
|
#dnl Verify that postgres is already installed
|
||||||
|
Reference in New Issue
Block a user