[SCM] PostGIS branch master updated. 3.6.0rc2-374-g1eb2fa4da

git at osgeo.org git at osgeo.org
Sat Mar 7 03:22:58 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, master has been updated
       via  1eb2fa4daa61a459bb7ae3375279aa7394f25183 (commit)
      from  14152529d3f3008be89dbc76505521e819ae78d5 (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 1eb2fa4daa61a459bb7ae3375279aa7394f25183
Author: Darafei Praliaskouski <me at komzpa.net>
Date:   Sat Mar 7 15:22:30 2026 +0400

    fuzzers: install yacc tools for oss-fuzz builds
    
    PostGIS's OSS-Fuzz build now delegates dependency setup to fuzzers/install_oss_fuzz_build_deps.sh, but the script did not install bison/flex. That leaves the builder without yacc/lex tooling and causes the fuzz build to fail while regenerating lwin_wkt_parse.c with 'No yacc found, cannot build parser'.
    
    Add bison and flex to the OSS-Fuzz dependency installer so the upstream fuzz build has the parser generators it needs.

diff --git a/fuzzers/install_oss_fuzz_build_deps.sh b/fuzzers/install_oss_fuzz_build_deps.sh
index 992d20369..dd3475745 100755
--- a/fuzzers/install_oss_fuzz_build_deps.sh
+++ b/fuzzers/install_oss_fuzz_build_deps.sh
@@ -16,7 +16,7 @@ export DEBIAN_FRONTEND="${DEBIAN_FRONTEND:-noninteractive}"
 
 apt-get update
 apt-get install -y --no-install-recommends \
-    make autoconf automake libtool g++ postgresql-server-dev-all \
+    make autoconf automake libtool bison flex g++ postgresql-server-dev-all \
     libgeos-dev libproj-dev libxml2-dev pkg-config libjson-c-dev \
     libc++-dev libc++abi-dev patchelf
 

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

Summary of changes:
 fuzzers/install_oss_fuzz_build_deps.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list