[postgis-tickets] [SCM] PostGIS branch stable-3.3 updated. 3.3.2-48-gf0802afb3
git at osgeo.org
git at osgeo.org
Fri Apr 21 22:33:30 PDT 2023
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.3 has been updated
via f0802afb3e71716097fc26d0dc0b6d1aedfb37f6 (commit)
from 76f44dea83e09101c2fa949b0ad8bfb00494449b (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 f0802afb3e71716097fc26d0dc0b6d1aedfb37f6
Author: Regina Obe <lr at pcorp.us>
Date: Sat Apr 22 01:31:58 2023 -0400
Fix for PG 13 and below
Evidentally stdbool is not included in PG13 and below
So added changes for raster for PG16, broke PG 13
Closes https://github.com/postgis/postgis/pull/716
diff --git a/liblwgeom/liblwgeom.h.in b/liblwgeom/liblwgeom.h.in
index 46f3619c4..9a042f586 100644
--- a/liblwgeom/liblwgeom.h.in
+++ b/liblwgeom/liblwgeom.h.in
@@ -32,6 +32,7 @@
#include <stdarg.h>
#include <stdint.h>
#include <stdio.h>
+#include <stdbool.h>
#include "../postgis_config.h"
-----------------------------------------------------------------------
Summary of changes:
liblwgeom/liblwgeom.h.in | 1 +
1 file changed, 1 insertion(+)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list