mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-13 20:40:00 -04:00
[v9_10] fix build error due to incorrect readline probing
This commit is contained in:
parent
aa2c921dfb
commit
8ef05e6beb
2 changed files with 8 additions and 8 deletions
8
configure
vendored
8
configure
vendored
|
|
@ -18617,10 +18617,6 @@ done
|
|||
READLINE_LIB="$readline"
|
||||
break
|
||||
fi
|
||||
if test "X$readline" = "X"
|
||||
then
|
||||
continue
|
||||
fi
|
||||
for lib in -lterminfo -ltermcap -lncurses -lcurses
|
||||
do
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for readline with $readline $lib" >&5
|
||||
|
|
@ -18644,6 +18640,10 @@ done
|
|||
break
|
||||
fi
|
||||
done
|
||||
if test "$ac_cv_func_readline" = "yes"
|
||||
then
|
||||
break
|
||||
fi
|
||||
done
|
||||
LIBS="$saved_LIBS"
|
||||
;;
|
||||
|
|
|
|||
|
|
@ -3244,10 +3244,6 @@ yes|auto)
|
|||
READLINE_LIB="$readline"
|
||||
break
|
||||
fi
|
||||
if test "X$readline" = "X"
|
||||
then
|
||||
continue
|
||||
fi
|
||||
for lib in -lterminfo -ltermcap -lncurses -lcurses
|
||||
do
|
||||
AC_MSG_NOTICE(checking for readline with $readline $lib)
|
||||
|
|
@ -3260,6 +3256,10 @@ yes|auto)
|
|||
break
|
||||
fi
|
||||
done
|
||||
if test "$ac_cv_func_readline" = "yes"
|
||||
then
|
||||
break
|
||||
fi
|
||||
done
|
||||
LIBS="$saved_LIBS"
|
||||
;;
|
||||
|
|
|
|||
Loading…
Reference in a new issue