aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorilovezfs2016-10-30 10:21:18 -0700
committerGitHub2016-10-30 10:21:18 -0700
commit90e5de91150e8c4c09929213bd6994fc5d4b5772 (patch)
tree3c8764784375b7880d1f1b0505534e80157eb267 /Library
parentec527ff982e0dbaa7d7089bd8c5e209fb94e210a (diff)
parente26750e11290f6b299fcbf8419ac051a985e0e1a (diff)
downloadbrew-90e5de91150e8c4c09929213bd6994fc5d4b5772.tar.bz2
Merge pull request #1395 from ilovezfs/superenv-mark-timingsafe_bcmp-weak-on-10.11
superenv: treat timingsafe_bcmp as weak on 10.11
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/extend/os/mac/extend/ENV/super.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/extend/os/mac/extend/ENV/super.rb b/Library/Homebrew/extend/os/mac/extend/ENV/super.rb
index 88e2b0a29..5f4a3e4aa 100644
--- a/Library/Homebrew/extend/os/mac/extend/ENV/super.rb
+++ b/Library/Homebrew/extend/os/mac/extend/ENV/super.rb
@@ -98,7 +98,7 @@ module Superenv
# can't reliably figure this out with Xcode 8 on its own yet.
if MacOS.version == "10.11" && MacOS::Xcode.installed? && MacOS::Xcode.version >= "8.0"
%w[basename_r clock_getres clock_gettime clock_settime dirname_r
- getentropy mkostemp mkostemps].each do |s|
+ getentropy mkostemp mkostemps timingsafe_bcmp].each do |s|
ENV["ac_cv_func_#{s}"] = "no"
end