diff options
author | rh <rh> | 2000-10-21 18:50:49 +0000 |
---|---|---|
committer | rh <rh> | 2000-10-21 18:50:49 +0000 |
commit | 4fdeb4b11904995c002cc1ef2aa18c38d7a385c8 (patch) | |
tree | a7d4b858024ddb4a5c12c91d8cb9977e8475b421 | |
parent | 75ca8056a6e552e43f5cea2ba2561610b30f7117 (diff) | |
download | pkgsrc-4fdeb4b11904995c002cc1ef2aa18c38d7a385c8.tar.gz |
Add optional PAM support if USE_PAM is defined
-rw-r--r-- | security/cyrus-sasl/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/security/cyrus-sasl/Makefile b/security/cyrus-sasl/Makefile index 392d9a02a71..0f00671f9a7 100644 --- a/security/cyrus-sasl/Makefile +++ b/security/cyrus-sasl/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1.1.1 2000/08/25 15:23:49 jlam Exp $ +# $NetBSD: Makefile,v 1.2 2000/10/21 18:50:49 rh Exp $ DISTNAME= cyrus-sasl-1.5.24 CATEGORIES= security @@ -22,6 +22,11 @@ CONFIGURE_ENV+= CPPFLAGS="-I/usr/include/openssl" CONFIGURE_ARGS+= --with-plugindir=${PREFIX}/lib/sasl +.if defined(USE_PAM) +CONFIGURE_ARGS+= --with-pam=${PREFIX} +DEPENDS+= PAM-*:../../security/PAM +.endif + PLIST_SRC= ${WRKDIR}/.PLIST_SRC post-build: |