diff options
author | jlam <jlam> | 2004-07-06 22:38:32 +0000 |
---|---|---|
committer | jlam <jlam> | 2004-07-06 22:38:32 +0000 |
commit | b3670b6d0672573b5cbbd22945c60cd6c8dc5ead (patch) | |
tree | cb43dd9fb6d53b4829df179499bf155783feff6d /security | |
parent | b8f118c7d9189313e71867b6686db81b113f2d16 (diff) | |
download | pkgsrc-b3670b6d0672573b5cbbd22945c60cd6c8dc5ead.tar.gz |
Refer to ${VARBASE} instead of /var for the location for local state
information.
Diffstat (limited to 'security')
-rw-r--r-- | security/cyrus-sasl2/Makefile | 4 | ||||
-rw-r--r-- | security/cyrus-sasl2/Makefile.common | 4 | ||||
-rw-r--r-- | security/cyrus-saslauthd/Makefile | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/security/cyrus-sasl2/Makefile b/security/cyrus-sasl2/Makefile index 056f9c6010e..60c75676b24 100644 --- a/security/cyrus-sasl2/Makefile +++ b/security/cyrus-sasl2/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.30 2004/07/06 04:20:59 jlam Exp $ +# $NetBSD: Makefile,v 1.31 2004/07/06 22:38:32 jlam Exp $ .include "Makefile.common" @@ -38,7 +38,7 @@ CONFIGURE_ARGS+= --with-openssl=${SSLBASE} # Support using the Courier authdaemon (mail/courier-auth*) for # plaintext password authentication. # -AUTHDAEMONVAR?= /var/authdaemon +AUTHDAEMONVAR?= ${VARBASE}/authdaemon CONFIGURE_ARGS+= --with-authdaemond=${AUTHDAEMONVAR} BUILD_DEFS+= AUTHDAEMONVAR diff --git a/security/cyrus-sasl2/Makefile.common b/security/cyrus-sasl2/Makefile.common index c167abce27c..fc557c9fc2d 100644 --- a/security/cyrus-sasl2/Makefile.common +++ b/security/cyrus-sasl2/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.20 2004/05/16 17:07:22 danw Exp $ +# $NetBSD: Makefile.common,v 1.21 2004/07/06 22:38:32 jlam Exp $ # # This file is currently included by: # @@ -53,7 +53,7 @@ PLUGINDIR= ${PREFIX}/lib/sasl2 _PLUGINDIR= ${VIEWBASE}/lib/sasl2 HTMLDIR= ${PREFIX}/share/doc/html/cyrus-sasl -SASLSOCKETDIR?= /var/run/saslauthd +SASLSOCKETDIR?= ${VARBASE}/run/saslauthd BUILD_DEFS+= SASLSOCKETDIR CONFIGURE_ARGS+= --with-saslauthd=${SASLSOCKETDIR} diff --git a/security/cyrus-saslauthd/Makefile b/security/cyrus-saslauthd/Makefile index c458233c132..a9393a667e0 100644 --- a/security/cyrus-saslauthd/Makefile +++ b/security/cyrus-saslauthd/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.13 2004/04/21 21:09:33 cube Exp $ +# $NetBSD: Makefile,v 1.14 2004/07/06 22:38:33 jlam Exp $ DISTNAME= cyrus-sasl-2.1.18 PKGNAME= ${DISTNAME:S/sasl/saslauthd/} @@ -29,7 +29,7 @@ ALL_TARGET= all saslcache testsaslauthd BUILD_DEFS+= USE_PAM USE_OPENLDAP SASL_USE_GSSAPI -SASLSOCKETDIR?= /var/run/saslauthd +SASLSOCKETDIR?= ${VARBASE}/run/saslauthd BUILD_DEFS+= SASLSOCKETDIR FILES_SUBST+= SASLSOCKETDIR=${SASLSOCKETDIR} CONFIGURE_ARGS+= --with-saslauthd="${SASLSOCKETDIR}" |