From 0ef07fd2eb89dd768f13799e80617567ab6cb0bb Mon Sep 17 00:00:00 2001 From: Martin Matuska Date: Fri, 9 Sep 2011 09:55:17 +0000 Subject: Add patches from upstream (svn revisions): - r2799: Always use our 'own' md5 implementation (fixes #2331) - r2800: fix some gcc warnings - r2801: Limit amount of bytes we send in one go; fixes stalling in one connection and timeouts on slow systems. - r2802: [ssl] fix build errors when Elliptic-Curve Diffie-Hellman is disabled - r2803: Add static-file.disable-pathinfo option to prevent handling of urls like .../secret.php/image.jpg as static file - r2804: Don't overwrite 401 (auth required) with 501 (unknown method) (fixes #2341) Add test and regression-test targets. --- www/lighttpd/files/patch-2802-ssl | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 www/lighttpd/files/patch-2802-ssl (limited to 'www/lighttpd/files/patch-2802-ssl') diff --git a/www/lighttpd/files/patch-2802-ssl b/www/lighttpd/files/patch-2802-ssl new file mode 100644 index 000000000000..cff9e61895ab --- /dev/null +++ b/www/lighttpd/files/patch-2802-ssl @@ -0,0 +1,16 @@ +Index: src/network.c +=================================================================== +--- src/network.c (revision 2801) ++++ src/network.c (revision 2802) +@@ -480,9 +480,11 @@ + network_backend_t backend; + + #if OPENSSL_VERSION_NUMBER >= 0x0090800fL ++#ifndef OPENSSL_NO_ECDH + EC_KEY *ecdh; + int nid; + #endif ++#endif + + #ifdef USE_OPENSSL + DH *dh; -- cgit v1.2.3