Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 583746 - net-mail/cyrus-imapd-2.5.8[http] : missing dev-db/sqlite dependency
Summary: net-mail/cyrus-imapd-2.5.8[http] : missing dev-db/sqlite dependency
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: [OLD] Server (show other bugs)
Hardware: All Linux
: Normal normal (vote)
Assignee: Net-Mail Packages
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2016-05-22 06:53 UTC by Guillaume Castagnino
Modified: 2016-07-25 10:27 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Guillaume Castagnino 2016-05-22 06:53:43 UTC
Please have a look at http://www.cyrusimap.org/docs/cyrus-imapd/2.5.8/install-http.php

sqlite3 is needed when enabling http use flag in net-mail/cyrus-imapd-2.5.x.

See configure check:
if test "$enable_http" != no; then
dnl
dnl make sure all the modules we need are present
dnl
   ENABLE_RSS=yes
   ENABLE_DAV=yes
   PKG_CHECK_MODULES([XML2], [libxml-2.0],,AC_MSG_ERROR([Need libxml-2.0 for http]))
   PKG_CHECK_MODULES([ICAL], [libical],,AC_MSG_ERROR([Need libical for http]))
   PKG_CHECK_MODULES([SQLITE3], [sqlite3],,AC_MSG_ERROR([Need sqlite3 for http]))
   PKG_CHECK_MODULES([JSON], [jansson],,AC_MSG_ERROR([Need jansson for http]))


Thanks !
Comment 1 Eray Aslan gentoo-dev 2016-07-25 10:27:53 UTC
Fixed in net-mail/cyrus-imapd-2.5.9.  Thanks for the report.