Skip to content

Commit

Permalink
GDAL: Temporarily disable Poppler
Browse files Browse the repository at this point in the history
GDAL can't compile against Poppler 0.20.0 so it is explicitly disabled for the
time being in order to prevent compilation errors. This commit can be reverted
once a fix goes in upstream.
  • Loading branch information
Sharpie committed May 24, 2012
1 parent 8fcfdee commit cfad309
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Library/Formula/gdal.rb
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@ def patches; DATA; end # Fix a bug in LibDAP detection.
depends_on "unixodbc" # OS X version is not complete enough
depends_on "libspatialite"
depends_on "xerces-c"
depends_on "poppler"
depends_on "freexl"

# Other libraries
Expand Down Expand Up @@ -124,6 +123,10 @@ def get_configure_args
# official GDAL GRASS plugin.
"--without-grass",
"--without-libgrass"

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

# Optional library support for additional formats.
Expand All @@ -138,7 +141,6 @@ def get_configure_args
"--with-odbc=#{HOMEBREW_PREFIX}",
"--with-spatialite=#{HOMEBREW_PREFIX}",
"--with-xerces=#{HOMEBREW_PREFIX}",
"--with-poppler=#{HOMEBREW_PREFIX}",
"--with-freexl=#{HOMEBREW_PREFIX}",
"--with-dods-root=#{HOMEBREW_PREFIX}"
]
Expand All @@ -155,7 +157,6 @@ def get_configure_args
"--without-epsilon",
"--without-spatialite",
"--without-libkml",
"--without-poppler",
"--without-podofo",
"--with-freexl=no",
"--with-dods-root=no",
Expand Down

0 comments on commit cfad309

Please sign in to comment.