changeset 4348:2dc5f48ff4ee HEAD

Whitespace cleanup for --help. Don't enable GSSAPI support by default.
author Timo Sirainen <tss@iki.fi>
date Fri, 16 Jun 2006 12:32:29 +0300
parents a73d2867f6e1
children 4d4c649ac106
files configure.in
diffstat 1 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/configure.in	Fri Jun 16 12:30:07 2006 +0300
+++ b/configure.in	Fri Jun 16 12:32:29 2006 +0300
@@ -119,13 +119,13 @@
 	want_bsdauth=yes)
 
 AC_ARG_WITH(gssapi,
-[  --with-gssapi           Build with GSSAPI authentication support (default)],
+[  --with-gssapi           Build with GSSAPI authentication support],
     if test x$withval = xno; then
 		want_gssapi=no
 	else
 		want_gssapi=yes
 	fi,
-	want_gssapi=yes)
+	want_gssapi=no)
 
 AC_ARG_WITH(ldap,
 [  --with-ldap             Build with LDAP support],
@@ -193,7 +193,7 @@
 	want_mysql=no)
 
 AC_ARG_WITH(sqlite,
-[  --with-sqlite            Build with SQLite3 driver support],
+[  --with-sqlite           Build with SQLite3 driver support],
 	if test x$withval = xno; then
 		want_sqlite=no
 	else
@@ -297,7 +297,7 @@
 AC_SUBST(moduledir)
 
 AC_ARG_WITH(docs,
-[  --with-docs            Install documentation (default)],
+[  --with-docs             Install documentation (default)],
 	if test x$withval = xno; then
 		want_docs=no
 	else