[SCM] PostGIS branch stable-3.5 updated. 3.5.3-52-gc10696a2f
git at osgeo.org
git at osgeo.org
Thu Sep 11 19:58:44 PDT 2025
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.5 has been updated
via c10696a2f5b28e5eee6c1ebe9b84335c54c19137 (commit)
from fdcbc2e0ea8865874840697b360491a64843dd5c (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 c10696a2f5b28e5eee6c1ebe9b84335c54c19137
Author: Sandro Santilli <strk at kbt.io>
Date: Wed Apr 30 23:28:31 2025 +0200
Fix support for Debian's libtool version
Version string is:
libtoolize (GNU libtool) 2.5.4 Debian-2.5.4-4
Closes #5985 for PostGIS 3.5.4
diff --git a/NEWS b/NEWS
index ee50dd212..79718d1c4 100644
--- a/NEWS
+++ b/NEWS
@@ -28,6 +28,7 @@ PostgreSQL 12-18 required. GEOS 3.8+ required. Proj 6.1+ required.
- #5943, Memory leak in handling GEOS GeometryFactory (Megan Ma)
- #5407, Use memset in place of bzero (Paul Ramsey)
- #5082, LRS proportions clamped to [0,1] (Pawel Ostrowski)
+- #5985, Fix configure issue with Debian 12 and 13 (Regina Obe, Sandro Santilli)
PostGIS 3.5.3
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 +++++-
2 files changed, 6 insertions(+), 1 deletion(-)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list