From 70b4cb070c23387d72bb2feed04fded45f4ba535 Mon Sep 17 00:00:00 2001 From: 1Conan Date: Sat, 20 Jun 2026 00:33:09 +0800 Subject: fix undefined HAVE_READLINE on --without-tools --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 52a28b5..093d431 100644 --- a/configure.ac +++ b/configure.ac @@ -90,8 +90,8 @@ AS_IF([test "x$with_tools" = "xyes"], [ have_readline=yes], [AC_MSG_NOTICE([NOTE: Building without readline support. If you want readline support, install its development package.])] ) - AM_CONDITIONAL(HAVE_READLINE, test "x$have_readline" = "xyes") ]) +AM_CONDITIONAL(HAVE_READLINE, test "x$have_readline" = "xyes") AM_CONDITIONAL(BUILD_TOOLS, test "x$with_tools" = "xyes") AC_ARG_WITH([dummy], -- cgit v1.1-32-gdbae