summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/lighttpd/lighttpd
diff options
context:
space:
mode:
authorAlexander Kanavin <alex.kanavin@gmail.com>2021-08-22 14:50:11 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-08-23 08:25:52 +0100
commit3755f6c4eb404b6218784ad21c3a56312c425cc2 (patch)
tree6f5631683801e44e6e6f059b35c1d37b8f2dae79 /meta/recipes-extended/lighttpd/lighttpd
parent79b7ce12c1bb474a9af5411886e11897032a230d (diff)
downloadpoky-3755f6c4eb404b6218784ad21c3a56312c425cc2.tar.gz
lighttpd: convert from autotools to meson
virtual/crypt is a hard dependency in meson builds. ipv6 support is determined automatically. The rest of the options are converted where available; not every autoconf option exists in meson. Modules are now packaged in /usr/lib/lighttpd, so adjust packaging accordingly. (From OE-Core rev: a0a34524016050a78cb49d6657fcca5a2261d7fe) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/lighttpd/lighttpd')
-rw-r--r--meta/recipes-extended/lighttpd/lighttpd/0001-meson-add-with_zstd-to-meson_options.txt.patch27
1 files changed, 27 insertions, 0 deletions
diff --git a/meta/recipes-extended/lighttpd/lighttpd/0001-meson-add-with_zstd-to-meson_options.txt.patch b/meta/recipes-extended/lighttpd/lighttpd/0001-meson-add-with_zstd-to-meson_options.txt.patch
new file mode 100644
index 0000000000..ceedccbd11
--- /dev/null
+++ b/meta/recipes-extended/lighttpd/lighttpd/0001-meson-add-with_zstd-to-meson_options.txt.patch
@@ -0,0 +1,27 @@
1From f24bd105388c305beeead5d3fa0a028b82354f18 Mon Sep 17 00:00:00 2001
2From: Glenn Strauss <gstrauss@gluelogic.com>
3Date: Wed, 3 Feb 2021 00:35:34 -0500
4Subject: [PATCH] [meson] add with_zstd to meson_options.txt
5
6Upstream-Status: Backport
7Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
8---
9 meson_options.txt | 5 +++++
10 1 file changed, 5 insertions(+)
11
12diff --git a/meson_options.txt b/meson_options.txt
13index 51bea44d..f6687159 100644
14--- a/meson_options.txt
15+++ b/meson_options.txt
16@@ -148,6 +148,11 @@ option('with_zlib',
17 value: true,
18 description: 'with deflate-support for mod_deflate [default: on]',
19 )
20+option('with_zstd',
21+ type: 'boolean',
22+ value: false,
23+ description: 'with zstd-support for mod_deflate [default: off]',
24+)
25
26 option('build_extra_warnings',
27 type: 'boolean',