summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoe Slater <joe.slater@windriver.com>2023-10-10 14:14:45 -0700
committerArmin Kuster <akuster808@gmail.com>2023-10-17 08:53:00 -0400
commit8a8ff58c2b461e58c37a1d63d040985f46711205 (patch)
tree135387010af89641925f94173de8fea7ec504e3b
parent1d0d7f6e776d93474759e4d28f7445646b9b8645 (diff)
downloadmeta-openembedded-8a8ff58c2b461e58c37a1d63d040985f46711205.tar.gz
nginx: add configure option
Support --with-http_xslt_module configure option via a PACKAGECONFIG option. The option is not added to the defaults. Signed-off-by: Joe Slater <joe.slater@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> (cherry picked from commit e0ac8eec48ddddc93751cfcdef2557998bfe91c8) Signed-off-by: Armin Kuster <akuster808@gmail.com>
-rw-r--r--meta-webserver/recipes-httpd/nginx/files/0001-configure-libxslt-conf.patch39
-rw-r--r--meta-webserver/recipes-httpd/nginx/nginx.inc3
2 files changed, 42 insertions, 0 deletions
diff --git a/meta-webserver/recipes-httpd/nginx/files/0001-configure-libxslt-conf.patch b/meta-webserver/recipes-httpd/nginx/files/0001-configure-libxslt-conf.patch
new file mode 100644
index 000000000..7ba2a1fb8
--- /dev/null
+++ b/meta-webserver/recipes-httpd/nginx/files/0001-configure-libxslt-conf.patch
@@ -0,0 +1,39 @@
1From 0c3c669464a514cf8d0cac08282ecb2b486f440f Mon Sep 17 00:00:00 2001
2From: Joe Slater <joe.slater@windriver.com>
3Date: Tue, 3 Oct 2023 19:21:17 +0000
4Subject: [PATCH] configure: libxslt conf
5
6Modify to find libxslt related include files under sysroot.
7
8Upstream-Status: Pending
9
10Signed-off-by: Joe Slater <joe.slater@windriver.com>
11---
12 auto/lib/libxslt/conf | 4 ++--
13 1 file changed, 2 insertions(+), 2 deletions(-)
14
15diff --git a/auto/lib/libxslt/conf b/auto/lib/libxslt/conf
16index 3063ac7..eb77886 100644
17--- a/auto/lib/libxslt/conf
18+++ b/auto/lib/libxslt/conf
19@@ -12,7 +12,7 @@
20 #include <libxslt/xsltInternals.h>
21 #include <libxslt/transform.h>
22 #include <libxslt/xsltutils.h>"
23- ngx_feature_path="/usr/include/libxml2"
24+ ngx_feature_path="=/usr/include/libxml2"
25 ngx_feature_libs="-lxml2 -lxslt"
26 ngx_feature_test="xmlParserCtxtPtr ctxt = NULL;
27 xsltStylesheetPtr sheet = NULL;
28@@ -100,7 +100,7 @@ fi
29 ngx_feature_name=NGX_HAVE_EXSLT
30 ngx_feature_run=no
31 ngx_feature_incs="#include <libexslt/exslt.h>"
32- ngx_feature_path="/usr/include/libxml2"
33+ ngx_feature_path="=/usr/include/libxml2"
34 ngx_feature_libs="-lexslt"
35 ngx_feature_test="exsltRegisterAll();"
36 . auto/feature
37--
382.35.5
39
diff --git a/meta-webserver/recipes-httpd/nginx/nginx.inc b/meta-webserver/recipes-httpd/nginx/nginx.inc
index 231c1d1ec..9f93c7051 100644
--- a/meta-webserver/recipes-httpd/nginx/nginx.inc
+++ b/meta-webserver/recipes-httpd/nginx/nginx.inc
@@ -22,6 +22,7 @@ SRC_URI = " \
22 file://nginx-volatile.conf \ 22 file://nginx-volatile.conf \
23 file://nginx.service \ 23 file://nginx.service \
24 file://nginx-fix-pidfile.patch \ 24 file://nginx-fix-pidfile.patch \
25 file://0001-configure-libxslt-conf.patch \
25" 26"
26 27
27inherit siteinfo update-rc.d useradd systemd 28inherit siteinfo update-rc.d useradd systemd
@@ -45,6 +46,8 @@ PACKAGECONFIG[ssl] = "--with-http_ssl_module,,openssl"
45PACKAGECONFIG[http-auth-request] = "--with-http_auth_request_module,," 46PACKAGECONFIG[http-auth-request] = "--with-http_auth_request_module,,"
46PACKAGECONFIG[stream] = "--with-stream,," 47PACKAGECONFIG[stream] = "--with-stream,,"
47 48
49PACKAGECONFIG[xslt] = "--with-http_xslt_module,,libxslt"
50
48do_configure () { 51do_configure () {
49 if [ "${SITEINFO_BITS}" = "64" ]; then 52 if [ "${SITEINFO_BITS}" = "64" ]; then
50 PTRSIZE=8 53 PTRSIZE=8