Hello,
On 2/21/17, Reuben Thomas wrote:
> In the first example for AC_ARG_WITH, there's an "if test…fi" block:
>
> if test "x$with_readline" != xcheck; then
>AC_MSG_FAILURE(
> [--with-readline was given, but test for readline failed])
> fi
>
> Is there some reason why th
In the first example for AC_ARG_WITH, there's an "if test…fi" block:
if test "x$with_readline" != xcheck; then
AC_MSG_FAILURE(
[--with-readline was given, but test for readline failed])
fi
Is there some reason why this doesn't use AS_IF?
I see a comment above saying: