[SCM] PostGIS branch stable-3.0 updated. 3.0.11-27-g39428a2cf
git at osgeo.org
git at osgeo.org
Fri Feb 6 21:45:30 PST 2026
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.0 has been updated
via 39428a2cf7c596821d9a9887197a55f0e7b55d71 (commit)
via 93f63a9bd7b75a41712d9473cb7ce18ca721faa3 (commit)
from a453045ac20612abfddf5166322dea2f9c94e3bd (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 39428a2cf7c596821d9a9887197a55f0e7b55d71
Author: Regina Obe <lr at pcorp.us>
Date: Sat Feb 7 00:44:50 2026 -0500
Update release and news
Reference #5985 for PostGIS 3.0.11
diff --git a/NEWS b/NEWS
index eaa40f93d..9badd3e85 100644
--- a/NEWS
+++ b/NEWS
@@ -15,6 +15,7 @@ Proj 4.9+ required.
- #6028, Crash indexing malformed empty polygon (Paul Ramsey)
- #5998, [tiger_geocoder] [security] CVE-2022-2625, make sure tables requires
by extension are owned by extension
+ - #5985, Fix configure issue with Debian 12 and 13 (Regina Obe, Sandro Santilli)
PostGIS 3.0.11
diff --git a/doc/release_notes.xml b/doc/release_notes.xml
index 1d1bcd507..61585dfb6 100644
--- a/doc/release_notes.xml
+++ b/doc/release_notes.xml
@@ -19,6 +19,7 @@
<para><ulink url="https://trac.osgeo.org/postgis/ticket/6028">6028</ulink>, Crash indexing malformed empty polygon (Paul Ramsey)</para>
<para><ulink url="https://trac.osgeo.org/postgis/ticket/5998">5998</ulink>, [tiger_geocoder] [security] CVE-2022-2625, make sure tables requires
by extension are owned by extension</para>
+ <para><ulink url="https://trac.osgeo.org/postgis/ticket/5985">5985</ulink>, Fix configure issue with Debian 12 and 13 (Regina Obe, Sandro Santilli)</para>
</simplesect>
</sect1>
commit 93f63a9bd7b75a41712d9473cb7ce18ca721faa3
Author: Regina Obe <lr at pcorp.us>
Date: Sat Feb 7 00:44:16 2026 -0500
Fix support for Debian's libtool version
Version string is:
libtoolize (GNU libtool) 2.5.4 Debian-2.5.4-4
Reference #5985 for PostGIS 3.0.11
diff --git a/autogen.sh b/autogen.sh
index 107720845..c295435a2 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -62,8 +62,12 @@ if [ ! ${LIBTOOLIZE} ]; then
echo "Missing libtoolize!"
exit 1
fi
-LIBTOOLIZE_VER=`${LIBTOOLIZE} --version | ${GREP} -E "^.*[0-9]\.[0-9]" | ${SED} 's/^.* //'`
+# Debian12: libtoolize (GNU libtool) 2.4.7
+# Debian13: libtoolize (GNU libtool) 2.5.4 Debian-2.5.4-4
+LIBTOOLIZE_VER=`${LIBTOOLIZE} --version | ${GREP} -E "^.*[0-9]\.[0-9]" | ${SED} 's/^[^0-9]*//;s/ .*//'`
+echo "LIBTOOLIZE_VER=${LIBTOOLIZE_VER}"
LIBTOOLIZE_MAJOR_VER=`echo ${LIBTOOLIZE_VER} | cut -f1 -d'.'`
+echo "LIBTOOLIZE_MAJOR_VER=${LIBTOOLIZE_MAJOR_VER}"
# TODO: Check libtool version and add --install option only for 1.9b+
LTOPTS="--force --copy"
-----------------------------------------------------------------------
Summary of changes:
NEWS | 1 +
autogen.sh | 6 +++++-
doc/release_notes.xml | 1 +
3 files changed, 7 insertions(+), 1 deletion(-)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list