summaryrefslogtreecommitdiff
path: root/src/configure.in
diff options
context:
space:
mode:
authorTom Lane1998-10-30 22:36:00 +0000
committerTom Lane1998-10-30 22:36:00 +0000
commit47ea32f7d4a6e968304eb12b9796b559f777f2d0 (patch)
treec71bf01a1621d1b76394deea34e2c49dc569d6f8 /src/configure.in
parentf1f9ec3344d40961db0ca62cccd9f8f519f5abf2 (diff)
Mention --without-CXX option in online help.
Diffstat (limited to 'src/configure.in')
-rw-r--r--src/configure.in7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/configure.in b/src/configure.in
index 4168d6f9121..8e182039619 100644
--- a/src/configure.in
+++ b/src/configure.in
@@ -238,7 +238,7 @@ dnl We exclude tcl support unless we override it with --with-tcl
AC_MSG_CHECKING(setting USE_TCL)
AC_ARG_WITH(
tcl,
- [ --with-tcl use tcl ],
+ [ --with-tcl build Tcl interfaces and pgtclsh ],
[
case "$withval" in
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
AC_MSG_CHECKING(setting USE_PERL)
AC_ARG_WITH(
perl,
- [ --with-perl use perl ],
+ [ --with-perl build Perl interface ],
[
case "$withval" in
y | ye | yes) USE_PERL=true; AC_MSG_RESULT(enabled) ;;
@@ -385,7 +385,8 @@ AC_SUBST(MULTIBYTE)
dnl Check for C++ support (allow override if needed)
HAVECXX='HAVE_Cplusplus=true'
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
"" | y | ye | yes)