diff options
author | dinoex <dinoex@FreeBSD.org> | 2005-10-16 10:16:02 +0800 |
---|---|---|
committer | dinoex <dinoex@FreeBSD.org> | 2005-10-16 10:16:02 +0800 |
commit | 7a214e26397611e8229a717c8216606bff98f40d (patch) | |
tree | d619b2bfbfe435c56187022aeaa7d25eded8a3ef | |
parent | a1603604908e442af73d4b014e490934fb41f401 (diff) | |
download | freebsd-ports-gnome-7a214e26397611e8229a717c8216606bff98f40d.tar.gz freebsd-ports-gnome-7a214e26397611e8229a717c8216606bff98f40d.tar.zst freebsd-ports-gnome-7a214e26397611e8229a717c8216606bff98f40d.zip |
- new option WITHOUT_OPENSSL_SSE2
http://www.openssl.org/docs/crypto/OPENSSL_ia32cap.html
Suggested by: Grant Swenson
-rw-r--r-- | security/openssl/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/security/openssl/Makefile b/security/openssl/Makefile index 142ceaf4f064..c5382960dde0 100644 --- a/security/openssl/Makefile +++ b/security/openssl/Makefile @@ -899,6 +899,10 @@ MAKE_ARGS+= WHOLE_ARCHIVE_FLAG=-Bforcearchive MAKE_ARGS+= WHOLE_ARCHIVE_FLAG=--whole-archive .endif +# disable runtime SSE2 detection +.if defined(WITHOUT_OPENSSL_SSE2) +EXTRACONFIGURE+= no-sse2 +.endif EXTRACONFIGURE+= no-fips .if defined(NOSHARED) PLIST_SUB+= SHARED="@comment " |