diff options
author | jlam <jlam> | 2005-01-14 05:15:39 +0000 |
---|---|---|
committer | jlam <jlam> | 2005-01-14 05:15:39 +0000 |
commit | e7b0a8edd99fc8377a8c8877bd0b5aea28fe5479 (patch) | |
tree | 36720cad74f7b206737993c7c57d987ba77a74d6 /net/ja-samba/Makefile | |
parent | a42aa4d9dca44db696370a2af8038edeaa4df5ff (diff) | |
download | pkgsrc-e7b0a8edd99fc8377a8c8877bd0b5aea28fe5479.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 'net/ja-samba/Makefile')
-rw-r--r-- | net/ja-samba/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ja-samba/Makefile b/net/ja-samba/Makefile index 400e3dafcd0..732d6ff92b3 100644 --- a/net/ja-samba/Makefile +++ b/net/ja-samba/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.31 2004/12/28 02:47:46 reed Exp $ +# $NetBSD: Makefile,v 1.32 2005/01/14 05:15:39 jlam Exp $ .include "Makefile.common" @@ -37,7 +37,7 @@ CONFIGURE_ARGS+= --enable-cups .endif .if defined(USE_PAM) -. include "../../security/PAM/buildlink3.mk" +. include "../../mk/pam.buildlink3.mk" BUILD_DEFS+= USE_PAM CONFIGURE_ARGS+= --with-pam .endif |