[PATCH] Fix display of disabled options in configure.ac

<[email protected]> Mon, 23 Mar 2026 10:57:40 +0000
Newsgroups gmane.comp.web.dillo.devel
Message-ID <[email protected]>
--MP_/YfZsSAABe_WtDBZ1RhuZR1p
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

Hi,

There are a couple of missing variables in configure.ac which result
in missing info when disabling some options via configure:

Features:

  Cookies enabled: no
  XEmbed enabled : no
  JPEG enabled   : no
  PNG enabled    : no
  GIF enabled    : no
  SVG enabled    : no
  WEBP enabled   : 
  Brotli enabled : 
  IPv6 enabled   : no
  Control socket : no (experimental)

We are missing variables for WEBP and Brotli.

The attached patch fixes this.

Regards,
Alex

--MP_/YfZsSAABe_WtDBZ1RhuZR1p
Content-Type: text/x-patch
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment;
 filename=0001-Fix-display-of-disabled-options-in-configure.ac.patch

>From f3745899b8ac55085610e1bf74694457768de236 Mon Sep 17 00:00:00 2001
From: Alex <[email protected]>
Date: Mon, 23 Mar 2026 10:45:09 +0000
Subject: [PATCH] Fix display of disabled options in configure.ac

We are missing variables for WEBP and Brotli.
---
 configure.ac | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/configure.ac b/configure.ac
index 15bfd58e..8f1d8364 100644
--- a/configure.ac
+++ b/configure.ac
@@ -347,6 +347,7 @@ dnl ----------------
 dnl Test for libwebp
 dnl ----------------
 dnl
+webp_ok=no
 if test "x$enable_webp" = "xyes"; then
   AC_CHECK_HEADER(webp/decode.h, webp_ok=yes, webp_ok=no)
 
@@ -389,6 +390,7 @@ dnl ---------------
 dnl Test for brotli
 dnl ---------------
 dnl
+brotli_ok=no
 if test "x$enable_brotli" = "xyes"; then
   AC_CHECK_HEADER(brotli/decode.h, brotli_ok=yes, brotli_ok=no)
 
-- 
2.51.0


--MP_/YfZsSAABe_WtDBZ1RhuZR1p
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

_______________________________________________
Dillo-dev mailing list -- dillo-dev-lx9mn2B4QYRWk0Htik3J/[email protected]
To unsubscribe send an email to dillo-dev-leave-lx9mn2B4QYRWk0Htik3J/[email protected]

--MP_/YfZsSAABe_WtDBZ1RhuZR1p--