From patchwork Fri May 11 19:37:32 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Zacarias X-Patchwork-Id: 158576 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ozlabs.org (Postfix) with ESMTP id E4567B700B for ; Sat, 12 May 2012 05:38:33 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 75ED28E7A5; Fri, 11 May 2012 19:38:27 +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 brimEMuO-4U6; Fri, 11 May 2012 19:38:21 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id 545968F6E9; Fri, 11 May 2012 19:38:18 +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 851B78F753 for ; Fri, 11 May 2012 19:38:10 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 49DDD8D42C for ; Fri, 11 May 2012 19:38:10 +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 xhRoE7wPLpCH for ; Fri, 11 May 2012 19:38:01 +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 B14258F588 for ; Fri, 11 May 2012 19:37:58 +0000 (UTC) Received: from asgard (host24.186-125-81.telecom.net.ar [186.125.81.24]) (authenticated bits=0) by loknar.toptech.com.ar (8.14.4/8.14.4) with ESMTP id q4BJboSR020526 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 11 May 2012 16:37:55 -0300 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zacarias.com.ar; s=dkey; t=1336765077; bh=jOC1rbiZabSsnnSPxaYMFwUH1981Cmt2CpG/D+DxiuU=; h=From:To:Cc:Subject:Date:Message-Id:In-Reply-To:References; b=cT7sQb50MOJHxyo8j4PGnRD1Fkowa2CTtbtdY5oS6Ji7bfqwN0TQJPXUvh+EI2PYX 3lgv5ccEfZz3cvxpl2/6bJ6K9wU1Qoz0YUkCnkZvlEg71qFpSvTnGvnJnZ5M2vTkwy WbEYy7UExmll3a2zP2VFK2WoHu7iEL4LB+Yjb6dM= Received: by asgard (sSMTP sendmail emulation); Fri, 11 May 2012 16:37:49 -0300 From: Gustavo Zacarias To: buildroot@busybox.net Date: Fri, 11 May 2012 16:37:32 -0300 Message-Id: <1336765059-20673-3-git-send-email-gustavo@zacarias.com.ar> X-Mailer: git-send-email 1.7.3.4 In-Reply-To: <1336765059-20673-1-git-send-email-gustavo@zacarias.com.ar> References: <1336765059-20673-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 03/10] hiawatha: bump to version 8.2 and define saner default directories 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 Bump to version 8.2. Define CONFIG_DIR=/etc/hiawatha, LOG_DIR=/var/log, PID_DIR=/var/run and WEBROOT_DIR=/var/www/hiawatha which are the same as the defaults but without the /usr prefix. Signed-off-by: Gustavo Zacarias --- package/hiawatha/hiawatha.mk | 8 ++++++-- 1 files changed, 6 insertions(+), 2 deletions(-) diff --git a/package/hiawatha/hiawatha.mk b/package/hiawatha/hiawatha.mk index aa245f3..4600c11 100644 --- a/package/hiawatha/hiawatha.mk +++ b/package/hiawatha/hiawatha.mk @@ -1,4 +1,4 @@ -HIAWATHA_VERSION = 8.1 +HIAWATHA_VERSION = 8.2 HIAWATHA_SITE = http://www.hiawatha-webserver.org/files/ ifeq ($(BR2_PACKAGE_HIAWATHA_SSL),y) @@ -8,6 +8,10 @@ endif HIAWATHA_CONF_OPT += \ -DENABLE_TOOLKIT=OFF \ - -DENABLE_XSLT=OFF + -DENABLE_XSLT=OFF \ + -DCONFIG_DIR=/etc/hiawatha \ + -DLOG_DIR=/var/log \ + -DPID_DIR=/var/run \ + -DWEBROOT_DIR=/var/www/hiawatha $(eval $(call CMAKETARGETS))