Displaying 2 results from an estimated 2 matches for "have_pgsql".
Did you mean:
have_mysql
2005 Aug 30
2
Very minor feature request
Hello,
I'd suggest a way to get to know the "capabilities" of a compiled Dovecot.
The background is that I've run the sequence
./configure --with-ldap && make && make install
twice, all three commands tell me that all is fine (ldap is listed in the
modules), but still dovecot told me that ldap is no Usedb module.
A "make clean" before solved the
2010 Apr 14
4
PostgreSQL driver supporting [round-robin] load balancing and redundancy [LONG]
...i_pgsql" != no && want_pgsql_driver=yes
+
+
+if test $want_pgsql_driver != no; then
AC_CHECK_PROG(PG_CONFIG, pg_config, YES, NO)
if test $PG_CONFIG = NO; then
# based on code from PHP
@@ -2014,19 +2024,20 @@
fi
PGSQL_LIBS="$PGSQL_LIBS -lpq"
AC_DEFINE(HAVE_PGSQL,, Build with PostgreSQL support)
- found_sql_drivers="$found_sql_drivers pgsql"
+ test "$want_pgsql" != no && found_sql_drivers="$found_sql_drivers pgsql"
+ test "$want_multi_pgsql" != no && found_sql_drivers="$found_sql_drivers...