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/embryo.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/embryo.rb')
| -rw-r--r-- | Library/Formula/embryo.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Library/Formula/embryo.rb b/Library/Formula/embryo.rb index 8ed0c31f4..2f34ddb0a 100644 --- a/Library/Formula/embryo.rb +++ b/Library/Formula/embryo.rb @@ -9,6 +9,11 @@ class Embryo < Formula depends_on 'pkg-config' => :build depends_on 'eina' + if ARGV.build_head? and MacOS.xcode_version >= "4.3" + depends_on "automake" => :build + depends_on "libtool" => :build + end + def install system "./autogen.sh" if ARGV.build_head? system "./configure", "--disable-dependency-tracking", |
