diff options
| author | Misty De Meo | 2012-05-21 18:03:34 -0500 |
|---|---|---|
| committer | Misty De Meo | 2012-05-21 18:12:43 -0500 |
| commit | 49f51a4d00655fb8e66903b0f6c39a3b046083f8 (patch) | |
| tree | b8b1c10c82fc1661635c31a60ad3344f0a9e4d7b /Library/Formula | |
| parent | 87afdd00e4b7707f4bf028cb43d6554ea7c6312b (diff) | |
| download | homebrew-49f51a4d00655fb8e66903b0f6c39a3b046083f8.tar.bz2 | |
devil: fails with clang
Fixes #12353.
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/devil.rb | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Library/Formula/devil.rb b/Library/Formula/devil.rb index baadc8048..b55f29267 100644 --- a/Library/Formula/devil.rb +++ b/Library/Formula/devil.rb @@ -10,6 +10,14 @@ class Devil < Formula depends_on 'little-cms' depends_on 'jasper' + # see http://sourceforge.net/tracker/?func=detail&aid=3404133&group_id=4470&atid=104470 + # also, even with -std=gnu99 removed from the configure script, + # devil fails to build with clang++ while compiling il_exr.cpp + fails_with :clang do + build 318 + cause "invalid -std=gnu99 flag while building C++" + end + # fix compilation issue for iluc.c def patches; DATA; end |
