diff options
| author | Jack Nagel | 2014-11-13 22:22:36 -0600 |
|---|---|---|
| committer | Jack Nagel | 2014-11-13 22:33:46 -0600 |
| commit | 0481609642f6516e96ca14863e58657d8206c309 (patch) | |
| tree | a86cabe4abab6e433d164686f7087e5145b45113 | |
| parent | 2432e73a1ca93e115490c1064ab670901c197260 (diff) | |
| download | homebrew-0481609642f6516e96ca14863e58657d8206c309.tar.bz2 | |
gdal: add libxml2 dependency
For consistency with downstream libxml2 deps.
Fixes #33993.
Closes #34125.
| -rw-r--r-- | Library/Formula/gdal.rb | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/Library/Formula/gdal.rb b/Library/Formula/gdal.rb index cb3a5184c..763acdefc 100644 --- a/Library/Formula/gdal.rb +++ b/Library/Formula/gdal.rb @@ -4,13 +4,9 @@ class Gdal < Formula homepage 'http://www.gdal.org/' url "http://download.osgeo.org/gdal/1.11.1/gdal-1.11.1.tar.gz" sha1 "e2c67481932ec9fb6ec3c0faadc004f715c4eef4" - revision 1 + revision 2 bottle do - revision 2 - sha1 "bc2a281841b0b5179ceeb352a6c1c63e468903cc" => :yosemite - sha1 "cff8c3c89558603d579255e9a8fd7b00f4c99f34" => :mavericks - sha1 "93908f8c4570af931a9096aa73a7c2b03b692d33" => :mountain_lion end head do @@ -61,6 +57,7 @@ class Gdal < Formula depends_on "cfitsio" depends_on "epsilon" depends_on "libdap" + depends_on "libxml2" # Vector libraries depends_on "unixodbc" # OS X version is not complete enough @@ -259,8 +256,6 @@ class Gdal < Formula sqlite = Formula["sqlite"] ENV.append 'LDFLAGS', "-L#{sqlite.opt_lib} -lsqlite3" ENV.append 'CFLAGS', "-I#{sqlite.opt_include}" - # Needed by libdap - ENV.libxml2 if build.include? 'complete' # Reset ARCHFLAGS to match how we build. ENV['ARCHFLAGS'] = "-arch #{MacOS.preferred_arch}" |
