dovecot-2.2: configure: When compiling with sqlite3, don't forci...

dovecot at dovecot.org dovecot at dovecot.org
Mon May 4 09:09:04 UTC 2015


details:   http://hg.dovecot.org/dovecot-2.2/rev/e4ad83ed88c9
changeset: 18510:e4ad83ed88c9
user:      Timo Sirainen <tss at iki.fi>
date:      Mon May 04 12:07:16 2015 +0300
description:
configure: When compiling with sqlite3, don't forcibly link with zlib.
Looks like -lz was originally added when it was copy&pasted from some other
code. Hopefully this isn't actually needed by any (current) system.

diffstat:

 configure.ac |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (12 lines):

diff -r e9cf0ac3a629 -r e4ad83ed88c9 configure.ac
--- a/configure.ac	Mon May 04 11:55:11 2015 +0300
+++ b/configure.ac	Mon May 04 12:07:16 2015 +0300
@@ -2304,7 +2304,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,, Build with SQLite3 support)
 			found_sql_drivers="$found_sql_drivers sqlite"


More information about the dovecot-cvs mailing list