Fri Mar 9 15:15:30 2012 UTC ()
Force --with-waitfunc=wait3 on SunOS, fixes several courier-* packages.


(fhajny)
diff -r1.12 -r1.13 pkgsrc/security/courier-authlib/Makefile.common

cvs diff -r1.12 -r1.13 pkgsrc/security/courier-authlib/Makefile.common (expand / switch to unified diff)

--- pkgsrc/security/courier-authlib/Makefile.common 2010/11/10 10:37:48 1.12
+++ pkgsrc/security/courier-authlib/Makefile.common 2012/03/09 15:15:30 1.13
@@ -1,20 +1,26 @@ @@ -1,20 +1,26 @@
1# $NetBSD: Makefile.common,v 1.12 2010/11/10 10:37:48 adam Exp $ 1# $NetBSD: Makefile.common,v 1.13 2012/03/09 15:15:30 fhajny Exp $
2# 2#
3# used by mail/courier-mta/Makefile.common 3# used by mail/courier-mta/Makefile.common
4 4
5COURIER_USER?= courier 5COURIER_USER?= courier
6COURIER_GROUP?= mail 6COURIER_GROUP?= mail
7FILES_SUBST+= COURIER_USER=${COURIER_USER} 7FILES_SUBST+= COURIER_USER=${COURIER_USER}
8FILES_SUBST+= COURIER_GROUP=${COURIER_GROUP} 8FILES_SUBST+= COURIER_GROUP=${COURIER_GROUP}
9MESSAGE_SUBST+= COURIER_USER=${COURIER_USER} 9MESSAGE_SUBST+= COURIER_USER=${COURIER_USER}
10MESSAGE_SUBST+= COURIER_GROUP=${COURIER_GROUP} 10MESSAGE_SUBST+= COURIER_GROUP=${COURIER_GROUP}
11 11
12PKG_GROUPS= ${COURIER_GROUP} 12PKG_GROUPS= ${COURIER_GROUP}
13PKG_USERS= ${COURIER_USER}:${COURIER_GROUP} 13PKG_USERS= ${COURIER_USER}:${COURIER_GROUP}
14 14
15PKG_GROUPS_VARS+= COURIER_GROUP 15PKG_GROUPS_VARS+= COURIER_GROUP
16PKG_USERS_VARS+= COURIER_USER 16PKG_USERS_VARS+= COURIER_USER
17 17
18GNU_CONFIGURE= yes 18GNU_CONFIGURE= yes
19CONFIGURE_ARGS+= --with-mailuser=${COURIER_USER} 19CONFIGURE_ARGS+= --with-mailuser=${COURIER_USER}
20CONFIGURE_ARGS+= --with-mailgroup=${COURIER_GROUP} 20CONFIGURE_ARGS+= --with-mailgroup=${COURIER_GROUP}
 21
 22.include "../../mk/bsd.prefs.mk"
 23
 24.if ${OPSYS} == "SunOS"
 25CONFIGURE_ARGS+= --with-waitfunc=wait3
 26.endif