diff options
author | jlam <jlam@pkgsrc.org> | 2007-09-23 11:42:43 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2007-09-23 11:42:43 +0000 |
commit | ed1597fb03574f11c0bde2289b72e59b23e048c9 (patch) | |
tree | 9483d6d62d4b896200c8bdd9f8cf72a2571b56be /meta-pkgs | |
parent | c99efd902aa5c543714b06d90a303692bd6096fa (diff) | |
download | pkgsrc-ed1597fb03574f11c0bde2289b72e59b23e048c9.tar.gz |
Don't hardcode the use of "99" as a file descriptor because it may
not be available. Instead, use (OPEN_MAX - 1) which uses the same
"pick a high number" strategy as choosing "99", but is more likely to
be available. This allows users with a soft limit of 64 open files
to run courierfilter and courierldapaliasd.
Bump the following PKGREVISIONs:
mail/courier-mta --> 11
meta-pkgs/courier --> 7
net/couriertcpd --> 3
Diffstat (limited to 'meta-pkgs')
-rw-r--r-- | meta-pkgs/courier/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/meta-pkgs/courier/Makefile b/meta-pkgs/courier/Makefile index 8f797fad34c..fc861923cc3 100644 --- a/meta-pkgs/courier/Makefile +++ b/meta-pkgs/courier/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.7 2007/09/23 01:24:55 jlam Exp $ +# $NetBSD: Makefile,v 1.8 2007/09/23 11:42:44 jlam Exp $ DISTNAME= courier-${COURIER_VERSION} -PKGREVISION= 6 +PKGREVISION= 7 CATEGORIES= meta-pkgs mail MASTER_SITES= # empty DISTFILES= # empty @@ -20,9 +20,9 @@ COURIER_VERSION= 0.56.0 # # net/couriertcpd, mail/courier-maildir, mail/courier-mta # -DEPENDS+= couriertcpd>=${COURIER_VERSION}nb2:../../net/couriertcpd +DEPENDS+= couriertcpd>=${COURIER_VERSION}nb3:../../net/couriertcpd DEPENDS+= courier-maildir>=${COURIER_VERSION}:../../mail/courier-maildir -DEPENDS+= courier-mta>=${COURIER_VERSION}nb9:../../mail/courier-mta +DEPENDS+= courier-mta>=${COURIER_VERSION}nb11:../../mail/courier-mta # The following packages must be from the same lineage as the version # of Courier: |