search for: want_sqlit

Displaying 3 results from an estimated 3 matches for "want_sqlit".

Did you mean: want_sqlite
2014 Nov 08
2
SQLite does not depend on zlib, was: Re: [PATCH] Split sql drivers from lib-sql to plugins
...ite3 -lz" Hi, this patch fixes a build error during cross compilation to a system without the libz target package: --- dovecot-2.2.15.org/configure.ac 2014-10-25 05:57:08.000000000 +0200 +++ dovecot-2.2.15/configure.ac 2014-11-08 10:06:23.015570150 +0100 @@ -2293,7 +2293,7 @@ if test $want_sqlite != no; then AC_CHECK_LIB(sqlite3, sqlite3_open, [ AC_CHECK_HEADER(sqlite3.h, [ - SQLITE_LIBS="$SQLITE_LIBS -lsqlite3 -lz" + SQLITE_LIBS="$SQLITE_LIBS -lsqlite3" AC_DEFINE(HAVE_SQLITE,,...
2015 Apr 22
0
SQLite does not depend on zlib, was: Re: [PATCH] Split sql drivers from lib-sql to plugins
...h fixes a build error during cross compilation to a system without > the libz target package: > > --- dovecot-2.2.15.org/configure.ac 2014-10-25 05:57:08.000000000 +0200 > +++ dovecot-2.2.15/configure.ac 2014-11-08 10:06:23.015570150 +0100 > @@ -2293,7 +2293,7 @@ > if test $want_sqlite != no; then > AC_CHECK_LIB(sqlite3, sqlite3_open, [ > AC_CHECK_HEADER(sqlite3.h, [ > - SQLITE_LIBS="$SQLITE_LIBS -lsqlite3 -lz" > + SQLITE_LIBS="$SQLITE_LIBS -lsqlite3" > >...
2010 Apr 14
4
PostgreSQL driver supporting [round-robin] load balancing and redundancy [LONG]
...ing revision 1.1.1.2.6.9 diff -u -r1.1.1.2 -r1.1.1.2.6.9 --- dovecot/configure.in 15 Mar 2010 18:18:14 -0000 1.1.1.2 +++ dovecot/configure.in 5 Apr 2010 16:16:03 -0000 1.1.1.2.6.9 @@ -159,6 +159,11 @@ [ --with-sqlite Build with SQLite3 driver support], TEST_WITH(sqlite, $withval), want_sqlite=no) + +AC_ARG_WITH(multi-pgsql, +[ --with-multi-pgsql Build with PostgreSQL driver supporting multiple connections], + TEST_WITH(multi-pgsql, $withval), + want_multi_pgsql=no) AC_ARG_WITH(lucene, [ --with-lucene Build with CLucene full text search support], @@ -1969,7 +1974,...