]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
configure: If all passdb/userdb/sql drivers are compiled, don't print an empty line...
authorTimo Sirainen <tss@iki.fi>
Sun, 31 May 2009 19:22:32 +0000 (15:22 -0400)
committerTimo Sirainen <tss@iki.fi>
Sun, 31 May 2009 19:22:32 +0000 (15:22 -0400)
--HG--
branch : HEAD

configure.in

index f834addcf9e68bac1098bb1f4d8d4ff1bc5da1a5..182cc8f9860629a0615d31d8281831de198ad89b 100644 (file)
@@ -2509,11 +2509,17 @@ echo "I/O notifys .... : $have_notify"
 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."