diff options
| author | Misty De Meo | 2014-02-24 14:56:53 -0800 | 
|---|---|---|
| committer | Misty De Meo | 2014-02-24 14:59:52 -0800 | 
| commit | 337b4e9d87feec8e3c072e983c19079f7cc2f87e (patch) | |
| tree | 6590b751d65703da2727bbba5acd7d2691986c68 | |
| parent | 75af9584121c7b30be734a03c3c2596b947b8fa3 (diff) | |
| download | homebrew-337b4e9d87feec8e3c072e983c19079f7cc2f87e.tar.bz2 | |
ginac: fix compilation with libc++
Fixes #26030.
| -rw-r--r-- | Library/Formula/ginac.rb | 5 | 
1 files changed, 5 insertions, 0 deletions
| diff --git a/Library/Formula/ginac.rb b/Library/Formula/ginac.rb index 730b004c5..d7351578a 100644 --- a/Library/Formula/ginac.rb +++ b/Library/Formula/ginac.rb @@ -9,6 +9,11 @@ class Ginac < Formula    depends_on 'cln'    depends_on 'readline' +  # Fixes compilation with libc++; already applied upstream +  def patches +    "http://www.ginac.de/ginac.git?p=ginac.git;a=commitdiff_plain;h=5bf87cea66bb2071222c2910ed68c2649a98906c" +  end +    def install      system "./configure", "--disable-dependency-tracking",                            "--prefix=#{prefix}" | 
