summaryrefslogtreecommitdiff
path: root/www/lighttpd/files/patch-2802-ssl
diff options
context:
space:
mode:
authorMartin Matuska <mm@FreeBSD.org>2011-09-09 09:55:17 +0000
committerMartin Matuska <mm@FreeBSD.org>2011-09-09 09:55:17 +0000
commit0ef07fd2eb89dd768f13799e80617567ab6cb0bb (patch)
tree398d6cf646cceb7166bd3bb7c4070f47ca422e35 /www/lighttpd/files/patch-2802-ssl
parentUpdate to 0.001003 (diff)
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.
Diffstat (limited to 'www/lighttpd/files/patch-2802-ssl')
-rw-r--r--www/lighttpd/files/patch-2802-ssl16
1 files changed, 16 insertions, 0 deletions
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;