diff options
| author | Jon Roberts | 2013-04-08 17:04:11 -0500 |
|---|---|---|
| committer | Jack Nagel | 2013-04-13 20:21:41 -0500 |
| commit | 604f459469d3facca0c596131269decbbaa136a2 (patch) | |
| tree | f6467192d31058b286a578f19d8c4994f4d65f88 /Library | |
| parent | 884a4aa812fb24fbb55e08bae4c68cd71c0fa551 (diff) | |
| download | homebrew-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')
| -rw-r--r-- | Library/Formula/openssl.rb | 6 |
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 |
