diff options
author | Amy Liffey <amynka@gentoo.org> | 2018-08-04 13:03:05 +0100 |
---|---|---|
committer | Amy Liffey <amynka@gentoo.org> | 2018-08-04 13:03:40 +0100 |
commit | 24b142ee7181dd03692bd636d3ffc2e787dc5202 (patch) | |
tree | d180147d54123956d9b7f2bd6b2054fe26b1b4c0 | |
parent | b92d949399325efad02d71799c27da7d655c6834 (diff) | |
download | gentoo-24b142ee7181dd03692bd636d3ffc2e787dc5202.tar.gz gentoo-24b142ee7181dd03692bd636d3ffc2e787dc5202.tar.xz |
sci-libs/gdal: fix curl undefined reference
Submitted-by: Michael Uleysky <uleysky@gmail.com>
Closes: https://bugs.gentoo.org/659840
Package-Manager: Portage-2.3.40, Repoman-2.3.9
-rw-r--r-- | sci-libs/gdal/files/gdal-2.3.0-curl.patch | 15 | ||||
-rw-r--r-- | sci-libs/gdal/gdal-2.3.0-r1.ebuild | 1 |
2 files changed, 16 insertions, 0 deletions
diff --git a/sci-libs/gdal/files/gdal-2.3.0-curl.patch b/sci-libs/gdal/files/gdal-2.3.0-curl.patch new file mode 100644 index 00000000000..1cd33243f42 --- /dev/null +++ b/sci-libs/gdal/files/gdal-2.3.0-curl.patch @@ -0,0 +1,15 @@ +diff -urNd gdal-2.3.1/port/cpl_vsil_curl.cpp gdal-2.3.1-curl/port/cpl_vsil_curl.cpp +--- gdal-2.3.1/port/cpl_vsil_curl.cpp 2018-06-24 01:10:23.000000000 +1000 ++++ gdal-2.3.1-curl/port/cpl_vsil_curl.cpp 2018-07-13 01:29:31.326347717 +1000 +@@ -8617,8 +8617,10 @@ + if( poFSHandler ) + poFSHandler->ClearCache(); + } +- ++#if !defined(HAVE_CURL) || defined(CPL_MULTIPROC_STUB) ++#else + VSICurlStreamingClearCache(); ++#endif + } + + #endif /* HAVE_CURL */ diff --git a/sci-libs/gdal/gdal-2.3.0-r1.ebuild b/sci-libs/gdal/gdal-2.3.0-r1.ebuild index 8aacbcb83c7..2ddaa49d414 100644 --- a/sci-libs/gdal/gdal-2.3.0-r1.ebuild +++ b/sci-libs/gdal/gdal-2.3.0-r1.ebuild @@ -81,6 +81,7 @@ PATCHES=( "${FILESDIR}/${PN}-2.2.3-soname.patch" "${FILESDIR}/${PN}-2.2.3-bashcomp-path.patch" # bug 641866 "${FILESDIR}/${PN}-2.2.3-goocast.patch" # bug 656252 + "${FILESDIR}/${PN}-2.3.0-curl.patch" # bug 659840 ) src_prepare() { |