network/lighttpd: Updated for version 1.4.26.

This commit is contained in:
Paul Wisehart 2010-03-03 14:22:33 -06:00 committed by Erik Hanson
parent 801302e3f2
commit 8378f987c7
3 changed files with 20 additions and 5 deletions

View file

@ -0,0 +1,12 @@
diff -purN orig/src/network.c lighttpd-1.4.25/src/network.c
--- orig/src/network.c 2010-01-28 10:43:33.829209750 -0500
+++ lighttpd-1.4.25/src/network.c 2010-01-28 10:44:22.639208732 -0500
@@ -525,7 +525,7 @@ int network_init(server *srv) {
if (!s->ssl_use_sslv2) {
/* disable SSLv2 */
- if (SSL_OP_NO_SSLv2 != SSL_CTX_set_options(s->ssl_ctx, SSL_OP_NO_SSLv2)) {
+ if (!(SSL_OP_NO_SSLv2 & SSL_CTX_set_options(s->ssl_ctx, SSL_OP_NO_SSLv2))) {
log_error_write(srv, __FILE__, __LINE__, "ss", "SSL:",
ERR_error_string(ERR_get_error(), NULL));
return -1;

View file

@ -23,7 +23,7 @@
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
PRGNAM=lighttpd
VERSION=1.4.25
VERSION=1.4.26
ARCH=${ARCH:-i486}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
@ -75,6 +75,9 @@ cd $PRGNAM-$VERSION
chown -R root:root .
chmod -R u+w,go+r-w,a-s .
# apply ssl related bug fix (rm in 1.4.27)
patch -p1 < ${CWD}/08-ssl-retval-fix.patch
CFLAGS="$SLKCFLAGS" \
CXXFLAGS="$SLKCFLAGS" \
./configure \

View file

@ -1,10 +1,10 @@
PRGNAM="lighttpd"
VERSION="1.4.25"
VERSION="1.4.26"
HOMEPAGE="http://www.lighttpd.net/"
DOWNLOAD="http://download.lighttpd.net/lighttpd/releases-1.4.x/lighttpd-1.4.25.tar.bz2"
MD5SUM="2027c49fb46530e45338c5e2da13c02f"
DOWNLOAD="http://download.lighttpd.net/lighttpd/releases-1.4.x/lighttpd-1.4.26.tar.bz2"
MD5SUM="a682c8efce47a2f4263a247ba0813c9b"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
MAINTAINER="paul wisehart"
EMAIL="wise@lupulin.net"
APPROVED="rworkman"
APPROVED="Erik Hanson"