Re: Documentation of AC_ARG_WITH

2017-02-21 Thread Nick Bowler
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

Documentation of AC_ARG_WITH

2017-02-21 Thread Reuben Thomas
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: