diff options
author | Rodrigo Arias Mallo <rodarima@gmail.com> | 2025-06-21 13:42:21 +0200 |
---|---|---|
committer | Rodrigo Arias Mallo <rodarima@gmail.com> | 2025-06-29 15:01:34 +0200 |
commit | f6abc117030f372261cef98e191113a2078c8c1b (patch) | |
tree | b2a8b8e694236d75b94d41d137592fef206be1d4 | |
parent | b45003b748a166babdf5a3e567d7633ba31100f4 (diff) |
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.
-rw-r--r-- | configure.ac | 4 |
1 files 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([]) |