1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

Merge pull request #331731 from imincik/mapserver-8.2.1

mapserver: 8.0.1 -> 8.2.1
This commit is contained in:
Nikolay Korotkiy 2024-08-06 00:46:23 +04:00 committed by GitHub
commit 5166728956
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 40 additions and 57 deletions

View file

@ -1,29 +1,53 @@
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config
, cairo, curl, fcgi, freetype, fribidi, gdal, geos, giflib, harfbuzz
, libjpeg, libpng, librsvg, libxml2, postgresql, proj, protobufc, zlib
, withPython ? true, swig, python3
{
lib,
stdenv,
fetchFromGitHub,
withPython ? true,
cairo,
cmake,
curl,
fcgi,
freetype,
fribidi,
gdal,
geos,
giflib,
harfbuzz,
libjpeg,
libpng,
librsvg,
libxml2,
pkg-config,
postgresql,
proj,
protobufc,
python3,
swig,
zlib,
}:
stdenv.mkDerivation rec {
pname = "mapserver";
version = "8.0.1";
version = "8.2.1";
src = fetchFromGitHub {
owner = "MapServer";
repo = "MapServer";
rev = "rel-${lib.replaceStrings [ "." ] [ "-" ] version}";
sha256 = "sha256-fAf4kOe/6bQW0i46+EZbD/6iWI2Bjkn2no6XeR/+mg4=";
sha256 = "sha256-kZEDC89yoQP0ma5avp6r+Hz8JMpErGlBVQkhlHO6UFw=";
};
patches = [
# drop this patch for version 8.0.2
./fix-build-w-libxml2-12.patch
];
nativeBuildInputs = [
cmake
pkg-config
] ++ lib.optionals withPython [ swig python3.pkgs.setuptools ];
nativeBuildInputs =
[
cmake
pkg-config
]
++ lib.optionals withPython [
swig
python3.pkgs.setuptools
];
buildInputs = [
cairo
@ -38,7 +62,7 @@ stdenv.mkDerivation rec {
libjpeg
libpng
librsvg
libxml2
(libxml2.override { enableHttp = true; })
postgresql
proj
protobufc

View file

@ -1,39 +0,0 @@
diff --git a/mapows.c b/mapows.c
index f141a7b..5a94ecb 100644
--- a/mapows.c
+++ b/mapows.c
@@ -168,7 +168,7 @@ static int msOWSPreParseRequest(cgiRequestObj *request,
#endif
if (ows_request->document == NULL
|| (root = xmlDocGetRootElement(ows_request->document)) == NULL) {
- xmlErrorPtr error = xmlGetLastError();
+ const xmlError *error = xmlGetLastError();
msSetError(MS_OWSERR, "XML parsing error: %s",
"msOWSPreParseRequest()", error->message);
return MS_FAILURE;
diff --git a/mapwcs.cpp b/mapwcs.cpp
index 70e63b8..19afa79 100644
--- a/mapwcs.cpp
+++ b/mapwcs.cpp
@@ -362,7 +362,7 @@ static int msWCSParseRequest(cgiRequestObj *request, wcsParamsObj *params, mapOb
/* parse to DOM-Structure and get root element */
if((doc = xmlParseMemory(request->postrequest, strlen(request->postrequest)))
== NULL) {
- xmlErrorPtr error = xmlGetLastError();
+ const xmlError *error = xmlGetLastError();
msSetError(MS_WCSERR, "XML parsing error: %s",
"msWCSParseRequest()", error->message);
return MS_FAILURE;
diff --git a/mapwcs20.cpp b/mapwcs20.cpp
index b35e803..2431bdc 100644
--- a/mapwcs20.cpp
+++ b/mapwcs20.cpp
@@ -1446,7 +1446,7 @@ int msWCSParseRequest20(mapObj *map,
/* parse to DOM-Structure and get root element */
if(doc == NULL) {
- xmlErrorPtr error = xmlGetLastError();
+ const xmlError *error = xmlGetLastError();
msSetError(MS_WCSERR, "XML parsing error: %s",
"msWCSParseRequest20()", error->message);
return MS_FAILURE;

View file

@ -26181,8 +26181,6 @@ with pkgs;
mapproxy = callPackage ../servers/geospatial/mapproxy { };
mapserver = callPackage ../servers/geospatial/mapserver { };
martin = callPackage ../servers/geospatial/martin {
inherit (darwin.apple_sdk.frameworks) Security SystemConfiguration;
};