diff options
author | jlam <jlam@pkgsrc.org> | 2005-01-14 05:15:39 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2005-01-14 05:15:39 +0000 |
commit | 1b5734f517b624ae847f6133a3f35f4f2f355ed3 (patch) | |
tree | 36720cad74f7b206737993c7c57d987ba77a74d6 /mail/courier-auth | |
parent | fbeaab5d63d7daf862e4fc618fbf96316a9d70cd (diff) | |
download | pkgsrc-1b5734f517b624ae847f6133a3f35f4f2f355ed3.tar.gz |
Create a pam.buildlink3.mk file that is used by PAM-using packages.
It includes the correct buildlink3.mk file from either Linux-PAM
(security/PAM) or OpenPAM (security/openpam) and eventually will
support solaris-pam. pam.buildlink3.mk will:
* set PAMBASE to the base directory of the PAM files;
* set PAM_TYPE to the PAM implementation used.
There are two variables that can be used to tweak the selection of
the PAM implementation:
PAM_DEFAULT is a user-settable variable whose value is the default
PAM implementation to use.
PAM_ACCEPTED is a package-settable list of PAM implementations
that may be used by the package.
Modify most packages that include PAM/buildlink3.mk to include
pam.buildlink3.mk instead.
Diffstat (limited to 'mail/courier-auth')
-rw-r--r-- | mail/courier-auth/Makefile.authdaemond | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mail/courier-auth/Makefile.authdaemond b/mail/courier-auth/Makefile.authdaemond index 89e70659039..8beab8aef08 100644 --- a/mail/courier-auth/Makefile.authdaemond +++ b/mail/courier-auth/Makefile.authdaemond @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.authdaemond,v 1.13 2004/07/14 21:37:09 jlam Exp $ +# $NetBSD: Makefile.authdaemond,v 1.14 2005/01/14 05:15:39 jlam Exp $ USE_BUILDLINK3= yes USE_LANGUAGES= c c++ @@ -46,5 +46,5 @@ BUILD_DIRS= ${WRKSRC_SUBDIRS:S/^/${WRKSRC}\//} .include "../../mk/bdb.buildlink3.mk" .if defined(USE_PAM) BUILD_DEFS+= USE_PAM -. include "../../security/PAM/buildlink3.mk" +. include "../../mk/pam.buildlink3.mk" .endif |