X-Original-To: alpine-devel@lists.alpinelinux.org Delivered-To: alpine-devel@mail.alpinelinux.org Received: from mail.buchenwald.de (mail.buchenwald.de [193.159.231.203]) by mail.alpinelinux.org (Postfix) with ESMTP id EC519DC0146 for ; Mon, 13 Oct 2014 10:38:03 +0000 (UTC) Received: from musl64.sgbumd.de (juniper-ssg.sgbumd.de [178.63.216.34]) by mail.buchenwald.de (Postfix) with ESMTPA id D3A20E1112 for ; Mon, 13 Oct 2014 12:37:33 +0200 (CEST) From: Jens Vehlhaber To: alpine-devel@lists.alpinelinux.org Subject: [alpine-devel] [PATCH] Postfix file descriptors patch Date: Mon, 13 Oct 2014 12:37:56 +0200 Message-Id: <1413196676-22116-1-git-send-email-jens@eisfair.org> X-Mailer: git-send-email 2.0.0 X-Virus-Scanned: ClamAV using SMC-milter X-Virus-Scanned: Scriptfile SMC-milter X-Mailinglist: alpine-devel Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: --- main/postfix/APKBUILD | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/main/postfix/APKBUILD b/main/postfix/APKBUILD index c9e1961..998d1a3 100644 --- a/main/postfix/APKBUILD +++ b/main/postfix/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Natanael Copa pkgname=postfix pkgver=2.11.1 -pkgrel=0 +pkgrel=1 pkgdesc="Secure and fast drop-in replacement for Sendmail (MTA)" url="http://www.postfix.org/" arch="all" @@ -43,6 +43,7 @@ prepare() { sed -i -e "s|#define HAS_NIS|//#define HAS_NIS|g" \ -e "/^#define ALIAS_DB_MAP/s|:/etc/aliases|:/etc/postfix/aliases|" \ src/util/sys_defs.h || return 1 + sed -i -e "s:(__GLIBC__ < 2):(defined(__GLIBC__) \&\& (__GLIBC__ < 2)):" src/util/sys_defs.h || return 1 sed -i -e "s:/usr/local/:/usr/:g" conf/master.cf || return 1 } -- 2.0.0 --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---