diff options
| author | Christoph Bünte | 2014-06-04 14:44:26 +0200 |
|---|---|---|
| committer | Mike McQuaid | 2014-06-04 15:19:16 +0100 |
| commit | 6ec8c913848030e22952fd3c288fc92ab6535ab1 (patch) | |
| tree | 1cca8cf1ab527313dee317915eef7194cc88fb9d | |
| parent | d32641ed532bab17d9a59bec0a225d45b0e49769 (diff) | |
| download | homebrew-6ec8c913848030e22952fd3c288fc92ab6535ab1.tar.bz2 | |
osm2pgsql: add missing dependencies.
| -rw-r--r-- | Library/Formula/osm2pgsql.rb | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Library/Formula/osm2pgsql.rb b/Library/Formula/osm2pgsql.rb index a14c3ea81..d7b6636d0 100644 --- a/Library/Formula/osm2pgsql.rb +++ b/Library/Formula/osm2pgsql.rb @@ -14,7 +14,11 @@ class Osm2pgsql < Formula depends_on "protobuf-c" => :optional def install - args = ["--with-proj=#{Formula["proj"].opt_prefix}"] + args = [ + "--with-proj=#{Formula["proj"].opt_prefix}", + "--with-zlib=/usr", + "--with-bzip2=/usr" + ] if build.with? "protobuf-c" args << "--with-protobuf-c=#{Formula["protobuf-c"].opt_prefix}" end |
