[postgis-tickets] [SCM] PostGIS branch stable-3.1 updated. 3.1.1-28-gd2b6e27
git at osgeo.org
git at osgeo.org
Thu Mar 11 14:19:25 PST 2021
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "PostGIS".
The branch, stable-3.1 has been updated
via d2b6e27d15f0b931b5759384b7935afaa5648420 (commit)
from 792a90a7ac016fdaff1781f1192f6b62f7cf611c (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit d2b6e27d15f0b931b5759384b7935afaa5648420
Author: Regina Obe <lr at pcorp.us>
Date: Thu Mar 11 13:02:13 2021 -0500
Move postgres.h include to top to fix mingw64 issues
as suggested by Tom Lane.
Closes #4877 for PostGIS 3.1
diff --git a/NEWS b/NEWS
index 50dc7b6..b6ad35b 100644
--- a/NEWS
+++ b/NEWS
@@ -14,6 +14,7 @@ PostGIS 3.1.2
- #4840, Improper conversion of negative geographic azimuth to positive (Paul Ramsey)
- #4853, DBSCAN cluster not formed when recordset length equal to minPoints (Dan Baston)
- #4863, Update bboxes after scale/affine coordinate changes (Paul Ramsey)
+ - #4877, mingw64 PostGIS / PostgreSQL 14 compile (Regina Obe, Tom Lane)
PostGIS 3.1.1
diff --git a/postgis/lwgeom_in_gml.c b/postgis/lwgeom_in_gml.c
index eeb4356..b9ba261 100644
--- a/postgis/lwgeom_in_gml.c
+++ b/postgis/lwgeom_in_gml.c
@@ -46,16 +46,15 @@
*
**********************************************************************/
+#include "postgres.h"
+#include "executor/spi.h"
+#include "utils/builtins.h"
#include <libxml/tree.h>
#include <libxml/parser.h>
#include <libxml/xpath.h>
#include <libxml/xpathInternals.h>
-#include "postgres.h"
-#include "executor/spi.h"
-#include "utils/builtins.h"
-
#include "../postgis_config.h"
#include "lwgeom_pg.h"
#include "liblwgeom.h"
diff --git a/postgis/lwgeom_in_kml.c b/postgis/lwgeom_in_kml.c
index d398751..75ba538 100644
--- a/postgis/lwgeom_in_kml.c
+++ b/postgis/lwgeom_in_kml.c
@@ -37,15 +37,13 @@
* Written by Olivier Courtin - Oslandia
*
**********************************************************************/
-
+#include "postgres.h"
+#include "utils/builtins.h"
#include <libxml/tree.h>
#include <libxml/parser.h>
#include <string.h>
-#include "postgres.h"
-#include "utils/builtins.h"
-
#include "../postgis_config.h"
#include "lwgeom_pg.h"
#include "liblwgeom.h"
-----------------------------------------------------------------------
Summary of changes:
NEWS | 1 +
postgis/lwgeom_in_gml.c | 7 +++----
postgis/lwgeom_in_kml.c | 6 ++----
3 files changed, 6 insertions(+), 8 deletions(-)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list