diff options
| author | Max Howell | 2012-08-21 22:07:35 -0400 |
|---|---|---|
| committer | Max Howell | 2012-08-21 22:07:35 -0400 |
| commit | baf70e12ecd4899cdcc05561d4dc5664f2049d8d (patch) | |
| tree | 220da86e4006d431fc003f6056e199277f09a7f8 | |
| parent | d73a1502848808c764023ef1f8d7af514cfef5b9 (diff) | |
| download | homebrew-baf70e12ecd4899cdcc05561d4dc5664f2049d8d.tar.bz2 | |
Justniffer fails to build with clang 421
Fixes #14360.
| -rw-r--r-- | Library/Formula/justniffer.rb | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Library/Formula/justniffer.rb b/Library/Formula/justniffer.rb index 7c695539d..beb86790a 100644 --- a/Library/Formula/justniffer.rb +++ b/Library/Formula/justniffer.rb @@ -7,6 +7,14 @@ class Justniffer < Formula depends_on "boost" + fails_with :clang do + build 421 + cause <<-EOS.undent + Symbols declared inline in headers are then expected by the linker. + Probably declaring them static would fix it properly. + EOS + end + # Patch lib/libnids-1.21_patched/configure.gnu so that CFLAGS and/or # CXXFLAGS with multiple words doesn't cause an error -- e.g.: # |
