aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorJon Roberts2013-04-08 17:04:11 -0500
committerJack Nagel2013-04-13 20:21:41 -0500
commit604f459469d3facca0c596131269decbbaa136a2 (patch)
treef6467192d31058b286a578f19d8c4994f4d65f88 /Library/Formula
parent884a4aa812fb24fbb55e08bae4c68cd71c0fa551 (diff)
downloadhomebrew-604f459469d3facca0c596131269decbbaa136a2.tar.bz2
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 <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/openssl.rb6
1 files changed, 5 insertions, 1 deletions
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