[SCM] PostGIS branch stable-3.1 updated. 3.1.11-49-g09014579e

git at osgeo.org git at osgeo.org
Fri Feb 6 22:50:52 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.1 has been updated
       via  09014579e7ff29c698801b4419e8f49cc6f6b1d4 (commit)
      from  d80f7b65dbb9a5f3283badd9de9dfee8470aa866 (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 09014579e7ff29c698801b4419e8f49cc6f6b1d4
Author: Regina Obe <lr at pcorp.us>
Date:   Sat Feb 7 01:48:49 2026 -0500

    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.1.13

diff --git a/NEWS b/NEWS
index 115a8900e..c16e1e076 100644
--- a/NEWS
+++ b/NEWS
@@ -20,7 +20,8 @@ PostGIS 3.1.13 (EOL)
  - #5962, Consistent clipping of MULTI/POINT (Paul Ramsey)
  - #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
+            by extension are owned by extension
+ - #5985, Fix configure issue with Debian 12 and 13 (Regina Obe, Sandro Santilli)
 
 
 PostGIS 3.1.12
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"
diff --git a/doc/release_notes.xml b/doc/release_notes.xml
index 7ea5828df..b92d8c349 100644
--- a/doc/release_notes.xml
+++ b/doc/release_notes.xml
@@ -26,6 +26,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>
     <sect1>

-----------------------------------------------------------------------

Summary of changes:
 NEWS                  | 3 ++-
 autogen.sh            | 6 +++++-
 doc/release_notes.xml | 1 +
 3 files changed, 8 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list