diff options
author | Hajimu UMEMOTO <ume@FreeBSD.org> | 2002-09-13 23:47:19 +0800 |
---|---|---|
committer | Hajimu UMEMOTO <ume@FreeBSD.org> | 2002-09-13 23:47:19 +0800 |
commit | 4e4242467ce3711081dbb62462c82c44467d838d (patch) | |
tree | 9fae19b03d665889eb37c09225775a0c552c2539 /security | |
parent | 868a6db3107bfa22d9547351e9b5145e28eaabb3 (diff) | |
download | freebsd-ports-gnome-4e4242467ce3711081dbb62462c82c44467d838d.tar.gz freebsd-ports-gnome-4e4242467ce3711081dbb62462c82c44467d838d.tar.zst freebsd-ports-gnome-4e4242467ce3711081dbb62462c82c44467d838d.zip |
Add option WITHOUT_OTP which disable OTP authentication.
Requested by: Marc G. Fournier <scrappy@hub.org>
Diffstat (limited to 'security')
-rw-r--r-- | security/cyrus-sasl2/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/security/cyrus-sasl2/Makefile b/security/cyrus-sasl2/Makefile index 05620cada719..a098be6b4935 100644 --- a/security/cyrus-sasl2/Makefile +++ b/security/cyrus-sasl2/Makefile @@ -58,6 +58,10 @@ SCRIPTS_ENV= WRKDIRPREFIX="${WRKDIRPREFIX}" \ REALCURDIR="${.CURDIR}" \ WITH_DB3="${WITH_DB3}" +.if defined(WITHOUT_OTP) +CONFIGURE_ARGS+= --disable-otp +.endif + .if defined(KRB5_HOME) && exists(${KRB5_HOME}) CONFIGURE_ARGS+= --enable-gssapi=${KRB5_HOME} .elif defined(HEIMDAL_HOME) && exists(${HEIMDAL_HOME}) |