diff options
author | jlam <jlam@pkgsrc.org> | 2004-07-06 22:38:32 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2004-07-06 22:38:32 +0000 |
commit | e9f1f50552a486541b7e885350cf78419518b838 (patch) | |
tree | cb43dd9fb6d53b4829df179499bf155783feff6d /security/cyrus-sasl2 | |
parent | ec064348e011095e033603e9d2e78ba802fa2192 (diff) | |
download | pkgsrc-e9f1f50552a486541b7e885350cf78419518b838.tar.gz |
Refer to ${VARBASE} instead of /var for the location for local state
information.
Diffstat (limited to 'security/cyrus-sasl2')
-rw-r--r-- | security/cyrus-sasl2/Makefile | 4 | ||||
-rw-r--r-- | security/cyrus-sasl2/Makefile.common | 4 |
2 files changed, 4 insertions, 4 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} |