[postgis-tickets] [SCM] PostGIS branch master updated. 3.1.0rc1-116-gf719c3c

git at osgeo.org git at osgeo.org
Thu Mar 11 10:06:08 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, master has been updated
       via  f719c3c762ee950fd678cbde5a5ef4975c7d5520 (commit)
      from  67fa7dde00e09d3786267636ddd4ad026e9648b6 (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 f719c3c762ee950fd678cbde5a5ef4975c7d5520
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.
    References #4877 for PostGIS 3.2

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:
 postgis/lwgeom_in_gml.c | 7 +++----
 postgis/lwgeom_in_kml.c | 6 ++----
 2 files changed, 5 insertions(+), 8 deletions(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list