From: swalker Date: Fri, 22 Jul 2011 19:52:13 +0000 (+0000) Subject: [packages] lighttpd: update to 1.4.29, add patch for OpenSSL's disabled elliptic... X-Git-Url: http://207.154.207.93/?a=commitdiff_plain;h=1d30eaec874a5f1b8966be62930101364bbb6a21;p=packages.git [packages] lighttpd: update to 1.4.29, add patch for OpenSSL's disabled elliptic curve git-svn-id: svn://svn.openwrt.org/openwrt/packages@27726 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/net/lighttpd/Makefile b/net/lighttpd/Makefile index e2d5598e6..29cf5bfc0 100644 --- a/net/lighttpd/Makefile +++ b/net/lighttpd/Makefile @@ -1,5 +1,5 @@ # -# Copyright (C) 2006-2010 OpenWrt.org +# Copyright (C) 2006-2011 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. @@ -8,12 +8,12 @@ include $(TOPDIR)/rules.mk PKG_NAME:=lighttpd -PKG_VERSION:=1.4.28 +PKG_VERSION:=1.4.29 PKG_RELEASE:=1 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 -PKG_SOURCE_URL:=http://download.lighttpd.net/lighttpd/releases-1.4.x/ -PKG_MD5SUM:=586eb535d31ac299652495b058dd87c4 +PKG_SOURCE_URL:=http://download.lighttpd.net/lighttpd/releases-1.4.x +PKG_MD5SUM:=e6e67b09986cb504db630b5a86b2dd76 PKG_FIXUP:=libtool PKG_INSTALL:=1 diff --git a/net/lighttpd/patches/001-no_ec.patch b/net/lighttpd/patches/001-no_ec.patch new file mode 100644 index 000000000..45cf0ff0a --- /dev/null +++ b/net/lighttpd/patches/001-no_ec.patch @@ -0,0 +1,14 @@ +--- a/src/network.c ++++ b/src/network.c +@@ -480,9 +480,11 @@ int network_init(server *srv) { + 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;