Commit 47ea32f7 authored by Tom Lane's avatar Tom Lane

Mention --without-CXX option in online help.

parent f1f9ec33
This diff is collapsed.
...@@ -238,7 +238,7 @@ dnl We exclude tcl support unless we override it with --with-tcl ...@@ -238,7 +238,7 @@ dnl We exclude tcl support unless we override it with --with-tcl
AC_MSG_CHECKING(setting USE_TCL) AC_MSG_CHECKING(setting USE_TCL)
AC_ARG_WITH( AC_ARG_WITH(
tcl, tcl,
[ --with-tcl use tcl ], [ --with-tcl build Tcl interfaces and pgtclsh ],
[ [
case "$withval" in case "$withval" in
y | ye | yes) USE_TCL=true; USE_TK=true; AC_MSG_RESULT(enabled) ;; y | ye | yes) USE_TCL=true; USE_TK=true; AC_MSG_RESULT(enabled) ;;
...@@ -270,7 +270,7 @@ dnl We exclude perl support unless we override it with --with-perl ...@@ -270,7 +270,7 @@ dnl We exclude perl support unless we override it with --with-perl
AC_MSG_CHECKING(setting USE_PERL) AC_MSG_CHECKING(setting USE_PERL)
AC_ARG_WITH( AC_ARG_WITH(
perl, perl,
[ --with-perl use perl ], [ --with-perl build Perl interface ],
[ [
case "$withval" in case "$withval" in
y | ye | yes) USE_PERL=true; AC_MSG_RESULT(enabled) ;; y | ye | yes) USE_PERL=true; AC_MSG_RESULT(enabled) ;;
...@@ -385,7 +385,8 @@ AC_SUBST(MULTIBYTE) ...@@ -385,7 +385,8 @@ AC_SUBST(MULTIBYTE)
dnl Check for C++ support (allow override if needed) dnl Check for C++ support (allow override if needed)
HAVECXX='HAVE_Cplusplus=true' HAVECXX='HAVE_Cplusplus=true'
AC_ARG_WITH(CXX, AC_ARG_WITH(CXX,
[ --with-CXX=compiler use specific C++ compiler], [ --with-CXX=compiler use specific C++ compiler
--without-CXX prevent building C++ code ],
[ [
case "$withval" in case "$withval" in
"" | y | ye | yes) "" | y | ye | yes)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment