summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2006-10-01 23:47:16 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2006-10-01 23:47:16 +0000
commit7ceec34a7302504fd7345c5615645386bd5be716 (patch)
tree84fc802b334ee494afc315269b5f556eda011010 /configure.in
parentdb2dcf58be1c15a5ce91396b3205fb982ee7a656 (diff)
downloadpostgresql-7ceec34a7302504fd7345c5615645386bd5be716.tar.gz
Improve documentation of configure's readline/libedit switches.
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in18
1 files changed, 9 insertions, 9 deletions
diff --git a/configure.in b/configure.in
index 818a6f59fc..6b36bfea23 100644
--- a/configure.in
+++ b/configure.in
@@ -1,5 +1,5 @@
dnl Process this file with autoconf to produce a configure script.
-dnl $PostgreSQL: pgsql/configure.in,v 1.476 2006/09/27 16:29:45 tgl Exp $
+dnl $PostgreSQL: pgsql/configure.in,v 1.477 2006/10/01 23:47:16 tgl Exp $
dnl
dnl Developers, please strive to achieve this order:
dnl
@@ -509,17 +509,10 @@ AC_SUBST(with_openssl)
#
-# Prefer libedit
-#
-PGAC_ARG_BOOL(with, libedit-preferred, no,
- [ --with-libedit-preferred prefer BSD Libedit over GNU Readline])
-
-
-#
# Readline
#
PGAC_ARG_BOOL(with, readline, yes,
- [ --without-readline do not use GNU Readline / BSD Libedit line editing])
+ [ --without-readline do not use GNU Readline nor BSD Libedit for editing])
# readline on MinGW has problems with backslashes in psql and other bugs.
# This is particularly a problem with non-US code pages.
# Therefore disable its use until we understand the cause. 2004-07-20
@@ -532,6 +525,13 @@ fi
#
+# Prefer libedit
+#
+PGAC_ARG_BOOL(with, libedit-preferred, no,
+ [ --with-libedit-preferred prefer BSD Libedit over GNU Readline])
+
+
+#
# Zlib
#
PGAC_ARG_BOOL(with, zlib, yes,