aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2013-11-24 11:45:07 -0600
committerJack Nagel2013-11-24 11:45:08 -0600
commit931e2132bb463fbeaab73b3fa10284b9129cc010 (patch)
tree70778a88cbcb6994aaf0233a758e439426a65084 /Library
parent8da00e223a356a47e2431ac0b54a02f23401024e (diff)
downloadhomebrew-931e2132bb463fbeaab73b3fa10284b9129cc010.tar.bz2
jigdo: fix build on 10.9
Fixes #24626.
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/jigdo.rb8
1 files changed, 7 insertions, 1 deletions
diff --git a/Library/Formula/jigdo.rb b/Library/Formula/jigdo.rb
index 5ee51eb75..7a587def5 100644
--- a/Library/Formula/jigdo.rb
+++ b/Library/Formula/jigdo.rb
@@ -9,8 +9,14 @@ class Jigdo < Formula
depends_on 'berkeley-db'
depends_on 'gtk+'
+ # Use MacPorts patch for compilation on 10.9; this software is no longer developed.
+ def patches
+ { :p0 => "http://trac.macports.org/export/113020/trunk/dports/net/jigdo/files/patch-src-compat.hh.diff" }
+ end
+
def install
- system "./configure", "--disable-debug", "--disable-dependency-tracking",
+ system "./configure", "--disable-debug",
+ "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--mandir=#{man}"
system "make"