From 604f459469d3facca0c596131269decbbaa136a2 Mon Sep 17 00:00:00 2001 From: Jon Roberts Date: Mon, 8 Apr 2013 17:04:11 -0500 Subject: OpenSSL: enable ec_nistp_64_gcc_128 option on 64-bit machines This is supposed to increase speed dramatically... Closes #19064. Signed-off-by: Jack Nagel --- Library/Formula/openssl.rb | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'Library') diff --git a/Library/Formula/openssl.rb b/Library/Formula/openssl.rb index 456057566..6eea7cd99 100644 --- a/Library/Formula/openssl.rb +++ b/Library/Formula/openssl.rb @@ -16,7 +16,11 @@ class Openssl < Formula shared ] - args << (MacOS.prefer_64_bit? ? "darwin64-x86_64-cc" : "darwin-i386-cc") + if MacOS.prefer_64_bit? + args << "darwin64-x86_64-cc" << "enable-ec_nistp_64_gcc_128" + else + args << "darwin-i386-cc" + end system "perl", *args -- cgit v1.2.3