Bas Couwenberg pushed to branch upstream at Debian GIS Project / mapserver
Commits: 32ce5896 by Bas Couwenberg at 2020-03-29T08:41:28+02:00 New upstream version 7.6.0~beta2 - - - - - 4 changed files: - CMakeLists.txt - HISTORY.TXT - mapdraw.c - mapscript/mapscript.i Changes: ===================================== CMakeLists.txt ===================================== @@ -18,7 +18,7 @@ include(CheckCSourceCompiles) set (MapServer_VERSION_MAJOR 7) set (MapServer_VERSION_MINOR 6) set (MapServer_VERSION_REVISION 0) -set (MapServer_VERSION_SUFFIX "-beta1") +set (MapServer_VERSION_SUFFIX "-beta2") # Set C++ version # Make CMAKE_CXX_STANDARD available as cache option overridable by user ===================================== HISTORY.TXT ===================================== @@ -12,6 +12,13 @@ For a complete change history, please see the Git log comments. For more details about recent point releases, please see the online changelog at: http://mapserver.org/development/changelog/ +7.6.0-beta2 release (2020-03-28) +-------------------------------- + +- fixed build with PHPNG + gnu_source (#6015) + +- fixed rendermode with geomtransform (#6021) + 7.6.0-beta1 release (2020-03-22) -------------------------------- @@ -19,7 +26,7 @@ http://mapserver.org/development/changelog/ - Enable PointZM data support (X,Y,Z,M coordinates) by default -- SLD support enhancements (RFC 124) +- SLD support enhancements (RFC 124) except PR#5832 - CONNECTIONOPTIONS support in mapfile LAYER (RFC 125) ===================================== mapdraw.c ===================================== @@ -1190,6 +1190,7 @@ int msDrawVectorLayer(mapObj *map, layerObj *layer, imageObj *image) // Coordinates stored in the shape must keep their original values for // the shape to be drawn multiple times. // Here the original shape is restored. + msFreeShape(&shape); msCopyShape(&savedShape, &shape); msFreeShape(&savedShape); } ===================================== mapscript/mapscript.i ===================================== @@ -33,6 +33,8 @@ %begin %{ #ifdef _MSC_VER #define SWIG_PYTHON_INTERPRETER_NO_DEBUG +#else +#define _GNU_SOURCE 1 #endif %} View it on GitLab: https://salsa.debian.org/debian-gis-team/mapserver/-/commit/32ce5896a1b77c9c1c4b1fc0a26a7dc043033acb -- View it on GitLab: https://salsa.debian.org/debian-gis-team/mapserver/-/commit/32ce5896a1b77c9c1c4b1fc0a26a7dc043033acb You're receiving this email because of your account on salsa.debian.org.
_______________________________________________ Pkg-grass-devel mailing list [email protected] https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-grass-devel
