aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRodrigo Arias Mallo <rodarima@gmail.com>2025-07-12 16:36:54 +0200
committerRodrigo Arias Mallo <rodarima@gmail.com>2025-07-12 16:36:54 +0200
commit9275d3e7ce232528131e724829d0bca4a858b848 (patch)
tree99524d65355db2610346da6f31677f3e67f57f77
parent519e7d67e891028ccee3d335195d2cc56ebb2f4a (diff)
Document developer options in configure help
Make sure that users or package maintainers don't accidentally enable developer options designed to be run by developers only.
-rw-r--r--configure.ac13
1 files changed, 7 insertions, 6 deletions
diff --git a/configure.ac b/configure.ac
index 56136fd8..be85da67 100644
--- a/configure.ac
+++ b/configure.ac
@@ -84,11 +84,6 @@ AC_ARG_ENABLE([threaded-dns],
[enable_threaded_dns=$enableval],
[enable_threaded_dns=yes])
-AC_ARG_ENABLE([rtfl],
- [AS_HELP_STRING([--enable-rtfl], [Print low-level RTFL messages for debugging the renderer (very large slowdown)])],
- [enable_rtfl=$enableval],
- [enable_rtfl=no])
-
AC_ARG_ENABLE([xembed],
[AS_HELP_STRING([--disable-xembed], [Disable support for X11 XEmbed])],
[enable_xembed=$enableval],
@@ -128,12 +123,18 @@ AC_ARG_WITH([ca-certs-dir],
[AS_HELP_STRING([--with-ca-certs-dir=DIR], [Specify where to find a directory containing trusted CA certificates for TLS])],
CA_CERTS_DIR=$withval)
+dnl Developer options
AC_ARG_ENABLE([html-tests],
- [AS_HELP_STRING([--enable-html-tests], [Enable HTML tests (requires xvfb, xwd and imagemagick)])],
+ [AS_HELP_STRING([--enable-html-tests], [Enable HTML rendering tests, requires xvfb, xwd and imagemagick (for developers only)])],
[enable_html_tests=$enableval],
[enable_html_tests=no])
+AC_ARG_ENABLE([rtfl],
+ [AS_HELP_STRING([--enable-rtfl], [Print low-level RTFL messages for debugging the renderer. Adds very large slowdown (for developers only)])],
+ [enable_rtfl=$enableval],
+ [enable_rtfl=no])
+
if test "x$enable_ssl" = "xno"; then
AC_MSG_ERROR([The flag --disable-ssl is deprecated, use --disable-tls])
fi