From f6abc117030f372261cef98e191113a2078c8c1b Mon Sep 17 00:00:00 2001 From: Rodrigo Arias Mallo Date: Sat, 21 Jun 2025 13:42:21 +0200 Subject: Fix webp and brotli status variable in configure We are interested in webp_ok and brotli_ok which indicates if we can use webp or brotli. Even if the user specifies --enable-webp setting enable_webp to yes, if it is not found it won't be available. --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 08fa1f32..65cd5dc2 100644 --- a/configure.ac +++ b/configure.ac @@ -825,8 +825,8 @@ _AS_ECHO([ JPEG enabled : ${jpeg_ok}]) _AS_ECHO([ PNG enabled : ${png_ok}]) _AS_ECHO([ GIF enabled : ${enable_gif}]) _AS_ECHO([ SVG enabled : ${enable_svg}]) -_AS_ECHO([ WEBP enabled : ${enable_webp}]) -_AS_ECHO([ Brotli enabled : ${enable_brotli}]) +_AS_ECHO([ WEBP enabled : ${webp_ok}]) +_AS_ECHO([ Brotli enabled : ${brotli_ok}]) _AS_ECHO([]) _AS_ECHO([ HTML tests : ${html_tests_ok}]) _AS_ECHO([]) -- cgit v1.2.3