* [ptxdist] [PATCH 0/3] lighttpd: Collected cleanups
@ 2018-11-12 7:39 Alexander Dahl
2018-11-12 7:39 ` [ptxdist] [PATCH 1/3] lighttpd: Add license file hash Alexander Dahl
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Alexander Dahl @ 2018-11-12 7:39 UTC (permalink / raw)
To: ptxdist
Hei hei,
I prepared lighttpd version bump and little cleanup in the last weeks
by myself, and I'm currently testing it. Now Michael already did the
version bump, so I thought I just send a litte series on what I have
so far.
Note: I just reworded the commit message on the patch which previously
did the version bump (that diff line obviously went away on rebase)
and set the new configure options. I hope that's not too disturbing,
but if anyone wonders why I put the links to the announcements in
there, I already had that and did not want to throw it away.
Happy testing!
Alex
Alexander Dahl (3):
lighttpd: Add license file hash
lighttpd: After version bump cleanup
lighttpd: Install mod_openssl if SSL is selected
rules/lighttpd.make | 6 ++++++
1 file changed, 6 insertions(+)
--
2.11.0
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 4+ messages in thread
* [ptxdist] [PATCH 1/3] lighttpd: Add license file hash
2018-11-12 7:39 [ptxdist] [PATCH 0/3] lighttpd: Collected cleanups Alexander Dahl
@ 2018-11-12 7:39 ` Alexander Dahl
2018-11-12 7:39 ` [ptxdist] [PATCH 2/3] lighttpd: After version bump cleanup Alexander Dahl
2018-11-12 7:39 ` [ptxdist] [PATCH 3/3] lighttpd: Install mod_openssl if SSL is selected Alexander Dahl
2 siblings, 0 replies; 4+ messages in thread
From: Alexander Dahl @ 2018-11-12 7:39 UTC (permalink / raw)
To: ptxdist
Signed-off-by: Alexander Dahl <ada@thorsis.com>
---
rules/lighttpd.make | 1 +
1 file changed, 1 insertion(+)
diff --git a/rules/lighttpd.make b/rules/lighttpd.make
index 99623338d..8aa879616 100644
--- a/rules/lighttpd.make
+++ b/rules/lighttpd.make
@@ -25,6 +25,7 @@ LIGHTTPD_URL := http://download.lighttpd.net/lighttpd/releases-1.4.x/$(LIGHTTPD
LIGHTTPD_SOURCE := $(SRCDIR)/$(LIGHTTPD).$(LIGHTTPD_SUFFIX)
LIGHTTPD_DIR := $(BUILDDIR)/$(LIGHTTPD)
LIGHTTPD_LICENSE := BSD-3-Clause
+LIGHTTPD_LICENSE_FILES := file://COPYING;md5=e4dac5c6ab169aa212feb5028853a579
# ----------------------------------------------------------------------------
# Prepare
--
2.11.0
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 4+ messages in thread
* [ptxdist] [PATCH 2/3] lighttpd: After version bump cleanup
2018-11-12 7:39 [ptxdist] [PATCH 0/3] lighttpd: Collected cleanups Alexander Dahl
2018-11-12 7:39 ` [ptxdist] [PATCH 1/3] lighttpd: Add license file hash Alexander Dahl
@ 2018-11-12 7:39 ` Alexander Dahl
2018-11-12 7:39 ` [ptxdist] [PATCH 3/3] lighttpd: Install mod_openssl if SSL is selected Alexander Dahl
2 siblings, 0 replies; 4+ messages in thread
From: Alexander Dahl @ 2018-11-12 7:39 UTC (permalink / raw)
To: ptxdist
v1.4.51 contains new modules, new protocols, bug fixes, new features,
and security fixes. This sets the new configure options and has links to
the announcements for completeness.
* https://www.lighttpd.net/2017/10/21/1.4.46/
* new modules: mod_openssl, mod_vhostdb, mod_wstunnel
* new protocols: Upgrade: websocket, HAProxy PROXY, RFC7239 Forwarded
* bug fixes
* https://www.lighttpd.net/2017/10/22/1.4.47/
* bug fixes: fix two regressions in 1.4.46
* https://www.lighttpd.net/2017/11/11/1.4.48/
* mod_authn_sasl (new), meson build system (new), revamp build systems
* bug fixes
* https://www.lighttpd.net/2018/3/11/1.4.49/
* mod_proxy: basic support for HTTP CONNECT
* bug fixes
* https://www.lighttpd.net/2018/8/13/1.4.50/
* security fixes
* bug fixes
* https://www.lighttpd.net/2018/10/14/1.4.51/
* security fixes
* bug fixes
* new module: mod_authn_pam
* support for wolfSSL
New options are set to 'without' for now until anybody needs that.
Fixes: 2f49c9fbd60f97b32a38eb9bc715361695fc2fe0
Signed-off-by: Alexander Dahl <ada@thorsis.com>
---
rules/lighttpd.make | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/rules/lighttpd.make b/rules/lighttpd.make
index 8aa879616..8e534744b 100644
--- a/rules/lighttpd.make
+++ b/rules/lighttpd.make
@@ -44,6 +44,9 @@ LIGHTTPD_CONF_OPT := \
--enable-extra-warnings \
--without-libev \
--without-mysql \
+ --without-pgsql \
+ --without-dbi \
+ --without-sasl \
--without-ldap \
--without-pam \
--$(call ptx/wwo, PTXCONF_LIGHTTPD_ATTR)-attr \
@@ -51,6 +54,7 @@ LIGHTTPD_CONF_OPT := \
--without-libunwind \
--without-krb5 \
--$(call ptx/wwo, PTXCONF_LIGHTTPD_OPENSSL)-openssl \
+ --without-wolfssl \
--$(call ptx/wwo, PTXCONF_LIGHTTPD_PCRE)-pcre \
--$(call ptx/wwo, PTXCONF_LIGHTTPD_ZLIB)-zlib \
--$(call ptx/wwo, PTXCONF_LIGHTTPD_BZ2LIB)-bzip2 \
--
2.11.0
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 4+ messages in thread
* [ptxdist] [PATCH 3/3] lighttpd: Install mod_openssl if SSL is selected
2018-11-12 7:39 [ptxdist] [PATCH 0/3] lighttpd: Collected cleanups Alexander Dahl
2018-11-12 7:39 ` [ptxdist] [PATCH 1/3] lighttpd: Add license file hash Alexander Dahl
2018-11-12 7:39 ` [ptxdist] [PATCH 2/3] lighttpd: After version bump cleanup Alexander Dahl
@ 2018-11-12 7:39 ` Alexander Dahl
2 siblings, 0 replies; 4+ messages in thread
From: Alexander Dahl @ 2018-11-12 7:39 UTC (permalink / raw)
To: ptxdist
Since 1.4.46 loading mod_openssl is necessary for SSL/TLS support in
lighttpd.
Signed-off-by: Alexander Dahl <ada@thorsis.com>
---
rules/lighttpd.make | 1 +
1 file changed, 1 insertion(+)
diff --git a/rules/lighttpd.make b/rules/lighttpd.make
index 8e534744b..02e74b3f7 100644
--- a/rules/lighttpd.make
+++ b/rules/lighttpd.make
@@ -93,6 +93,7 @@ LIGHTTPD_MODULES-$(PTXCONF_LIGHTTPD_MOD_CML) += mod_cml
LIGHTTPD_MODULES-$(PTXCONF_LIGHTTPD_MOD_COMPRESS) += mod_compress
LIGHTTPD_MODULES-$(PTXCONF_LIGHTTPD_MOD_FASTCGI) += mod_fastcgi
LIGHTTPD_MODULES-$(PTXCONF_LIGHTTPD_MOD_MAGNET) += mod_magnet
+LIGHTTPD_MODULES-$(PTXCONF_LIGHTTPD_OPENSSL) += mod_openssl
LIGHTTPD_MODULES-$(PTXCONF_LIGHTTPD_MOD_REWRITE) += mod_rewrite
LIGHTTPD_MODULES-$(PTXCONF_LIGHTTPD_MOD_TRIGGER_B4_DL) += mod_trigger_b4_dl
LIGHTTPD_MODULES-$(PTXCONF_LIGHTTPD_MOD_WEBDAV) += mod_webdav
--
2.11.0
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2018-11-12 7:39 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-11-12 7:39 [ptxdist] [PATCH 0/3] lighttpd: Collected cleanups Alexander Dahl
2018-11-12 7:39 ` [ptxdist] [PATCH 1/3] lighttpd: Add license file hash Alexander Dahl
2018-11-12 7:39 ` [ptxdist] [PATCH 2/3] lighttpd: After version bump cleanup Alexander Dahl
2018-11-12 7:39 ` [ptxdist] [PATCH 3/3] lighttpd: Install mod_openssl if SSL is selected Alexander Dahl
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox