diff options
| author | Max Howell | 2012-02-28 15:39:22 +0000 | 
|---|---|---|
| committer | Max Howell | 2012-02-28 15:40:59 +0000 | 
| commit | 1eea2327405c9e00b11130955b84aa6c26042c78 (patch) | |
| tree | f49ac7bdabdb3b634b55c2c4b1a0ad290e981d77 /Library/Formula/libdvdread.rb | |
| parent | 753dde9c2cf66848183f3f787f8501dbf5a7e28f (diff) | |
| download | homebrew-1eea2327405c9e00b11130955b84aa6c26042c78.tar.bz2 | |
These now depend on automake for Xcode >= 4.3
Fixes #10559.
Also added missing deps for osm2pgsql.
Removed some ACLOCAL_FLAGS stuff as in theory this is not set in ENV.rb. Would like to see if it causes trouble. Should just work now.
Diffstat (limited to 'Library/Formula/libdvdread.rb')
| -rw-r--r-- | Library/Formula/libdvdread.rb | 6 | 
1 files changed, 6 insertions, 0 deletions
diff --git a/Library/Formula/libdvdread.rb b/Library/Formula/libdvdread.rb index 9eebf5362..7f406e5b3 100644 --- a/Library/Formula/libdvdread.rb +++ b/Library/Formula/libdvdread.rb @@ -8,6 +8,12 @@ class Libdvdread < Formula    depends_on 'libdvdcss' => :optional +  if MacOS.xcode_version >= "4.3" +    # when and if the tarball provides configure, remove autogen.sh and these deps +    depends_on "automake" => :build +    depends_on "libtool" => :build +  end +    def install      if Formula.factory("libdvdcss").installed?        ENV.append "CFLAGS", "-DHAVE_DVDCSS_DVDCSS_H"  | 
