mirror of
https://github.com/microsoft/vcpkg.git
synced 2025-01-19 04:43:02 +08:00
[mapnik] fix features input-csv (#33801)
This commit is contained in:
parent
fda8c182d4
commit
23a7cab492
13
ports/mapnik/missing-include.patch
Normal file
13
ports/mapnik/missing-include.patch
Normal file
@ -0,0 +1,13 @@
|
||||
diff --git a/plugins/input/csv/csv_utils.cpp b/plugins/input/csv/csv_utils.cpp
|
||||
index 382b1ce..c0256de 100644
|
||||
--- a/plugins/input/csv/csv_utils.cpp
|
||||
+++ b/plugins/input/csv/csv_utils.cpp
|
||||
@@ -40,6 +40,8 @@
|
||||
#include <cstdio>
|
||||
#include <algorithm>
|
||||
|
||||
+#include <boost/algorithm/string/trim.hpp>
|
||||
+
|
||||
namespace csv_utils {
|
||||
namespace detail {
|
||||
|
@ -6,6 +6,8 @@ vcpkg_from_github(
|
||||
REF 123232ffde565af38afd06fe3e8edd9bfdce93bc
|
||||
SHA512 b940312688fcece8bb52b8b687fcc60eaac159d4737966eacacbafbde6fbd3245f9acf170d55a664a781908282cb21347bd4b79bd08b8ab2461270ef453b10c5
|
||||
HEAD_REF master
|
||||
PATCHES
|
||||
missing-include.patch
|
||||
)
|
||||
|
||||
vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "mapnik",
|
||||
"version-date": "2023-06-12",
|
||||
"port-version": 1,
|
||||
"port-version": 2,
|
||||
"description": "Mapnik is an open source toolkit for developing mapping applications.",
|
||||
"homepage": "https://github.com/mapnik/mapnik",
|
||||
"license": "LGPL-2.1-only",
|
||||
@ -85,7 +85,10 @@
|
||||
"description": "Grid renderer"
|
||||
},
|
||||
"input-csv": {
|
||||
"description": "CSV input plugin"
|
||||
"description": "CSV input plugin",
|
||||
"dependencies": [
|
||||
"boost-algorithm"
|
||||
]
|
||||
},
|
||||
"input-gdal": {
|
||||
"description": "GDAL input plugin",
|
||||
|
@ -5238,7 +5238,7 @@
|
||||
},
|
||||
"mapnik": {
|
||||
"baseline": "2023-06-12",
|
||||
"port-version": 1
|
||||
"port-version": 2
|
||||
},
|
||||
"marble": {
|
||||
"baseline": "22.04.0",
|
||||
|
@ -1,5 +1,10 @@
|
||||
{
|
||||
"versions": [
|
||||
{
|
||||
"git-tree": "cdb516de71b06cb77bb51196e59709278606e32a",
|
||||
"version-date": "2023-06-12",
|
||||
"port-version": 2
|
||||
},
|
||||
{
|
||||
"git-tree": "64501290af397067ec972c69113abd28139efdcc",
|
||||
"version-date": "2023-06-12",
|
||||
|
Loading…
Reference in New Issue
Block a user