diff options
author | ume <ume@FreeBSD.org> | 2003-08-11 19:48:21 +0000 |
---|---|---|
committer | ume <ume@FreeBSD.org> | 2003-08-11 19:48:21 +0000 |
commit | e86b5e286cf2532975f1bda5626ef6b5ccfc96e6 (patch) | |
tree | 0e0e53a486debd0ebf25dffa95ab38c6c22aae58 /security | |
parent | a499d7f62cac765c3304956af06a1e53ec055df6 (diff) | |
download | FreeBSD-ports-e86b5e286cf2532975f1bda5626ef6b5ccfc96e6.zip FreeBSD-ports-e86b5e286cf2532975f1bda5626ef6b5ccfc96e6.tar.gz |
Add WITH_DEV_URANDOM option to use /dev/urandom instead of
/dev/random.
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 f2b3c5c..0984289 100644 --- a/security/cyrus-sasl2/Makefile +++ b/security/cyrus-sasl2/Makefile @@ -86,6 +86,10 @@ CONFIGURE_ARGS+=--with-mysql=${PREFIX} MYSQL= "@comment " .endif +.if defined(WITH_DEV_URANDOM) +CONFIGURE_ARGS+=--with-devrandom=/dev/urandom +.endif + .if defined(WITHOUT_OTP) CONFIGURE_ARGS+=--disable-otp OTP= "@comment " |