diff options
| author | Jack Nagel | 2011-09-04 22:12:18 -0500 |
|---|---|---|
| committer | Jack Nagel | 2011-09-04 22:41:54 -0500 |
| commit | b4f5366fab5793a451f4308ec711c9f80f7c0146 (patch) | |
| tree | d7352f13c7faad5c18f909663d10ee6802480bbf /Library | |
| parent | 0512bc868a16f9b56ac0ced5d9933e7a515e5268 (diff) | |
| download | homebrew-b4f5366fab5793a451f4308ec711c9f80f7c0146.tar.bz2 | |
stklos: mark as fails_with_llvm, update to 1.01
Should fix #7423.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/stklos.rb | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/Library/Formula/stklos.rb b/Library/Formula/stklos.rb index 1ebe3b52e..de03b1c8d 100644 --- a/Library/Formula/stklos.rb +++ b/Library/Formula/stklos.rb @@ -1,15 +1,19 @@ require 'formula' class Stklos < Formula - url 'http://www.stklos.net/download/stklos-1.00.tar.gz' + url 'http://www.stklos.net/download/stklos-1.01.tar.gz' homepage 'http://www.stklos.net/' - md5 '3fd4809205871b65882be9b9f7e17090' + md5 '2c370627c3abd07c30949b2ee7d3d987' depends_on 'gmp' depends_on 'pcre' + # it fails with LLVM while building its internal bdw-gc, + # for the same reason as bdw-gc itself. + fails_with_llvm "LLVM gives an unsupported inline asm error." + def install - system "./configure", "--disable-debug", "--disable-dependency-tracking", + system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}" system "make install" end |
