diff options
author | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2009-05-30 15:02:39 +0000 |
---|---|---|
committer | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2009-05-30 15:02:39 +0000 |
commit | 245b2d94e3079c574f059aec3cc3f2d07de00f00 (patch) | |
tree | eb5de17afdd66e344478f90d8bb3fea2a47a1699 /security/scrypt | |
parent | 1576922a9b07ebee9f4a4f45f3a4e0599ea196a9 (diff) | |
download | ports-245b2d94e3079c574f059aec3cc3f2d07de00f00.tar.gz ports-245b2d94e3079c574f059aec3cc3f2d07de00f00.zip |
Notes
Diffstat (limited to 'security/scrypt')
-rw-r--r-- | security/scrypt/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/security/scrypt/Makefile b/security/scrypt/Makefile index a9d19ebf85c3..690eccc6cc73 100644 --- a/security/scrypt/Makefile +++ b/security/scrypt/Makefile @@ -21,4 +21,14 @@ PLIST_FILES= bin/scrypt MAN1= scrypt.1 +OPTIONS= SSE2 "Use SSE2-optimized code" Off + +.include <bsd.port.options.mk> + +.if defined(WITH_SSE2) +CONFIGURE_ARGS+= --enable-sse2 +.else +CONFIGURE_ARGS+= --disable-sse2 +.endif + .include <bsd.port.mk> |