mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-14 23:50:00 -04:00
4484. [bug] Failure to find readline when requested should be
fatal to configure. [RT #43328]
This commit is contained in:
parent
78aa92e5f5
commit
6caac8d9a9
3 changed files with 19 additions and 0 deletions
3
CHANGES
3
CHANGES
|
|
@ -1,3 +1,6 @@
|
|||
4484. [bug] Failure to find readline when requested should be
|
||||
fatal to configure. [RT #43328]
|
||||
|
||||
4483. [func] Check prefixes in acls to make sure the address and
|
||||
prefix lengths are consistent. Warn only in
|
||||
BIND 9.11 and earlier. [RT #43367]
|
||||
|
|
|
|||
8
configure
vendored
8
configure
vendored
|
|
@ -19131,6 +19131,10 @@ done
|
|||
break
|
||||
fi
|
||||
done
|
||||
if test "X$readline" = Xyes -a "$ac_cv_func_readline" != yes
|
||||
then
|
||||
as_fn_error $? "The readline library was not found." "$LINENO" 5
|
||||
fi
|
||||
LIBS="$saved_LIBS"
|
||||
;;
|
||||
*)
|
||||
|
|
@ -19177,6 +19181,10 @@ done
|
|||
fi
|
||||
done
|
||||
fi
|
||||
if test "$ac_cv_func_readline" != yes
|
||||
then
|
||||
as_fn_error $? "The readline library was not found." "$LINENO" 5
|
||||
fi
|
||||
LIBS="$saved_LIBS"
|
||||
;;
|
||||
esac
|
||||
|
|
|
|||
|
|
@ -3468,6 +3468,10 @@ yes|auto)
|
|||
break
|
||||
fi
|
||||
done
|
||||
if test "X$readline" = Xyes -a "$ac_cv_func_readline" != yes
|
||||
then
|
||||
AC_MSG_ERROR([The readline library was not found.])
|
||||
fi
|
||||
LIBS="$saved_LIBS"
|
||||
;;
|
||||
*)
|
||||
|
|
@ -3492,6 +3496,10 @@ yes|auto)
|
|||
fi
|
||||
done
|
||||
fi
|
||||
if test "$ac_cv_func_readline" != yes
|
||||
then
|
||||
AC_MSG_ERROR([The readline library was not found.])
|
||||
fi
|
||||
LIBS="$saved_LIBS"
|
||||
;;
|
||||
esac
|
||||
|
|
|
|||
Loading…
Reference in a new issue