[SCM] PostGIS branch master updated. 3.5.0-305-geca9f43e6
git at osgeo.org
git at osgeo.org
Wed Apr 30 14:32:29 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, master has been updated
via eca9f43e69ba8a6889a01064b26eb1e4640b97e1 (commit)
from 5b0830566eacdb03606c0ef059071a890dfd36c6 (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 eca9f43e69ba8a6889a01064b26eb1e4640b97e1
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
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:
autogen.sh | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list