changeset 18510:e4ad83ed88c9

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.
author Timo Sirainen <tss@iki.fi>
date Mon, 04 May 2015 12:07:16 +0300
parents e9cf0ac3a629
children 8f20aa806bcc
files configure.ac
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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"