Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
ISC Open Source Projects
BIND
Commits
6caac8d9
Commit
6caac8d9
authored
Oct 11, 2016
by
Mark Andrews
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
4484. [bug] Failure to find readline when requested should be
fatal to configure. [RT #43328]
parent
78aa92e5
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
19 additions
and
0 deletions
+19
-0
CHANGES
CHANGES
+3
-0
configure
configure
+8
-0
configure.in
configure.in
+8
-0
No files found.
CHANGES
View file @
6caac8d9
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]
...
...
configure
View file @
6caac8d9
...
...
@@ -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
...
...
configure.in
View file @
6caac8d9
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment