X-Original-To: alpine-aports@mail.alpinelinux.org Delivered-To: alpine-aports@mail.alpinelinux.org Received: from mail.alpinelinux.org (dallas-a1.alpinelinux.org [127.0.0.1]) by mail.alpinelinux.org (Postfix) with ESMTP id B1CB3DC090B for ; Sat, 15 Aug 2015 13:03:48 +0000 (UTC) Received: from mail-wi0-f175.google.com (mail-wi0-f175.google.com [209.85.212.175]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id 5B6DADC028D for ; Sat, 15 Aug 2015 13:03:47 +0000 (UTC) Received: by wijp15 with SMTP id p15so40739837wij.0 for ; Sat, 15 Aug 2015 06:03:45 -0700 (PDT) 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=jTa+cM7nxPN6IqGLGWCBGMD0VF63hV+NIwxwA6zcpMQ=; b=IZMyKKO+Aeupa48eAIn/JrFp9kHTSp+9QA26l8Br3RugNQe/ThxynTSJv+u8BxTeIo Ms27cSO/E5oY8doXzezBHKCeuUDhs8sMtYMx7iGtyL+WevF6/HriOoQ+VR5XEpCRfIpM I/v2NMJUoDdVVQ/mL3LxS+Psg1MunzknzBXSJl+o7Yhi/uQ+jrDq2nJxCsR2Z76AIzRP YAj3QIhwMe5ZzqBo9njc/H05T+ekHfUgFqndn7P2kLosgl5gB9DrPfxpYfnCRq1Ujbla ckGVnu5PTrza7opQLTaCvnj3+7yPi+BR3dDSLL0z/85ocoxTsmtasC1PQGJ//YGYaYIH JnDw== X-Gm-Message-State: ALoCoQmYELoa7mrukDnNEkerL+xUN49dIDmsDurnllQ3xGV3lsjzgyV3eEE69nmTNraK9kOlZEZI X-Received: by 10.194.79.225 with SMTP id m1mr9991243wjx.8.1439643825343; Sat, 15 Aug 2015 06:03:45 -0700 (PDT) Received: from localhost (pD9555922.dip0.t-ipconnect.de. [217.85.89.34]) by smtp.gmail.com with ESMTPSA id du6sm7687641wib.24.2015.08.15.06.03.43 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sat, 15 Aug 2015 06:03:44 -0700 (PDT) From: Christian Kampka To: alpine-aports@lists.alpinelinux.org Cc: Christian Kampka Subject: [alpine-aports] [PATCH 1/2] main/nginx: enable file-aio Date: Sat, 15 Aug 2015 15:03:26 +0200 Message-Id: <1439643807-3270-1-git-send-email-christian@kampka.net> X-Mailer: git-send-email 2.5.0 X-Virus-Scanned: ClamAV using ClamSMTP X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: --- main/nginx/APKBUILD | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/main/nginx/APKBUILD b/main/nginx/APKBUILD index 8b7da3b..21fb46f 100644 --- a/main/nginx/APKBUILD +++ b/main/nginx/APKBUILD @@ -13,7 +13,7 @@ license="Custom" pkgusers="nginx" pkggroups="nginx" install="$pkgname.pre-install $pkgname.pre-upgrade" -makedepends="pcre-dev openssl-dev zlib-dev" +makedepends="pcre-dev openssl-dev zlib-dev linux-headers" subpackages="$pkgname-doc $pkgname-vim:vim" source="http://nginx.org/download/$pkgname-$pkgver.tar.gz nginx-rtmp-module-$_nginxrtmpver.tar.gz::https://github.com/arut/nginx-rtmp-module/archive/v$_nginxrtmpver.tar.gz @@ -59,6 +59,7 @@ build() { --user=nginx \ --group=nginx \ --with-ipv6 \ + --with-file-aio \ --with-pcre-jit \ --with-http_dav_module \ --with-http_ssl_module \ -- 2.5.0 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---