diff options
| author | Felix Bùˆnemann | 2014-02-06 01:17:56 +0100 |
|---|---|---|
| committer | Brett Koonce | 2014-02-05 19:49:42 -0600 |
| commit | 7034bc4629bed95a22ceaa7cdb544cac65423e0f (patch) | |
| tree | 3238b46bab74d3fbb50975e3021f60498a089ffb /Library/Formula | |
| parent | ca82698586370bbd0828e43485a30e9bd761fc07 (diff) | |
| download | homebrew-7034bc4629bed95a22ceaa7cdb544cac65423e0f.tar.bz2 | |
pg_top 3.7.0
Upgraded to 3.7.0 and added a config.h fix to fix compile errors on
Mavericks caused by strlcpy being a macro now.
Closes #24863.
Closes #26450.
Signed-off-by: Brett Koonce <koonce@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/pg_top.rb | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Library/Formula/pg_top.rb b/Library/Formula/pg_top.rb index fb1ddebb5..ee9347eb9 100644 --- a/Library/Formula/pg_top.rb +++ b/Library/Formula/pg_top.rb @@ -2,14 +2,15 @@ require 'formula' class PgTop < Formula homepage 'http://ptop.projects.postgresql.org/' - url 'http://pgfoundry.org/frs/download.php/1781/pg_top-3.6.2.tar.gz' - sha1 'c165a5b09ab961bf98892db94b307e31ac0cf832' + url 'http://pgfoundry.org/frs/download.php/3504/pg_top-3.7.0.tar.bz2' + sha1 '377518d95d65011b984d23fd87fb3cc91aaa1afd' depends_on :postgresql def install system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}" + system "echo '#define HAVE_DECL_STRLCPY 1' >> config.h" if MacOS.version >= :mavericks system "make install" end end |
