dovecot-2.0: configure: If all passdb/userdb/sql drivers are com...

dovecot at dovecot.org dovecot at dovecot.org
Sun May 31 22:22:40 EEST 2009


details:   http://hg.dovecot.org/dovecot-2.0/rev/ab69375b8422
changeset: 9410:ab69375b8422
user:      Timo Sirainen <tss at iki.fi>
date:      Sun May 31 15:22:32 2009 -0400
description:
configure: If all passdb/userdb/sql drivers are compiled, don't print an empty line for them.

diffstat:

1 file changed, 9 insertions(+), 3 deletions(-)
configure.in |   12 +++++++++---

diffs (24 lines):

diff -r 1cfa4804ecbe -r ab69375b8422 configure.in
--- a/configure.in	Sun May 31 15:19:37 2009 -0400
+++ b/configure.in	Sun May 31 15:22:32 2009 -0400
@@ -2509,11 +2509,17 @@ echo "SSL ............ : $have_ssl"
 echo "SSL ............ : $have_ssl"
 echo "GSSAPI ......... : $have_gssapi"
 echo "passdbs ........ :$passdb"
-echo "                 :$not_passdb"
+if test "$not_passdb" != ""; then
+  echo "                 :$not_passdb"
+fi
 echo "userdbs ........ :$userdb"
-echo "                 :$not_userdb"
+if test "$not_userdb" != ""; then
+  echo "                 :$not_userdb"
+fi
 echo "SQL drivers .... :$sql_drivers"
-echo "                 :$not_sql_drivers"
+if test "$not_sql_drivers" != ""; then
+  echo "                 :$not_sql_drivers"
+fi
 
 echo
 echo "NOTE: This is the UNSTABLE development branch of Dovecot v2.0."


More information about the dovecot-cvs mailing list