From 1e8a2bf1b80626b14929d84d95b2e54e9fa16fc8 Mon Sep 17 00:00:00 2001 From: Andrew Marshall Date: Thu, 1 Jan 2026 16:34:55 -0500 Subject: [PATCH] nginxModules.vod: fix build with gcc 15 --- pkgs/servers/http/nginx/modules.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/servers/http/nginx/modules.nix b/pkgs/servers/http/nginx/modules.nix index 8d02ddf38bb9..8b558dcb85e8 100644 --- a/pkgs/servers/http/nginx/modules.nix +++ b/pkgs/servers/http/nginx/modules.nix @@ -1010,6 +1010,9 @@ let --replace-fail "MAX_CLIPS (128)" "MAX_CLIPS (1024)" substituteInPlace vod/subtitle/dfxp_format.c \ --replace-fail '(!ctxt->wellFormed && !ctxt->recovery))' '!ctxt->wellFormed)' + # https://github.com/kaltura/nginx-vod-module/pull/1593 + substituteInPlace ngx_http_vod_module.c \ + --replace-fail 'ngx_http_vod_exit_process()' 'ngx_http_vod_exit_process(ngx_cycle_t *cycle)' ''; };