Skip to content

Commit f6abc11

Browse files
committed
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.
1 parent b45003b commit f6abc11

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

configure.ac

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -825,8 +825,8 @@ _AS_ECHO([ JPEG enabled : ${jpeg_ok}])
825825
_AS_ECHO([ PNG enabled : ${png_ok}])
826826
_AS_ECHO([ GIF enabled : ${enable_gif}])
827827
_AS_ECHO([ SVG enabled : ${enable_svg}])
828-
_AS_ECHO([ WEBP enabled : ${enable_webp}])
829-
_AS_ECHO([ Brotli enabled : ${enable_brotli}])
828+
_AS_ECHO([ WEBP enabled : ${webp_ok}])
829+
_AS_ECHO([ Brotli enabled : ${brotli_ok}])
830830
_AS_ECHO([])
831831
_AS_ECHO([ HTML tests : ${html_tests_ok}])
832832
_AS_ECHO([])

0 commit comments

Comments
 (0)