[SCM] PostGIS branch stable-3.4 updated. 3.4.4-50-gf4a667261
git at osgeo.org
git at osgeo.org
Thu Sep 11 19:48:19 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.4 has been updated
via f4a6672612fdfa4676975ec2f332800148661cfc (commit)
from 521e11092c3217158d2298364cd269bec881cba5 (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 f4a6672612fdfa4676975ec2f332800148661cfc
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.4.5
diff --git a/NEWS b/NEWS
index bca0da822..358284791 100644
--- a/NEWS
+++ b/NEWS
@@ -30,6 +30,7 @@ Proj 6.1+ required.
- #5917, ST_Relate becomes unresponsive (Paul Ramsey)
- Support build under Pg19 (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.4.4
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