Raise SQLite3 version requirement to 3.5.0

Needed for per-process (!= per-thread) shared-cache support.
This commit is contained in:
Julien BLACHE 2010-04-27 19:48:58 +02:00
parent dc18860dc5
commit f2cf59c26c
2 changed files with 2 additions and 2 deletions

View File

@ -25,7 +25,7 @@ System-specific libraries:
General libraries:
- Avahi client libraries, 0.6.24 minimum
- sqlite3
- sqlite3 3.5.0+
- ffmpeg
- confuse
- libevent 1.4+

View File

@ -64,7 +64,7 @@ AM_CONDITIONAL(COND_ITUNES, test x$use_itunes = xtrue)
dnl Checks for libraries.
PKG_CHECK_MODULES(CONFUSE, [ libconfuse ])
PKG_CHECK_MODULES(AVAHI, [ avahi-client >= 0.6.24 ])
PKG_CHECK_MODULES(SQLITE3, [ sqlite3 ],
PKG_CHECK_MODULES(SQLITE3, [ sqlite3 >= 3.5.0 ],
AC_DEFINE(HAVE_SQLITE3, 1, [define if sqlite3 is available]))
save_LIBS="$LIBS"