[SCM] PostGIS branch stable-3.3 updated. 3.3.7-53-g5ee1df9e0

git at osgeo.org git at osgeo.org
Thu Sep 11 19:12:12 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.3 has been updated
       via  5ee1df9e0f27094b4d681946ef9fd5f700fa6ee0 (commit)
      from  102a16c5df4d14f125944815e85030adf95d678e (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 5ee1df9e0f27094b4d681946ef9fd5f700fa6ee0
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.3.9

diff --git a/NEWS b/NEWS
index b4f6c67b2..9c8a79291 100644
--- a/NEWS
+++ b/NEWS
@@ -22,6 +22,7 @@ Proj 4.9+ required.
  - #5905, Crash on deeply nested geometries (Paul Ramsey)
  - #5909, ST_ValueCount crashes on empty table (Paul Ramsey)
  - #5917, ST_Relate becomes unresponsive (Paul Ramsey)
+ - #5985, Fix configure issue with Debian 12 and 13 (Regina Obe, Sandro Santilli)
 
 
 PostGIS 3.3.8
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