diff options
author | Andreas Oberritter <obi@opendreambox.org> | 2016-12-01 03:33:23 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-12-08 10:31:30 +0000 |
commit | 5be84f940b3a7ecfe48d371f03d852092899eb23 (patch) | |
tree | cff7147f4bc329eea02e161b971bc0d233b18d68 /meta | |
parent | 1bf8d703f4c9f13a89a496e12a3b1675342127b9 (diff) | |
download | poky-5be84f940b3a7ecfe48d371f03d852092899eb23.tar.gz |
lighttpd: Add many packageconfig options
Respect largefile and xattr distro features.
(From OE-Core rev: 38eb51d4739cbac292abaef9d2888b6a54d32ad6)
Signed-off-by: Andreas Oberritter <obi@opendreambox.org>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-extended/lighttpd/lighttpd_1.4.43.bb | 37 |
1 files changed, 22 insertions, 15 deletions
diff --git a/meta/recipes-extended/lighttpd/lighttpd_1.4.43.bb b/meta/recipes-extended/lighttpd/lighttpd_1.4.43.bb index 322f212a73..38eaf70808 100644 --- a/meta/recipes-extended/lighttpd/lighttpd_1.4.43.bb +++ b/meta/recipes-extended/lighttpd/lighttpd_1.4.43.bb | |||
@@ -6,7 +6,6 @@ LICENSE = "BSD" | |||
6 | LIC_FILES_CHKSUM = "file://COPYING;md5=e4dac5c6ab169aa212feb5028853a579" | 6 | LIC_FILES_CHKSUM = "file://COPYING;md5=e4dac5c6ab169aa212feb5028853a579" |
7 | 7 | ||
8 | SECTION = "net" | 8 | SECTION = "net" |
9 | DEPENDS = "zlib libpcre" | ||
10 | RDEPENDS_${PN} += " \ | 9 | RDEPENDS_${PN} += " \ |
11 | lighttpd-module-access \ | 10 | lighttpd-module-access \ |
12 | lighttpd-module-accesslog \ | 11 | lighttpd-module-accesslog \ |
@@ -26,22 +25,30 @@ SRC_URI = "http://download.lighttpd.net/lighttpd/releases-1.4.x/lighttpd-${PV}.t | |||
26 | SRC_URI[md5sum] = "95eda531c27b161ef8fa2b9bf4948caf" | 25 | SRC_URI[md5sum] = "95eda531c27b161ef8fa2b9bf4948caf" |
27 | SRC_URI[sha256sum] = "fe0c4a06dd2408a83ee7a2bfedc45e09597f3313cbda82485507573ae8fa948a" | 26 | SRC_URI[sha256sum] = "fe0c4a06dd2408a83ee7a2bfedc45e09597f3313cbda82485507573ae8fa948a" |
28 | 27 | ||
29 | PACKAGECONFIG ??= "openssl \ | 28 | PACKAGECONFIG ??= "openssl pcre zlib \ |
30 | ${@bb.utils.contains('DISTRO_FEATURES', 'ipv6', 'ipv6', '', d)} \ | 29 | ${@bb.utils.contains('DISTRO_FEATURES', 'ipv6', 'ipv6', '', d)} \ |
30 | ${@bb.utils.contains('DISTRO_FEATURES', 'largefile', 'lfs', '', d)} \ | ||
31 | ${@bb.utils.contains('DISTRO_FEATURES', 'xattr', 'attr', '', d)} \ | ||
31 | " | 32 | " |
32 | PACKAGECONFIG[openssl] = "--with-openssl, --without-openssl, openssl" | 33 | PACKAGECONFIG[lfs] = "--enable-lfs,--disable-lfs" |
33 | PACKAGECONFIG[ipv6] = "--enable-ipv6,--disable-ipv6," | 34 | PACKAGECONFIG[ipv6] = "--enable-ipv6,--disable-ipv6" |
34 | 35 | PACKAGECONFIG[mmap] = "--enable-mmap,--disable-mmap" | |
35 | EXTRA_OECONF = " \ | 36 | PACKAGECONFIG[libev] = "--with-libev,--without-libev,libev" |
36 | --without-bzip2 \ | 37 | PACKAGECONFIG[mysql] = "--with-mysql,--without-mysql,mariadb" |
37 | --without-ldap \ | 38 | PACKAGECONFIG[ldap] = "--with-ldap,--without-ldap,openldap" |
38 | --without-lua \ | 39 | PACKAGECONFIG[attr] = "--with-attr,--without-attr,attr" |
39 | --without-memcached \ | 40 | PACKAGECONFIG[valgrind] = "--with-valgrind,--without-valgrind,valgrind" |
40 | --with-pcre \ | 41 | PACKAGECONFIG[openssl] = "--with-openssl,--without-openssl,openssl" |
41 | --without-webdav-props \ | 42 | PACKAGECONFIG[krb5] = "--with-krb5,--without-krb5,krb5" |
42 | --without-webdav-locks \ | 43 | PACKAGECONFIG[pcre] = "--with-pcre,--without-pcre,libpcre" |
43 | --disable-static \ | 44 | PACKAGECONFIG[zlib] = "--with-zlib,--without-zlib,zlib" |
44 | " | 45 | PACKAGECONFIG[bzip2] = "--with-bzip2,--without-bzip2,bzip2" |
46 | PACKAGECONFIG[fam] = "--with-fam,--without-fam,gamin" | ||
47 | PACKAGECONFIG[webdav-props] = "--with-webdav-props,--without-webdav-props,libxml2 sqlite3" | ||
48 | PACKAGECONFIG[webdav-locks] = "--with-webdav-locks,--without-webdav-locks,util-linux" | ||
49 | PACKAGECONFIG[gdbm] = "--with-gdbm,--without-gdbm,gdbm" | ||
50 | PACKAGECONFIG[memcache] = "--with-memcached,--without-memcached,libmemcached" | ||
51 | PACKAGECONFIG[lua] = "--with-lua,--without-lua,lua5.1" | ||
45 | 52 | ||
46 | inherit autotools pkgconfig update-rc.d gettext systemd | 53 | inherit autotools pkgconfig update-rc.d gettext systemd |
47 | 54 | ||