diff options
author | Trevor Gamblin <trevor.gamblin@windriver.com> | 2019-09-26 21:17:53 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-09-30 16:55:21 +0100 |
commit | 3a82a72b63e8bde54d11cc3966fb7a27ac970d7a (patch) | |
tree | eea37a02474812e1a66cc636ab9af14fdf2a277a /meta/recipes-extended | |
parent | 2d2d39d414dd9400aa1a72cbd4ec3d5829a32ace (diff) | |
download | poky-3a82a72b63e8bde54d11cc3966fb7a27ac970d7a.tar.gz |
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.
(From OE-Core rev: ea714fff3869ef19cf1dc94bdffbca2c69658954)
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended')
-rw-r--r-- | meta/recipes-extended/lighttpd/lighttpd_1.4.54.bb | 3 |
1 files changed, 1 insertions, 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 72990d02e5..2e83c821a6 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" | |||
39 | PACKAGECONFIG[pcre] = "--with-pcre,--without-pcre,libpcre" | 39 | PACKAGECONFIG[pcre] = "--with-pcre,--without-pcre,libpcre" |
40 | PACKAGECONFIG[zlib] = "--with-zlib,--without-zlib,zlib" | 40 | PACKAGECONFIG[zlib] = "--with-zlib,--without-zlib,zlib" |
41 | PACKAGECONFIG[bzip2] = "--with-bzip2,--without-bzip2,bzip2" | 41 | PACKAGECONFIG[bzip2] = "--with-bzip2,--without-bzip2,bzip2" |
42 | PACKAGECONFIG[fam] = "--with-fam,--without-fam,gamin" | ||
43 | PACKAGECONFIG[webdav-props] = "--with-webdav-props,--without-webdav-props,libxml2 sqlite3" | 42 | PACKAGECONFIG[webdav-props] = "--with-webdav-props,--without-webdav-props,libxml2 sqlite3" |
44 | PACKAGECONFIG[webdav-locks] = "--with-webdav-locks,--without-webdav-locks,util-linux" | 43 | PACKAGECONFIG[webdav-locks] = "--with-webdav-locks,--without-webdav-locks,util-linux" |
45 | PACKAGECONFIG[gdbm] = "--with-gdbm,--without-gdbm,gdbm" | 44 | PACKAGECONFIG[gdbm] = "--with-gdbm,--without-gdbm,gdbm" |
46 | PACKAGECONFIG[memcache] = "--with-memcached,--without-memcached,libmemcached" | 45 | PACKAGECONFIG[memcache] = "--with-memcached,--without-memcached,libmemcached" |
47 | PACKAGECONFIG[lua] = "--with-lua,--without-lua,lua" | 46 | PACKAGECONFIG[lua] = "--with-lua,--without-lua,lua" |
48 | 47 | ||
49 | EXTRA_OECONF += "--enable-lfs" | 48 | EXTRA_OECONF += "--enable-lfs --without-fam" |
50 | 49 | ||
51 | inherit autotools pkgconfig update-rc.d gettext systemd | 50 | inherit autotools pkgconfig update-rc.d gettext systemd |
52 | 51 | ||