Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!

Bug 583746

Summary: net-mail/cyrus-imapd-2.5.8[http] : missing dev-db/sqlite dependency
Product: Gentoo Linux Reporter: Guillaume Castagnino <casta>
Component: [OLD] ServerAssignee: Net-Mail Packages <net-mail+disabled>
Status: RESOLVED FIXED    
Severity: normal    
Priority: Normal    
Version: unspecified   
Hardware: All   
OS: Linux   
Whiteboard:
Package list:
Runtime testing required: ---

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.