aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorRyan Baumann2014-12-16 14:23:03 -0500
committerJack Nagel2014-12-16 15:26:50 -0500
commitb851b33fd818feb49d27af05eb0be2ca00477fd3 (patch)
tree7743f8f8f9de5e4cf04b761fbc614276dbbb871b /Library
parentb4ef49f57cd44c324e0feffdfc2373cca6adecf1 (diff)
downloadhomebrew-b851b33fd818feb49d27af05eb0be2ca00477fd3.tar.bz2
google-perftools 2.3
Closes #35035. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/google-perftools.rb20
1 files changed, 2 insertions, 18 deletions
diff --git a/Library/Formula/google-perftools.rb b/Library/Formula/google-perftools.rb
index e12a5ff86..eff24f7e7 100644
--- a/Library/Formula/google-perftools.rb
+++ b/Library/Formula/google-perftools.rb
@@ -2,8 +2,8 @@ require 'formula'
class GooglePerftools < Formula
homepage 'http://code.google.com/p/gperftools/'
- url "https://googledrive.com/host/0B6NtGsLhIcf7MWxMMF9JdTN3UVk/gperftools-2.2.1.tar.gz"
- sha1 "f505eb467bc5b55ea3a27e3386a70331bf6e38a0"
+ url "https://googledrive.com/host/0B6NtGsLhIcf7MWxMMF9JdTN3UVk/gperftools-2.3.tar.gz"
+ sha1 "3f7d48a8dfd519f744d94cd2dc6a7875e456e632"
bottle do
cellar :any
@@ -17,11 +17,6 @@ class GooglePerftools < Formula
cause "Segfault during linking"
end
- # * DATA is incorporated upstream, remove on next version update
- # * configure patch removes __thread support, which breaks tcmalloc since it internally calls malloc as well
- # upstream: https://code.google.com/p/gperftools/issues/detail?id=573
- patch :DATA
-
def install
ENV.append_to_cflags '-D_XOPEN_SOURCE'
system "./configure", "--disable-dependency-tracking",
@@ -30,14 +25,3 @@ class GooglePerftools < Formula
system "make install"
end
end
-
-__END__
---- a/src/static_vars.cc
-+++ b/src/static_vars.cc
-@@ -37,6 +37,7 @@
- #include "common.h"
- #include "sampler.h" // for Sampler
- #include "base/googleinit.h"
-+#include <pthread.h>
-
- namespace tcmalloc {