[v9_10] fix build error due to incorrect readline probing

This commit is contained in:
Evan Hunt 2016-04-14 13:46:40 -07:00
parent aa2c921dfb
commit 8ef05e6beb
2 changed files with 8 additions and 8 deletions

8
configure vendored
View file

@ -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"
;;

View file

@ -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"
;;