summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkos Chandras <hwoarang@gentoo.org>2011-09-26 17:08:43 +0000
committerMarkos Chandras <hwoarang@gentoo.org>2011-09-26 17:08:43 +0000
commitb408b46acd26182df439b5d8e6788440eaccbbee (patch)
tree8101c7c6a4ab56aee298a2e7649ff9a0a142173f /www-servers/lighttpd/files
parentAdd x509 patch and release. (diff)
downloadgentoo-2-b408b46acd26182df439b5d8e6788440eaccbbee.tar.gz
gentoo-2-b408b46acd26182df439b5d8e6788440eaccbbee.tar.bz2
gentoo-2-b408b46acd26182df439b5d8e6788440eaccbbee.zip
Add patch to compile when Eliptic Curve support is compiled in openssl. Upstream bug http://redmine.lighttpd.net/issues/2335
(Portage version: 2.2.0_alpha55/cvs/Linux x86_64)
Diffstat (limited to 'www-servers/lighttpd/files')
-rw-r--r--www-servers/lighttpd/files/lighttpd-1.4.29-ssl-no-ecdh.patch16
1 files changed, 16 insertions, 0 deletions
diff --git a/www-servers/lighttpd/files/lighttpd-1.4.29-ssl-no-ecdh.patch b/www-servers/lighttpd/files/lighttpd-1.4.29-ssl-no-ecdh.patch
new file mode 100644
index 000000000000..cff9e61895ab
--- /dev/null
+++ b/www-servers/lighttpd/files/lighttpd-1.4.29-ssl-no-ecdh.patch
@@ -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;