Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (3e6a1dab85cdd1e4ff7353c92b1c353c694ba45f)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Vlad Glagolev <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (3e6a1dab85cdd1e4ff7353c92b1c353c694ba45f)
  • Date: Fri, 26 Mar 2010 17:19:40 -0500

GIT changes to master grimoire by Vlad Glagolev <stealth AT sourcemage.org>:

http/lighttpd/DETAILS | 1 +
http/lighttpd/HISTORY | 5 +++++
http/lighttpd/PRE_BUILD | 4 ++++
http/lighttpd/network-ssl.patch | 11 +++++++++++
4 files changed, 21 insertions(+)

New commits:
commit 3e6a1dab85cdd1e4ff7353c92b1c353c694ba45f
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

lighttpd: fixed working with the latest openssl

diff --git a/http/lighttpd/DETAILS b/http/lighttpd/DETAILS
index e18b61f..6fd7f4f 100755
--- a/http/lighttpd/DETAILS
+++ b/http/lighttpd/DETAILS
@@ -1,5 +1,6 @@
SPELL=lighttpd
VERSION=1.4.26
+ PATCHLEVEL=1
BRANCH=`echo -n $VERSION | cut -d . -f 1,2`

SOURCE_HASH=sha512:30e0e48626d6b29406d1efb5ec0efcb7c9a2f803f119c6d2390092e9a8c536c7347c0511db9189cd1149e651ce674a7a72642d1c4d6344450dc1029853ce63bd
SOURCE=$SPELL-$VERSION.tar.bz2
diff --git a/http/lighttpd/HISTORY b/http/lighttpd/HISTORY
index 0254c6c..ffbf441 100644
--- a/http/lighttpd/HISTORY
+++ b/http/lighttpd/HISTORY
@@ -1,3 +1,8 @@
+2010-03-27 Vlad Glagolev <stealth AT sourcemage.org>
+ * DETAILS: PATCHLEVEL=1
+ * network-ssl.patch: added, to fix working with the newest openssl (n)
+ * PRE_BUILD: added, to apply the patch
+
2010-02-08 Vlad Glagolev <stealth AT sourcemage.org>
* DETAILS: updated spell to 1.4.26, SECURITY_PATCH++
(CVE-2010-0295)
diff --git a/http/lighttpd/PRE_BUILD b/http/lighttpd/PRE_BUILD
new file mode 100755
index 0000000..debbf53
--- /dev/null
+++ b/http/lighttpd/PRE_BUILD
@@ -0,0 +1,4 @@
+default_pre_build &&
+cd "$SOURCE_DIRECTORY" &&
+
+patch -p0 < "$SPELL_DIRECTORY/network-ssl.patch"
diff --git a/http/lighttpd/network-ssl.patch b/http/lighttpd/network-ssl.patch
new file mode 100644
index 0000000..0325c5d
--- /dev/null
+++ b/http/lighttpd/network-ssl.patch
@@ -0,0 +1,11 @@
+--- src/network.c.orig 2010-02-02 02:28:20.000000000 +0300
++++ src/network.c 2010-03-27 01:04:58.457237647 +0300
+@@ -525,7 +525,7 @@
+
+ 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;



  • [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (3e6a1dab85cdd1e4ff7353c92b1c353c694ba45f), Vlad Glagolev, 03/26/2010

Archive powered by MHonArc 2.6.24.

Top of Page