From patchwork Mon Jun 11 20:40:47 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Zacarias X-Patchwork-Id: 164249 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hemlock.osuosl.org (hemlock.osuosl.org [140.211.166.133]) by ozlabs.org (Postfix) with ESMTP id EA74FB6FA3 for ; Tue, 12 Jun 2012 06:41:08 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 0AD54A0260; Mon, 11 Jun 2012 20:41:08 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Bcu4BVd84n1D; Mon, 11 Jun 2012 20:41:03 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id 56A08A0032; Mon, 11 Jun 2012 20:41:02 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id E51CB8F753 for ; Mon, 11 Jun 2012 20:41:00 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id DA9178870A for ; Mon, 11 Jun 2012 20:41:00 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 3+JM7JiGJF0i for ; Mon, 11 Jun 2012 20:40:59 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from loknar.toptech.com.ar (loknar.toptech.com.ar [74.118.36.95]) by whitealder.osuosl.org (Postfix) with ESMTPS id 7C85E884E2 for ; Mon, 11 Jun 2012 20:40:59 +0000 (UTC) Received: from asgard (host122.186-109-203.telecom.net.ar [186.109.203.122]) (authenticated bits=0) by loknar.toptech.com.ar (8.14.5/8.14.5) with ESMTP id q5BKesIi031671 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 11 Jun 2012 17:40:56 -0300 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zacarias.com.ar; s=dkey; t=1339447258; bh=vJp7Ucc8ku2NxDhpnqn2AklSZJbrxjjSaq+Nx6+K3Zw=; h=From:To:Cc:Subject:Date:Message-Id:In-Reply-To:References; b=aKj4WOJhkFrXLOS12Im6/q4UvQ5g51+fJ2OcQUgUNSHZoZPZacUI2h/uj8ZMkXzYP SeZUBzPPDOUEGUWvS1dSko/i4HWAhhbPGv3JFglgOAo12OcoumDceZvqYx9igqyati P7aFISpadqVnqfuZ4KiBspEGehXivTqtWEOdAg3s= Received: by asgard (sSMTP sendmail emulation); Mon, 11 Jun 2012 17:40:53 -0300 From: Gustavo Zacarias To: buildroot@busybox.net Date: Mon, 11 Jun 2012 17:40:47 -0300 Message-Id: <1339447247-7801-2-git-send-email-gustavo@zacarias.com.ar> X-Mailer: git-send-email 1.7.3.4 In-Reply-To: <1339447247-7801-1-git-send-email-gustavo@zacarias.com.ar> References: <1339447247-7801-1-git-send-email-gustavo@zacarias.com.ar> X-Virus-Scanned: clamav-milter 0.97.3 at loknar X-Virus-Status: Clean Subject: [Buildroot] [PATCH 2/2] hiawatha: fix bug #5276 and bump to version 8.4 X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net Fix bug #5276 by disabling IPv6 when the toolchain lacks it. It builds fine even if it's enabled but it probably doesn't work fine. Also bump to version 8.4: * MaxServerLoad option added. * Bugfix: invalid reverse proxy request when URL parameters are present. * PolarSSL updated to version 1.1.4. * Small bugfixes and improvements. Signed-off-by: Gustavo Zacarias --- package/hiawatha/hiawatha.mk | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/package/hiawatha/hiawatha.mk b/package/hiawatha/hiawatha.mk index 647c1e1..941ee8d 100644 --- a/package/hiawatha/hiawatha.mk +++ b/package/hiawatha/hiawatha.mk @@ -1,4 +1,4 @@ -HIAWATHA_VERSION = 8.3 +HIAWATHA_VERSION = 8.4 HIAWATHA_SITE = http://www.hiawatha-webserver.org/files/ ifeq ($(BR2_PACKAGE_HIAWATHA_SSL),y) @@ -7,6 +7,7 @@ HIAWATHA_DEPENDENCIES += polarssl endif HIAWATHA_CONF_OPT += \ + $(if $(BR2_INET_IPV6),,-DENABLE_IPV6=OFF) \ -DENABLE_TOOLKIT=OFF \ -DENABLE_XSLT=OFF \ -DCONFIG_DIR=/etc/hiawatha \