diff options
author | Hajimu UMEMOTO <ume@FreeBSD.org> | 2004-05-12 16:12:11 +0000 |
---|---|---|
committer | Hajimu UMEMOTO <ume@FreeBSD.org> | 2004-05-12 16:12:11 +0000 |
commit | f6d66d8cb6ca08c97dfaee3eadca773f4dd006f1 (patch) | |
tree | 9e3391f88912ef27bf6a715f4be603cfd49bcf4f /security/cyrus-sasl2 | |
parent | 895a5f3714bb39aadf2a562dd89b9798ae2c3b52 (diff) |
make the default location of running directory of saslauthd
customizable by SASLAUTHD_RUNPATH variable.
PR: ports/66521
Notes
Notes:
svn path=/head/; revision=109014
Diffstat (limited to 'security/cyrus-sasl2')
-rw-r--r-- | security/cyrus-sasl2/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/security/cyrus-sasl2/Makefile b/security/cyrus-sasl2/Makefile index bbbf4950c666..338bd66b188f 100644 --- a/security/cyrus-sasl2/Makefile +++ b/security/cyrus-sasl2/Makefile @@ -52,7 +52,7 @@ CONFIGURE_ARGS= --sysconfdir=${PREFIX}/etc \ --enable-auth-sasldb \ --with-openssl=${OPENSSLBASE} \ --with-rc4=openssl \ - --with-saslauthd + --with-saslauthd=${SASLAUTHD_RUNPATH} .if defined(WITH_BDB_VER) .if ${WITH_BDB_VER} == 3 @@ -182,6 +182,8 @@ CONFIGURE_ENV+= LOCALBASE=${LOCALBASE} \ OPENSSLLIB=${OPENSSLLIB} \ LDFLAGS=${LDFLAGS} +SASLAUTHD_RUNPATH?= /var/state/saslauthd + CYRUS_USER?= cyrus CYRUS_GROUP?= cyrus |