]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
Add missing support for --with-readline=yes
authorOndřej Surý <ondrej@isc.org>
Tue, 18 Aug 2020 14:31:20 +0000 (16:31 +0200)
committerOndřej Surý <ondrej@isc.org>
Mon, 24 Aug 2020 07:11:47 +0000 (09:11 +0200)
By error, ./configure --with-readline would fail, because 'yes' wasn't
handled properly in the top level case.

configure.ac

index 0418b9fcdab35afd6f3f95d0a510f5fb9e5e9aae..a0a5460b3890f5b45c65c9306b92bb6748e513fc 100644 (file)
@@ -987,7 +987,7 @@ AC_ARG_WITH([readline],
 
 AS_CASE([$with_readline],
        [no],[],
-       [auto],
+       [auto|yes],
        [PKG_CHECK_MODULES([READLINE], [libedit],
                           [AC_DEFINE([HAVE_READLINE_LIBEDIT], [1], [Build with libedit support])],
                           [PKG_CHECK_MODULES([READLINE], [editline],