X-Original-To: alpine-aports@lists.alpinelinux.org Received: from mail-wm0-f68.google.com (mail-wm0-f68.google.com [74.125.82.68]) by lists.alpinelinux.org (Postfix) with ESMTP id A154D5C428F for ; Fri, 9 Sep 2016 16:43:00 +0000 (GMT) Received: by mail-wm0-f68.google.com with SMTP id a6so3513247wmc.2 for ; Fri, 09 Sep 2016 09:43:00 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id; bh=zQfE6ype3WTjPreu/rE8I4P44w+a1T7NTwdRxGP0yxI=; b=KdIE7V0CROx9WV/W+dN2FNt6nj55eqB/lfXFpmcFe4eZpNvcLFx2gDRsEu3U/k/HrQ uBzzKkivgPEYCwsD4mfISnmasojq1cU3EQB+RPXAOXVgoPIjjXE2jX1a8XcoPgvurszY fvstOEdUqwcpK5a9rNoR85pmZF1X48f3onI7X+2MXtTpHDPfcm1WzKQZSmLh8FvdJ9Tu jUdcaV4LV5dE8psFMsFwiuib1YPgWDa1WQovQB2lpUIQ7zBj+vcbSWXYnUUAO4vQ6HYN Bz/aJ4lIxCesyp+DtvoAJQxCkda9Tf//p+1CCa20cPVkmvjm0Y3//uYp0hrcSUbnQzHI jXnw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id; bh=zQfE6ype3WTjPreu/rE8I4P44w+a1T7NTwdRxGP0yxI=; b=duTEChUSeRmY26NGyp7FRhQuyAQrMlv7fhLSyuFYIUnGi9VDzo85EOOiFZoQXA55z3 EbQlj6Zh2U4Wq2CWbBEs2DZPSOhjvL4CBfpe5wK0b1JSu0XqJmGKYaqYU5VYPtJKbsD4 wq8gc6+qlfVnmQ8wiRQ8VwRXVuN690TFAjkJNLdiWfsQ2z1c1mdV5QdmvuiRh2PPIe0+ m9OSHu1mZ8sKbZB3jdi6D5+jybJzbriugV6W7xvAMegLaD6XoZ1w26mKOT4sKsVuokky 2RmVE3o4b7Zj/35nr9MPAGN+8G9xgS+HWdGAuMc4p9zjg46aUPtOdHLyfBePNOAsZ0HO CcVg== X-Gm-Message-State: AE9vXwOIa0EoynetRA8D+HFciB2XsFSdc4k2FX37BAZT425eIrqAg0y/DuBj3BXYyArvXg== X-Received: by 10.194.57.244 with SMTP id l20mr4005115wjq.1.1473439380031; Fri, 09 Sep 2016 09:43:00 -0700 (PDT) Received: from localhost.localdomain ([108.61.226.38]) by smtp.gmail.com with ESMTPSA id k2sm4151295wmg.23.2016.09.09.09.42.57 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 09 Sep 2016 09:42:59 -0700 (PDT) From: Michael Koloberdin To: alpine-aports@lists.alpinelinux.org Cc: Michael Koloberdin Subject: [alpine-aports] [PATCH] main/lighttpd: Build with fam/gamin support. This is to avoid stat() call on every file access, see: http://redmine.lighttpd.net/projects/1/wiki/Server_stat-cache-engineDetails Date: Fri, 9 Sep 2016 16:42:49 +0000 Message-Id: <20160909164249.9442-1-koloberdin@gmail.com> X-Mailer: git-send-email 2.10.0 X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: --- main/lighttpd/APKBUILD | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/main/lighttpd/APKBUILD b/main/lighttpd/APKBUILD index 494b2ea..a7fa829 100644 --- a/main/lighttpd/APKBUILD +++ b/main/lighttpd/APKBUILD @@ -3,7 +3,7 @@ pkgname=lighttpd pkgver=1.4.39 _streamver=2.2.0 -pkgrel=3 +pkgrel=4 pkgdesc="a secure, fast, compliant and very flexible web-server" url="http://www.lighttpd.net/" arch="all" @@ -13,7 +13,7 @@ depends= pkgusers="lighttpd" pkggroups="lighttpd" makedepends="flex pcre-dev openssl-dev zlib-dev bzip2-dev lua-dev - automake autoconf openldap-dev libxml2-dev sqlite-dev libev-dev" + automake autoconf openldap-dev libxml2-dev sqlite-dev libev-dev gamin-dev" source="http://download.lighttpd.net/lighttpd/releases-1.4.x/$pkgname-$pkgver.tar.xz http://h264.code-shop.com/download/lighttpd-1.4.18_mod_h264_streaming-$_streamver.tar.gz config_insert_values_global.patch @@ -66,7 +66,7 @@ build() { --without-mysql \ --without-attr \ --without-kerberos5 \ - --without-fam \ + --with-fam \ --with-webdav-props \ --with-webdav-locks \ --without-gdbm \ -- 2.10.0 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---