2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 06:25:31 +00:00

Add missing support for --with-readline=yes

By error, ./configure --with-readline would fail, because 'yes' wasn't
handled properly in the top level case.
This commit is contained in:
Ondřej Surý
2020-08-18 16:31:20 +02:00
parent 41c9a5e428
commit 713b77c70e

View 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],