aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
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