diff options
| author | Jack Nagel | 2012-02-07 20:05:18 -0600 | 
|---|---|---|
| committer | Jack Nagel | 2012-02-07 20:06:53 -0600 | 
| commit | 84da6396a7284be71036c27513a450bbea06e54c (patch) | |
| tree | 31e59d81f8ee568298874ff0c17e61bf1b735b67 /Library/Formula/msgpack.rb | |
| parent | bc4848e9b0b1373eb6f554bb8c71f8fd5568279c (diff) | |
| download | homebrew-84da6396a7284be71036c27513a450bbea06e54c.tar.bz2 | |
msgpack: fails with LLVM on Lion
msgpack fails to compile with even the latest LLVM, at least on Lion. I
can build with LLVM on Snow Leopard.
For reference, MacPorts forces clang on this one.
Closes #10006.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula/msgpack.rb')
| -rw-r--r-- | Library/Formula/msgpack.rb | 3 | 
1 files changed, 3 insertions, 0 deletions
| diff --git a/Library/Formula/msgpack.rb b/Library/Formula/msgpack.rb index df0b3c4c9..264ef2d61 100644 --- a/Library/Formula/msgpack.rb +++ b/Library/Formula/msgpack.rb @@ -5,6 +5,9 @@ class Msgpack < Formula    url 'http://msgpack.org/releases/cpp/msgpack-0.5.7.tar.gz'    sha256 '7c203265cf14a4723820e0fc7ac14bf4bad5578f7bc525e9835c70cd36e7d1b8' +  # fails with the latest LLVM, but only on Lion? +  fails_with_llvm "Compilation fails" if MacOS.lion? +    def install      system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"      system "make install" | 
