diff options
| author | David Höppner | 2010-08-30 15:08:26 +0200 |
|---|---|---|
| committer | David Höppner | 2010-08-30 15:08:26 +0200 |
| commit | a32fe108fc70da4a2201364e1940c12c5b424506 (patch) | |
| tree | b501d575ec119bc5717e11e4fd36ad6b6c7af08a | |
| parent | 46dc691bd9b2469e2314b8cb365f6bab1eb0024d (diff) | |
| download | homebrew-a32fe108fc70da4a2201364e1940c12c5b424506.tar.bz2 | |
sox: fixes #2312
mp3.c:60: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘attribute’ before ‘const’
mp3.c:60: static mad_timer_t const mad_timer_zero_stub = {0, 0};
uses mad data type outside ifdef MAD, should be fixed upstream
| -rw-r--r-- | Library/Formula/sox.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Library/Formula/sox.rb b/Library/Formula/sox.rb index 2b0a51d8f..fe610b61f 100644 --- a/Library/Formula/sox.rb +++ b/Library/Formula/sox.rb @@ -9,6 +9,7 @@ class Sox <Formula depends_on 'libvorbis' => :optional depends_on 'flac' => :optional depends_on 'libao' => :optional + depends_on 'mad' # see commit message def install system "./configure", "--disable-debug", "--disable-dependency-tracking", |
