gnu: gdal: Enable ODS format driver.
* gnu/packages/geo.scm (gdal)[inputs]: Add expat. [arguments]: Add --with-expat to #:configure-flags.
This commit is contained in:
parent
1cbe7a3ed6
commit
0f05435682
1 changed files with 3 additions and 1 deletions
|
@ -608,6 +608,7 @@ development.")
|
||||||
(with "--with-libtiff" "libtiff")
|
(with "--with-libtiff" "libtiff")
|
||||||
(with "--with-geotiff" "libgeotiff")
|
(with "--with-geotiff" "libgeotiff")
|
||||||
(with "--with-libz" "zlib")
|
(with "--with-libz" "zlib")
|
||||||
|
(with "--with-expat" "expat")
|
||||||
"--with-pcre"))
|
"--with-pcre"))
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
|
@ -616,7 +617,8 @@ development.")
|
||||||
(substitute* "frmts/mrf/mrf_band.cpp"
|
(substitute* "frmts/mrf/mrf_band.cpp"
|
||||||
(("\"../zlib/zlib.h\"") "<zlib.h>")))))))
|
(("\"../zlib/zlib.h\"") "<zlib.h>")))))))
|
||||||
(inputs
|
(inputs
|
||||||
`(("freexl" ,freexl)
|
`(("expat" ,expat)
|
||||||
|
("freexl" ,freexl)
|
||||||
("geos" ,geos)
|
("geos" ,geos)
|
||||||
("giflib" ,giflib)
|
("giflib" ,giflib)
|
||||||
("json-c" ,json-c)
|
("json-c" ,json-c)
|
||||||
|
|
Reference in a new issue