diff options
| author | Brett Koonce | 2014-04-10 11:22:44 -0500 |
|---|---|---|
| committer | Brett Koonce | 2014-04-10 11:56:27 -0500 |
| commit | 528fed882a51949ab8b91cf13b552f0ad8849988 (patch) | |
| tree | a1fe583d206dbacbc5c78f173127be1654e195ca /Library/Formula | |
| parent | eccc96babfa4cf40fb40718edf2693deda263614 (diff) | |
| download | homebrew-528fed882a51949ab8b91cf13b552f0ad8849988.tar.bz2 | |
gle: fix hashmap namespace collision
Closes #28293.
Patch from macports: https://trac.macports.org/ticket/41760
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/gle.rb | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Library/Formula/gle.rb b/Library/Formula/gle.rb index 294f3d884..0c16f0bcd 100644 --- a/Library/Formula/gle.rb +++ b/Library/Formula/gle.rb @@ -10,6 +10,14 @@ class Gle < Formula depends_on :x11 depends_on 'jpeg' => :optional depends_on 'libtiff' => :optional + depends_on 'cairo' => :build + + # fix namespace issues causing compilation errors + # https://trac.macports.org/ticket/41760 + patch :p0 do + url "https://trac.macports.org/raw-attachment/ticket/41760/patch-hash-map.diff" + sha1 "fafa7654f69ace53835b8e7953e715384e16da91" + end def install system "./configure", "--prefix=#{prefix}", |
