[SCM] PostGIS branch master updated. 3.6.0rc2-229-gc7f7524bd
git at osgeo.org
git at osgeo.org
Thu Nov 27 23:02:53 PST 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 c7f7524bdd6335fbc5c207c46a6a45992cb60a88 (commit)
from eb73a244e131c0e362e2b4b3f8257c9ce4da3057 (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 c7f7524bdd6335fbc5c207c46a6a45992cb60a88
Author: Sandro Santilli <strk at kbt.io>
Date: Fri Nov 28 08:01:54 2025 +0100
Add --disable-spellcheck-tests configure switch
For those who have a broken codespell
References #6021
diff --git a/GNUmakefile.in b/GNUmakefile.in
index c1d58738f..1e0c2fb92 100644
--- a/GNUmakefile.in
+++ b/GNUmakefile.in
@@ -309,5 +309,5 @@ check-spell:
ifneq (@CODESPELL@,)
cd $(top_srcdir) && @CODESPELL@
else
- @echo "SKIP: codespell not installed, cannot check spell"
+ @echo "SKIP: spell checking disabled"
endif
diff --git a/configure.ac b/configure.ac
index efd360053..29f66a38c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -186,9 +186,16 @@ case $host_os in
esac
AC_SUBST([MINGWBUILD])
-AC_PATH_PROG([CODESPELL], [codespell], [])
-if test "x$CODESPELL" = "x"; then
- AC_MSG_WARN([codespell is not installed so spelling cannot be checked])
+AC_ARG_ENABLE([spellcheck-tests],
+ [AS_HELP_STRING([--disable-spellcheck-tests],
+ [Disable spell checking tests])])
+if test "x$enable_spellcheck_tests" = "xno"; then
+ AC_MSG_NOTICE([NOTE: spell checking tests disabled])
+else
+ AC_PATH_PROG([CODESPELL], [codespell], [])
+ if test "x$CODESPELL" = "x"; then
+ AC_MSG_WARN([codespell is not installed so spelling cannot be checked])
+ fi
fi
AC_PATH_PROG([PERL], [perl], [])
-----------------------------------------------------------------------
Summary of changes:
GNUmakefile.in | 2 +-
configure.ac | 13 ++++++++++---
2 files changed, 11 insertions(+), 4 deletions(-)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list