[oe-commits] [openembedded-core] 08/10: lighttpd: remove fam as a PACKAGECONFIG option

git at git.openembedded.org git at git.openembedded.org
Fri Sep 27 12:40:08 UTC 2019


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit ea714fff3869ef19cf1dc94bdffbca2c69658954
Author: Trevor Gamblin <trevor.gamblin at windriver.com>
AuthorDate: Thu Sep 26 21:17:53 2019 -0400

    lighttpd: remove fam as a PACKAGECONFIG option
    
    lighttpd builds fail if "fam" (and therefore gamin) is enabled.
    
    In conf/local.conf:
    
        CORE_IMAGE_EXTRA_INSTALL += "lighttpd"
        PACKAGECONFIG_append_pn-lighttpd = " fam"
    
    bitbake error:
    
        ERROR: Nothing PROVIDES 'gamin' (but /yow-lpggp31/tgamblin/oe-core.git/meta/recipes-extended/lighttpd/lighttpd_1.4.54.bb DEPENDS on or otherwise requires it)
        NOTE: Runtime target 'lighttpd' is unbuildable, removing...
        Missing or unbuildable dependency chain was: ['lighttpd', 'gamin']
        ERROR: Required build target 'core-image-minimal' has no buildable providers.
        Missing or unbuildable dependency chain was: ['core-image-minimal', 'lighttpd', 'gamin']
    
    Since gamin hasn't been maintained for several years, this should
    be removed from the list of lighttpd PACKAGECONFIG options.
    --without-fam is hard-coded in EXTRA_OECONF for good measure.
    
    Signed-off-by: Trevor Gamblin <trevor.gamblin at windriver.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/recipes-extended/lighttpd/lighttpd_1.4.54.bb | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/meta/recipes-extended/lighttpd/lighttpd_1.4.54.bb b/meta/recipes-extended/lighttpd/lighttpd_1.4.54.bb
index 72990d0..2e83c82 100644
--- a/meta/recipes-extended/lighttpd/lighttpd_1.4.54.bb
+++ b/meta/recipes-extended/lighttpd/lighttpd_1.4.54.bb
@@ -39,14 +39,13 @@ PACKAGECONFIG[krb5] = "--with-krb5,--without-krb5,krb5"
 PACKAGECONFIG[pcre] = "--with-pcre,--without-pcre,libpcre"
 PACKAGECONFIG[zlib] = "--with-zlib,--without-zlib,zlib"
 PACKAGECONFIG[bzip2] = "--with-bzip2,--without-bzip2,bzip2"
-PACKAGECONFIG[fam] = "--with-fam,--without-fam,gamin"
 PACKAGECONFIG[webdav-props] = "--with-webdav-props,--without-webdav-props,libxml2 sqlite3"
 PACKAGECONFIG[webdav-locks] = "--with-webdav-locks,--without-webdav-locks,util-linux"
 PACKAGECONFIG[gdbm] = "--with-gdbm,--without-gdbm,gdbm"
 PACKAGECONFIG[memcache] = "--with-memcached,--without-memcached,libmemcached"
 PACKAGECONFIG[lua] = "--with-lua,--without-lua,lua"
 
-EXTRA_OECONF += "--enable-lfs"
+EXTRA_OECONF += "--enable-lfs --without-fam"
 
 inherit autotools pkgconfig update-rc.d gettext systemd
 

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list