Displaying 8 results from an estimated 8 matches for "sqlite_lib".
Did you mean:
sqlite_libs
2014 Nov 08
2
SQLite does not depend on zlib, was: Re: [PATCH] Split sql drivers from lib-sql to plugins
Tomas Janousek <tjanouse at redhat.com> wrote in news:20070413132731.GA8281
@redhat.com:
> - SQL_LIBS="$SQL_LIBS -lsqlite3 -lz"
> + SQLITE_LIBS="$SQLITE_LIBS -lsqlite3 -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
@@ -22...
2015 Apr 22
0
SQLite does not depend on zlib, was: Re: [PATCH] Split sql drivers from lib-sql to plugins
...ls at t-online.de> wrote in
news:XnsA3DF68DCAEF69berndkuhlsPkbjNfxxIA at bernd-kuhls.de:
> Tomas Janousek <tjanouse at redhat.com> wrote in news:20070413132731.GA8281
> @redhat.com:
>
>> - SQL_LIBS="$SQL_LIBS -lsqlite3 -lz"
>> + SQLITE_LIBS="$SQLITE_LIBS -lsqlite3 -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 20...
2010 Apr 14
4
PostgreSQL driver supporting [round-robin] load balancing and redundancy [LONG]
...ata/cvs/dovecot/src/lib-sql/Makefile.am,v
retrieving revision 1.1.1.1
retrieving revision 1.1.1.1.6.3
diff -u -r1.1.1.1 -r1.1.1.1.6.3
--- dovecot/src/lib-sql/Makefile.am 28 Dec 2009 13:52:04 -0000 1.1.1.1
+++ dovecot/src/lib-sql/Makefile.am 5 Apr 2010 15:05:54 -0000 1.1.1.1.6.3
@@ -15,11 +15,16 @@
SQLITE_LIB = libdriver_sqlite.la
SQL_DRIVER_PLUGINS += sqlite
endif
+if BUILD_MULTI_PGSQL
+MULTI_PGSQL_LIB = libdriver_multi_pgsql.la
+SQL_DRIVER_PLUGINS += multi_pgsql
+endif
sql_module_LTLIBRARIES = \
$(MYSQL_LIB) \
$(PGSQL_LIB) \
- $(SQLITE_LIB)
+ $(SQLITE_LIB) \
+ $(MULTI_PGSQL_LIB)
sql_module...
2013 May 27
2
Dovecot 2.2 build rpm on Centos6
...#39;
PGSQL_CFLAGS=''
PGSQL_LIBS=''
PG_CONFIG=''
PKG_CONFIG='/usr/bin/pkg-config'
QUOTA_LIBS=''
RANLIB=''
RPCGEN=''
RUN_TEST=''
SED=''
SETTING_FILES=''
SET_MAKE=''
SHELL='/bin/sh'
SQLITE_CFLAGS=''
SQLITE_LIBS=''
SQL_CFLAGS=''
SQL_LIBS=''
SQL_PLUGINS_FALSE=''
SQL_PLUGINS_TRUE=''
SSL_CFLAGS=''
SSL_LIBS=''
STRIP=''
TCPWRAPPERS_FALSE=''
TCPWRAPPERS_TRUE=''
VALGRIND=''
VERSION='2.2.2'
abs_top_builddir=''...
2011 Sep 01
15
v2.1.alpha1 released
http://dovecot.org/releases/2.1/alpha/dovecot-2.1.alpha1.tar.gz
http://dovecot.org/releases/2.1/alpha/dovecot-2.1.alpha1.tar.gz.sig
So it's time for the first alpha version of Dovecot v2.1. There are no
huge intrusive changes, so I expect v2.1.0 to be released this year
(maybe even in a few months?)
The biggest changes are related to full text search handling. I'll
probably still make
2011 Sep 01
15
v2.1.alpha1 released
http://dovecot.org/releases/2.1/alpha/dovecot-2.1.alpha1.tar.gz
http://dovecot.org/releases/2.1/alpha/dovecot-2.1.alpha1.tar.gz.sig
So it's time for the first alpha version of Dovecot v2.1. There are no
huge intrusive changes, so I expect v2.1.0 to be released this year
(maybe even in a few months?)
The biggest changes are related to full text search handling. I'll
probably still make
2016 May 25
4
[PATCH 0/4] qemu: Use sqlite to store qemu detection data.
Patches 1 & 2 were posted previously here:
https://www.redhat.com/archives/libguestfs/2016-May/msg00134.html
Patch 3 is a hack so I can test this using my own version of qemu (the
`-L ?' stuff is not upstream).
Patch 4 is where the real action takes place: Replace the caching of
qemu features in blob-like files with a sqlite database. Probably the
best way to approach this patch is to
2010 Apr 09
4
Patch: support URLAUTH, BURL, CATENATE
...E_VERSION = @PACKAGE_VERSION@
+PATH_SEPARATOR = @PATH_SEPARATOR@
+PGSQL_CFLAGS = @PGSQL_CFLAGS@
+PGSQL_LIBS = @PGSQL_LIBS@
+PG_CONFIG = @PG_CONFIG@
+PKG_CONFIG = @PKG_CONFIG@
+RANLIB = @RANLIB@
+RPCGEN = @RPCGEN@
+SED = @SED@
+SET_MAKE = @SET_MAKE@
+SHELL = @SHELL@
+SQLITE_CFLAGS = @SQLITE_CFLAGS@
+SQLITE_LIBS = @SQLITE_LIBS@
+SQL_CFLAGS = @SQL_CFLAGS@
+SQL_LIBS = @SQL_LIBS@
+SSL_CFLAGS = @SSL_CFLAGS@
+SSL_LIBS = @SSL_LIBS@
+STORAGE_LIBS = @STORAGE_LIBS@
+STRIP = @STRIP@
+VERSION = @VERSION@
+abs_builddir = @abs_builddir@
+abs_srcdir = @abs_srcdir@
+abs_top_builddir = @abs_top_builddir@
+abs_top_srcdir...