Skip to content
This repository has been archived by the owner on Jul 4, 2023. It is now read-only.

Commit

Permalink
gdal: Re-enable Poppler support
Browse files Browse the repository at this point in the history
Currently, GDAL 1.9.2 can build against Poppler 0.20.5 so Poppler support is
not re-enabled for the `--complete` option.

Reverts cfad309.
  • Loading branch information
Sharpie committed Nov 2, 2012
1 parent 8750fbb commit 7ff38f5
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions Library/Formula/gdal.rb
Expand Up @@ -81,6 +81,7 @@ def patches; DATA; end # Fix a bug in LibDAP detection: http://trac.osgeo.org/gd

# Other libraries
depends_on "xz" # get liblzma compression algorithm library from XZutils
depends_on "poppler"
end

def get_configure_args
Expand Down Expand Up @@ -120,11 +121,7 @@ def get_configure_args
# Should be installed separately after GRASS installation using the
# official GDAL GRASS plugin.
"--without-grass",
"--without-libgrass",

# Poppler explicitly disabled. GDAL currently can't compile against
# Poppler 0.20.0.
"--without-poppler"
"--without-libgrass"
]

# Optional library support for additional formats.
Expand All @@ -138,7 +135,8 @@ def get_configure_args
"--with-epsilon=#{HOMEBREW_PREFIX}",
"--with-odbc=#{HOMEBREW_PREFIX}",
"--with-xerces=#{HOMEBREW_PREFIX}",
"--with-dods-root=#{HOMEBREW_PREFIX}"
"--with-dods-root=#{HOMEBREW_PREFIX}",
"--with-poppler=#{HOMEBREW_PREFIX}"
]
else
args.concat [
Expand All @@ -152,6 +150,7 @@ def get_configure_args
"--without-xerces",
"--without-epsilon",
"--without-libkml",
"--without-poppler",
"--without-podofo",
"--with-dods-root=no",

Expand Down

0 comments on commit 7ff38f5

Please sign in to comment.